Check Condition

B

Bryan Hughes

Hello,

I want to use a Class Module to check to see if a condition is true or not.
I want to call the module from a form and have the form wait until module
completes checking. Once module is complete have the form continue to run
and do what the module found the condition to be, either true or false.

How can I do this?

-Bryan
 
J

JohnFol

Exactly as you have described. If you create an instance of a class and call
a method, the execution will pass to the method, and the code calling it ill
wait for a return.
 
Top