How to Enable or disable the Text1 control when the user clicks on the Check1 CheckBox control.
Posted on July 17, 2011
1 2 3 4 | 'Controls - How to Enable or disable the Text1 control when the user clicks on the Check1 CheckBox control. Private Sub Check1_Click() Text1.Enabled = (Check1.Value = vbChecked) End Sub |