<DialogName>.ShowModeless

<< 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>.ShowModeless

 

Description

 

Show the dialog and start a modeless message pump.

Modeless Message Pump will NOT keep control of script and execution will continue immediately after.

 

Syntax

 

<DialogName>.ShowModeless

 

Returns

 

None.

 

Parameters

 

Name

Type

Optional

Meaning





 

Remarks

 

Restrictions

 

See also

 

<DialogName>.ShowModal

 

Examples

 
'   ShowModeless
'     In ShowModeless Form will start living and script execution will immediatly continue
'     to next line. So there must be some loop after .ShowModeless method

  frmMain.ShowModeless

'     Execution will continue immediately here so a loop is needed to keep control
  while frmMain.IsWindow
    DoEvents
  Wend