Using Xdialog to Prompt for Variables

Description

The "Prompt for Text" Action and the "Prompt using Radio Button Dialog" Actions (under the "Dialog Boxes" category) are used to prompt for character variables. Alpha Anywhere contains a special programming language called Xdialog that is specifically designed for creating rich dialog boxes. Xdialog is a superset of Xbasic. A full discussion of Xdialog is beyond the scope of this book. For details on Xdialog, see Learning Xdialog. Action Scripting however, offers an Action that allows you to create simple Xdialog boxes that prompt for multiple variables in a single dialog box. In this lesson, we'll create a dialog box that looks like this: Picture

images/Xdialog_9.gif

As you can see, this dialog box prompts for three different variables. Here is how you can create this dialog box.

  1. Navigate to the Code tab on the Control Panel, click the New button and select Action Script. The Code Editor opens showing an untitled script.

    images/Code_Editor_Blank_New_Action.gif
  2. Click the Add New Action button.

  3. Select the "Dialog Boxes" category and the "Display an Xdialog Box" Action. Click OK.

    • The Display an Xdialog Box Genie appears. This is where you define the variables that the Xdialog box will prompt for. For each variable you place on the Xdialog box, you specify the variable:

      • name

      • prompt

      • type

      • size

      • default value

      • style

    • Alpha Anywhere offers a very extensive list of styles from which you can choose, including list boxes, combo boxes, edit combo boxes, tree controls, file select controls, folder select controls etc.

      images/Xdialog_1.gif
    images/Action_Dialog_Boxes_Display_an_Xdialog_box.gif
  4. Enter "date" as the Variable Name.

  5. Enter "Date payment received" as the Prompt.

  6. Select "Date" as the Type.

  7. Check the Default Value check box. This allows you to specify a default value for the date variable, which should be today's date. To enter the required expression, you must start with an equals sign.

  8. Enter "=date()" as the expression for the Default Value.

  9. Select "Calendar" as the Style. Your screen should look like this: Picture

    images/Xdialog_2.gif
  10. We can now add the next variable to the Xdialog box. Click the Add New Variable button.

  11. Fill in the details as shown below:

    images/Xdialog_3.gif
    There are various styles available for a numeric field. We will choose the "Calculator" style.
  12. Now add the third variable to the Xdialog box. Click the Add New Variable button. Fill in the details as shown below:

    images/Xdialog_4.gif
    Click the ? button to the right of the Style prompt to display examples of all the different styles.
  13. Next you need to define the properties of the list box. Click the Define List Box button. The List Box dialog box appears. The choices for the list box can be "User Defined," which means you will type in the list of possible choices for the list box to display. Alternatively, the choices for the list box can be "Computed Automatically." This example does not use the "Computed Automatically" option in this example, although this option is extremely powerful. It can automatically populate the list box with the names of the reports, forms, browses etc. in the current database. It can also populate the list box with data that is stored in a table etc. Feel free to explore the options before continuing the lesson.

  14. Enter "Check", "Cash" and "Credit card" as the options. Enter one option per line.

    images/Xdialog_5.gif
  15. Click OK to close the dialog box.

  16. Click Next > to proceed to the next Genie page.

  17. Enter the dialog box title and header text as shown below:

    images/Xdialog_6.gif
  18. Click Next >. This dialog screen allows you to specify the name of the dialog box result variable. This variable is different than the variables you placed on the dialog box on the previous screens. This variable allows you to "trap" whether the user clicked the OK button to close the dialog, or the Cancel button.

  19. Accept the default entries and click Next > and Finish to close the Genie.

    • The Code Editor shows the Action you just added.

      images/Xdialog_8.gif
    images/Xdialog_7.gif
  20. Click the Run Script button to test your script. The following Xdialog appears.

    images/Xdialog_9.gif
  21. Click the Calendar button to the right of the Date payment received field. A pop-up calendar appears. Make any selection and the calendar closes and enters the selected date.

    images/Xdialog_10.gif
  22. Click the Calculator button to the right of the Amount received field. A pop-up calculator appears.

    images/Xdialog_11.gif

When you click the OK button to close the dialog the variables that were included in this dialog box will be available to you in any subsequent Actions you choose to add to this script.