Axis, i got another question....

gino

Registered User.
Local time
Today, 19:13
Joined
Mar 16, 2000
Messages
117
Axis,

Thanks alot you have been helpfull.

I got a problem. I got one yes/no field and another field that is defaulted enabled to NO. I want the field that is not enabled to be enabled if yes/no field is yes. Also, vise versa.....if set to no then not enabled.

EXAMPLE
if (field one) is yes
(field two) is enabled

if (field one) is no
(field two is not enabled

field two is defaulted to not enabled

I am already greatfull w/ your help.....please me out again. thanks.
 
You already have the concept, just think about applying it to the code:

If Me![Field1].Value = True Then Me![Field2].Enabled = True

Also, this forum is not intended to be a personal mail service. If you want to ask me a question directly, please send it to me at the email address in my profile. Otherwise just post a message and someone will respond to it.
 

Users who are viewing this thread

Back
Top Bottom