Equivalent of 'this' pointer Equivalent of 'this' pointer vba vba

Equivalent of 'this' pointer


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.


Try "Me" for classes. Modules are global (like a static class) so have no instance concept.