Hi everyone,
I've got some check boxes on a form which includes one for 'Other'. Whenever the 'Other' check box is checked (selected) I want to display a text box in which the user can specify what 'Other' means.
This works fine with the following code:-
'****
Private Sub MHOther_Click()
Me.MHOthSpecify.Enabled = True
End Sub
'****
However, if I should de-select the 'Other' check box, the text box still remains visible with its contents.
I would like to clear the contents and disable the text box when the check box is unchecked.
Any Suggestions??
Appreciated
Will
I've got some check boxes on a form which includes one for 'Other'. Whenever the 'Other' check box is checked (selected) I want to display a text box in which the user can specify what 'Other' means.
This works fine with the following code:-
'****
Private Sub MHOther_Click()
Me.MHOthSpecify.Enabled = True
End Sub
'****
However, if I should de-select the 'Other' check box, the text box still remains visible with its contents.
I would like to clear the contents and disable the text box when the check box is unchecked.
Any Suggestions??
Appreciated
Will