I am using a check box to toggle a text box's visible state from tru to false. This is what I have:

Private Sub chk1_Click()

If chk1.Enabled = True Then
Text3.Visible = True

Else

chk1.Enabled = False
Text3.Visible = False

End If
End Sub

When the program starts, Text3 is hidden as it should be. When you check the box, Text3 appears as it should. But when you uncheck the box, Text3 does not dissappear as it should. What didn't I do?

Thank You.