Me![Control On The Form]
Me.A Property Of The Form
for example:
Me![LastName] = "Jones"
[LastName] is the name of a control on the form
Me.Caption = "Sales data entry"
Caption is a form property.
For the most part you can use the dot in both instance and it will
work i.e. Me.[LastName].BackColor = vbRed will work.
You cannot use the bang in both instances.
Me![LastName]!BackColor = vbRed will not work.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.