With Checkbox as chkMyCheckbox - Goto Properties, Events and choose the On Click event. Then pick Code Editor.
Add this inside of that Sub Procedure...
If chkMyCheckbox.value = -1 then 'Checked
lblMyLabel.visible = True
txtMyTextbox.visible = True
Else
lblMyLabel.visible = False
txtMyTextbox.visible = False
End if
Hope that helps,
Mike
Mike
EchoVue.com
|