I have a checkbox that when checking multiple mailboxes is disabled in my form. I am currently using
With Me!Textbox
.Locked = True
Is there a method in which I can list several objects inside a WITH statement, and not write for each text field every time
eg.
With Me!Text1, Text2, Text3
Imran source
share