fat controller
Slightly round the bend..
- Local time
- Today, 17:52
- Joined
- Apr 14, 2011
- Messages
- 758
I have a form which has 5 checkboxes, and I am trying to get a textbox (txtnotes) to become visible if any/either/all of those text boxes is ticked.
Is my thinking correct that I will have to put an on change or on update event in for each text box, along the lines of
Is my thinking correct that I will have to put an on change or on update event in for each text box, along the lines of
Code:
If me.checkbox1.value = -1 Then
me.txtnotes.visible = true
Else
me.checkbox1.setfocus
End If
End Sub