ME!

N

navin

what does this ME! in access mean!?! i have seen it but what does it
represent!

The Me keyword behaves like an implicitly declared variable. It is
automatically available to every procedure in a class module. When a
class can have more than one instance, Me provides a way to refer to
the specific instance of the class where the code is executing. Using
Me is particularly useful for passing information about the currently
executing instance of a class to a procedure in another module.
 
Top