Skip to content

Commit

Permalink
Update dlgAllMSControls.frm
Browse files Browse the repository at this point in the history
  • Loading branch information
GCuser99 committed Jun 18, 2024
1 parent 8c7bf8b commit 551f88c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/dlgAllMSControls.frm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub CheckBox1_Click()
TextBox1.Enabled = CheckBox1.Value
If CheckBox1.Value Then
TextBox1.Enabled = True
Else
TextBox1.Enabled = False
End If
End Sub

Private Sub ComboBox1_Change()
Expand Down

0 comments on commit 551f88c

Please sign in to comment.