Conditional Locking?

wcrc

Registered User.
Local time
Today, 23:46
Joined
Mar 10, 2003
Messages
27
I would like to use one text box to determine whether or not to lock a data entry box.

e.g. If [Equip_status] = "in work" then unlock [start_date]

I know that there has to be a way, I just can make it work.


Thanks in advance
 
Run this procedure in the form's On Current event:

If [Equip_status] = "in work" then
me![start_date].Locked=True
End if
 
Thank you immensely! I was racking my head for that one.
 
Thank you immensely! I was racking my head for that one.
 

Users who are viewing this thread

Back
Top Bottom