Me Object

Syntax              Me

Group                Object

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            Set.

Example            '#Language "WWB-COM"
Sub Main
    DoIt
    Me.DoIt ' calls the same sub
EndSub
Sub DoIt
    MsgBox "Hello"
End Sub