"Me" when referenced from a FORM, means THAT FORM, or ME. So instead of writing a from reference like: Forms!Myform!Mycontrol, it can be written as Me.MyControl. Limitation is it can only reference the current form. If you are referencing a different form, you need to use the long version. So if you wanted to set a text box on the current form, to a value on another form (open but not current, or not in focus) then it would be Me.MyTextBox = Forms!MyOtherForm!MyOtherTextBox as an example