Description
Displays a dialog and select the active page.
-
Return Type
-
None
-
Syntax
-
object.Show [Style], [Page]
The Show Method syntax has these parts: |
| object | An expression evaluating to an object of type McCommandDialog. | | Style | Optional. A mcCommandDialogStyle enumeration, as described in settings. Selects how the dialog should be displayed.
| | Page | Optional. A Variant value. An optional Page name to activate.
| Settings The settings for Style are:
 | mccdsDefault | 0 |
Display the dialog using its default settings
|
 | mccdsModal | 1 |
Display the dialog and block until it closes
|
 | mccdsHidden | 2 |
Create the dialog window, but do not show it
|
 | mccdsDock | 4 |
Dock this dialog
|
 | mccdsFloat | 8 |
Float this dialog
|
 | mccdsMDIFloat | 16 |
Convert the dialog to an MDI child window
|
Remarks
When the parameters are omitted, this is equivalent to setting Visible to True.
|