|
-
Nov 20th, 2000, 10:58 AM
#1
Thread Starter
Lively Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|