12-12-2009, 01:21 AM
Basically how I handle this is I declare a Public variable in a module (I use 1 module that has all my Global Variables). Then if I want to increment like you said I can do it.
i.e.
i.e.
Code:
ModuleA
Dim ThisIsMyPublicVar
ModuleB
Function Fun1()
ThisIsMyPublicVar +=1
--------------
--------------
End Function