How can I access a Sub inside Form1 from Module1?
Is this even possible?
What I want to do is have a 'progress bar' embedded into the form... I'm going to use labels to simulate the progress bar, but all the heavy duty processing happens in the module. I'd like to be able to update the labels from the module.
Something like
(( from inside module ))
Form1.setPBMax(maxCount)
While ...
...
Form1.incrementPB()
Wend
Is what I envision. Suggestions?
TIA-
leo
Is this even possible?
What I want to do is have a 'progress bar' embedded into the form... I'm going to use labels to simulate the progress bar, but all the heavy duty processing happens in the module. I'd like to be able to update the labels from the module.
Something like
(( from inside module ))
Form1.setPBMax(maxCount)
While ...
...
Form1.incrementPB()
Wend
Is what I envision. Suggestions?
TIA-
leo