Hi,
I have two modules: Mod1 and Mod2. I want to call the function ‘ ProgressBar’ which is present in Mod1 inside a class ‘clsMain’. In the function ‘ProgressBar’, I set the increment to the progress bar. The function looks something like this:
def ProgressBar(self,intIncrement):
self.gauge1.SetValue(intIncrement)
It takes integer as an input. Self refers to the frame on which it is set.
How would I call this function from Mod2???
Any help is appreciated!!!!
Regards,
Rajendra