what is the code?

tubar

Registered User.
Local time
Today, 15:03
Joined
Jul 13, 2006
Messages
190
if user selects check box 0 true i want the user to beable to select true or false in check box 1 and checkbox 2

if user selects check box 0 false i want the user NOT to beable to select true or false in check box 1 and checkbox 2

i have to write a code after the event RIGHT? what is the code
 
if me.[Checkbox 0]=True then
me.[Checkbox 1].enabled=true
me.[Checkbox 2].enabled=true
Else
me.[Checkbox 1].enabled=false
me.[Checkbox 2].enabled=false
End if


Something like that should work
 

Users who are viewing this thread

Back
Top Bottom