In the Orders form, users often have a need to return to the first record. Because there are many employee records, it may take a long time for them to scroll up to the first record, so you create a button with the label First Record.When users click the first Record button, you want to display your own custom message instead of the system message "FRM-40100: At first record."The system message should be displayed in other cases when users attempt to scroll above the first record.You code the following When-Button-Pressed trigger::SYSTEM.mesage_level := '5'UP;WHILE FORM_SUCCESS LOOP -UP;END LOOP;MESSAGE ('This is the first Order');The button works perfectly to return to the first record and display your custom message instead of the system message. However, users report that as they continue to use the form after clicking the button, no longer see other helpful messages. For example, the message "FRM 40102: Record must be entered or deleted first" no longer appears when they attempt to scroll past the last record.How can you resolve this Issue so that all system messages continue to be displayed after the trigger code runs?
When you plan to use a toolbar canvas, you should allow room for it on the content canvas so that items on the canvas are not obscured.
View the Exhibits.The hierarchical tree shown at run time in Exhibit 1 is populated programmatically. Default hierarchical tree properties are shown in Exhibit?Which properties of the hierarchical tree shown in Exhibit 1 have been changed from the default?
View the Exhibit.The orders form contains two canvases. Orders_CV displays one order and all of its order items.Help-CV displays context-sensitive help.When users invoke the help screen for the Customer_Id item, the help information obscures the Custormer_Id item, as shown in the Exhibit. Users would like to be able to see both the item and its help information simultaneously.How can you move the help information to the right so that the Customer_Id item is visible?
View the Exhibit to examine the form.The text items (Field1, Field2, and Field3) and the button (Check_Values) are in the CONTROL block. The Mouse Navigate property of the button has been set toNo.The following code as been written in a When-Button-Pressed trigger on the Check_Values button:MESSAGE(:field1| | ' - ' | | :SYSTEM.cursor_item | |' - ' | | :SYSTEM.trigger_item);With the focus in Field1 and the values 1, 2, and 3 in the text items, what message will be displayed when the button is clicked.
There are certain errors that are specific to the Salary item on the Employees form. You want to trap these errors only when the user navigates from the Salary item.You have a form-level On-Error trigger that traps errors that apply to the form in general, but yon additionally code an item-level On-Error trigger for the Salary item.When testing the form, you find that the general errors are not trapped when you navigate from the Salary item. What can you do to correct this problem?