bonekrusher
Registered User.
- Local time
- Today, 13:17
- Joined
- Nov 19, 2005
- Messages
- 266
Hi All,
I have a Form which allows a user to input. I want the user to use a certian order when filling them out. for example if "audStart" is not filled out then preceeding controls are disabled. When they do input data into "audStart" the next Control is Enabled. Does any know how to do this?
I have a Form which allows a user to input. I want the user to use a certian order when filling them out. for example if "audStart" is not filled out then preceeding controls are disabled. When they do input data into "audStart" the next Control is Enabled. Does any know how to do this?
Code:
If IsNull(Me.AudStart) Then
Me.finny.Enabled = False
Me.res.Enabled = False
Me.comp.Enabled = False
Me.newaud.Enabled = False
else
end if