I'm new to VBA, so this might be stupid. Is there an equivalent of 'this' pointer in VBA so that I can pass it to other module?
+3
A:
Not for a module, no. A module doesn't have an instance, so there is no instance variable to pass. All the methods are static. If you are within a class instance, however, you can use Me.
Josh Einstein
2010-07-07 01:27:27
Thanks, I think this is it.
DenMark
2010-07-07 02:19:10