<DialogName>.ShowModal

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > DIALOGS > Dialog Pseudo-object Methods, Properties, Events > Dialog Pseudo-object Methods and Properties >

<DialogName>.ShowModal

 

Description

 

Show the dialog and start a modal message pump.

Modal Message Pump will keep control of script execution until form is destroyed.

 

Syntax

 

<DialogName>.ShowModal

 

Returns

 

None.

 

Parameters

 

Name

Type

Optional

Meaning





 

Remarks

 

Restrictions

 

See also

 

<DialogName>.ShowModeless

 

Examples

 

'   ShowModal
'     In ShowModal Form will start living but script execution will stop 
'     untill Form will be closed. Only Form events will be handled
   frmMain.ShowModal

'     Execution will continue here only when FrmMain will be destroyed