The Show function attempts to display a form.
Syntax | ||||
Show([Modal][, Owner]) | ||||
Return value | ||||
No | ||||
Parameter | ||||
Use |
Name |
Type |
Passing |
Description |
Optional |
Modal |
ModalModes |
ByVal |
See below |
Optional |
Owner |
Formular |
ByVal |
Specify a form that has already been displayed as the owner of this form. |
ModalModes |
Description |
0 - NonModal |
The window appears so that the user can click it into the background. Any code after the show statement will run immediately. |
1 - ModalContinue |
The window appears so that the user cannot click it in the background. Possibly existing code after the show statement will run immediately. |
2 - ModalWaitHere |
The window appears so that the user cannot click it in the background. Possibly existing code after the show statement will only be executed after the form has been closed. |