Programming Reference Manual
 
Syntax
 
Me
 
Description
Me references the current macro/module. It can be used like any other object variable, except that it's reference can't be changed.
See Also
Example
 
Sub Main
    DoIt
    Me.DoIt ' calls the same sub
End Sub
Sub DoIt
    MsgBox "Hello"
End Sub