Start the server process on UNIX with the command:
$ fglhtmld -f phonebook.Unix.conf
To display system messages, enter the command:
$ fglhtmld -d -f phonebook.Unix.conf
Start your Web browser, and specify the URL of the Dynamic 4GL application on your machine. For example:
Once your browser has started the application, the user can interact with it to perform database operations. In this example, the user can browse through companies as shown here:
If there are no more records and the user clicks on the Next Page button, the program generates an error, as shown here:
The user can select a company from the list in the previous display, as shown here:
The user can then display all of the company's known contacts:
Selecting one contact from the list displays the following information:
To edit the record, the user can click Edit. The following screen appears:
The application automatically generates a dropdown list box when the 4GL code uses any INCLUDE= statement, such as the following:
|
Combo boxes are automatically displayed when you use INCLUDE in the screen .per file. This combo box was generated from the following code: f003 = formonly.ctc_title, include=( "", "Dr.", "Miss", "Mr.", "Mrs.", "Ms.", "Prof."); |