Need help in form calling properties

ashishprem

Registered User.
Local time
Today, 13:36
Joined
Mar 18, 2008
Messages
35
Hi,
I need some help in calling form..
A function is being executed in a form1. In this function a call is there to open form2. The form2 opens. No problem in this. But when form2 opens it resumes the execution of the remaining part of the function in Part1.
What I want is once form2 opens it should pause the exeution of form1 and once form2 is closed then resume the execution of form1. Any suggestion to implement this.

Ashish
 
maybe you could issue a conditional statement at the beginning of the function that checks to see weather form 2 is loaded. If it is, use the GOTO statement to jump to the line of the function you want. Another option might be to just issue the top portion of the function at one time and use the bottom portion of it with the ONCLOSE event of form 2...??
 

Users who are viewing this thread

Back
Top Bottom