If a variable value is being set in a different form opened with a MDI option 
is there a way to wait until that value has been set been set before calling 
the next line of code in the calling form?

The following works in tracing but locks up in running mode.

set var vVariableInForm1 text = 'False'

EDIT USING Form1 MDI AS Form1  --vVariableInForm1 will be set to true in this 
form and the form will be closed with CloseWindow

while vVariableInForm1 = 'False' then
...  --some code to check vVariableInForm1's value.
endwhile

...  --Continue with calling form's code.

Is there a pause timer shorter than 1?

Reply via email to