Check Box Help!!

UTK

Engineer Bound
Local time
Today, 15:13
Joined
Oct 13, 2004
Messages
17
In my DB i want to have an "Other" checkbox that, when checked, will display and "Other" text box for free text comments. I am not sure how to do this. WOuld it be done in VB? Please help. :confused:
 
In the AfterUpdate event for the check box place something like the following:

Code:
If me!myCheck = true then
    me!myCommentTextBox.visible = true
else
   me!myCommentTextBox.visible = false
end if


Would this work?
kh
 
YES! Thank You!
 

Users who are viewing this thread

Back
Top Bottom