View Full Version : Axis, i got another question....


gino
04-05-2000, 03:41 PM
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.

Axis
04-05-2000, 09:37 PM
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.