Style | Purpose | Contains | Return value |
ChooseDatabase | Allows user to select a database | Controls and displays for browsing databases; Open, Select, Cancel, Browse, Help, and About buttons | Text list of 3 values. Server name, file name, and title of database. Returns null for server name if the database is local. |
LocalBrowse | Allows user to select a file name from the local file system | Controls and displays for browsing local file system; Select, Cancel, and Network or Help buttons | Text. File name that user selected or entered. |
Ok | Displays an informational message | Title and prompt; OK button | 1 (True). |
OkCancelCombo | Allows user to select one value from a drop-down list of choices | Title and prompt; List of choices; OK and Cancel buttons | Text. Value that user selected. |
OkCancelEdit | Allows user to type in text input | Title and prompt; Text box for input; OK and Cancel buttons | Text. Value that user entered. |
OkCancelEditCombo | Allows user to select one value from a list of choices, or type in a different value | Title and prompt; List of choices with text box; OK and Cancel buttons | Text. Value that user selected or entered. |
OkCancelList | Allows user to select one value from a list of choices | Title and prompt; List of choices; OK and Cancel buttons | Text. Value that user selected. |
OkCancelListMult | Allows user to select multiple values from a list of choices | Title and prompt; List of choices; OK and Cancel buttons | Text list. All values that user selected. |
Password | Allows user to enter password without displaying it on the screen | Title and prompt; Text box that accepts and hides user input; OK and Cancel buttons | Text. Password that user entered. |
YesNo | Allows user to make a Yes/No decision | Title and prompt; Yes and No buttons | 1 (True, Yes) or 0 (False, No). |
YesNoCancel | Allows user to make a Yes/No decision, or Cancel | Title and prompt; Yes, No, and Cancel buttons | 1 (True, Yes), 0 (False, No), or -1 (Cancel). |