penfold1992
Registered User.
- Local time
- Today, 20:40
- Joined
- Nov 22, 2012
- Messages
- 169
I want to incorperate a button that locks a certain portion of my form but my form is still quite long...
Is there a way which I can lock multiple fields at once or do i have to do:
and so on...
Is there a way which I can lock multiple fields at once or do i have to do:
Code:
Field1.Enabled = False
Field2.Enabled = False
Field3.Enabled = False
Field4.Enabled = False
and so on...