VBA to chhange properties

wojnicztrust

Registered User.
Local time
Yesterday, 19:45
Joined
Jan 21, 2013
Messages
15
I have form with 5 text boxes:
1) Date
2) A
3) B
4) C
5) D
When I'll open form, Date field has Enabled status "yes" but others fields have enabled status "no" I need vba which I put in to "after update" Date field, vba should change the enabled status of the rest of the boxes (A, B, C, D) from "no" to "yes"
Is it possible?
 
Last edited:
Try in "after update" event for Date field:
Code:
Me.YourTextBoxName.Enabled = True
 

Users who are viewing this thread

Back
Top Bottom