TSequencer.InputDialogModeless
Previous  Top  Next

InputDialogModeless(strText)

Same as InputDialog() except that it displays the dialog box as modeless.
If you want your sequencer to continue running even if the user presses Cancel you have to handle the TSeqAbortError exception.


ParameterDescription     
strTextThe input dialog prompt text.     
 
Returns  
The text entered by the user or None if the user selected cancel.

Example
Display an input box asking for a HV level:

def fMySeq(oSeq):
  oSeq.InputDialogModeless('Please set a new HV level in the range 1 .. 4!)
  oSeq.Wait([HK], fCheckHV)