What is the "me" in the call events lines?
What is the "me" in the call events lines?
That is the form object, itself.
Just to expand a bit on ItsMe's answer -
In every form or report code module, you can refer to "this form" or "this report" by using "Me". "Me" should not be declared with a Dim statement, since it is built in. You can use it anywhere you would use the "Forms!myform" reference. One big advantage of it is that you can use "Me" in a subform or subreport code module, to avoid using a somewhat complicated reference syntax.
nice! Will need to read more about "me" function and play around it to understand when it's convenient to use it. My code works with help from both of you! Thanks
Thread closed!![]()