U UTK Engineer Bound Local time Today, 15:13 Joined Oct 13, 2004 Messages 17 Nov 1, 2004 #1 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.
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.
KenHigg Registered User Local time Today, 18:13 Joined Jun 9, 2004 Messages 13,327 Nov 1, 2004 #2 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
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
U UTK Engineer Bound Local time Today, 15:13 Joined Oct 13, 2004 Messages 17 Nov 1, 2004 #3 YES! Thank You!