Organizations invest heavily in information systems to improve customer service.

Answer the following statement true (T) or false (F)

True

Computer Science & Information Technology

You might also like to view...

When using the Mail Merge Wizard, you can create a data source, or if you already have the data in an existing __________, you do not need to type the data again.

a. Chart b. WordArt c. Control Field d. database

Computer Science & Information Technology

Enhance the memo saver GUI in Listing 15.1 in all of the following ways:

• Add another menu called Scroll Bars that offers the user three choices: Never, Always, and As Needed. When the user makes a choice, the scroll bars are displayed according to the choice. • When the user clicks the close-window button, another window pops up and asks the user whether to end the program, as was done in Listing 15.10. This program is best done by adding one feature at a time and judiciously copying code from examples on the CD that comes with the text. To obtain the exit pop-up window, start with the code from CloseWindowDemo, Listing 15.10 and add to it. For example, add a call to ConfirmWindow() in the actionPerformed method if the ActionEvent is “Exit”. The setDefaultCloseOperation code is necessary to get the pop-up window when the exit button (the “X” in the upper left corner of the window) is clicked, and the call in actionPerformed is necessary to get the window when “Close” in the “Memos” menu is selected. Next, add the nested menus and make sure it works before actually coding the events for the options. Next, add functionality to the “View” menu options. Unfortunately, there is no program from which to copy the code to make the “Scroll Bars” options functional, but it is mostly a matter of going through “The JScrollPane Class for Scroll Bars” section of Chapter 15 and following the directions. Note that the following line is necessary to make the change visible immediately after selecting any of these options: ``` SwingUtilities.updateComponentTreeUI(this); ```

Computer Science & Information Technology