| Style | Purpose | Contains | Return value | 
| CHOOSEDATABASE | Displays a dialog box that allows the user to specify and open a database | The title, "Choose Database;" List of choices for servers and databases; Open, Select, Cancel, Browse, Help, and About buttons | Text. Three-value list. Server name, File name, 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, concatenated with a colon (:). | 
| 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). |