|
-
Mar 6th, 2002, 09:48 PM
#1
Thread Starter
Junior Member
visible checkbox
hi, (i am a newbie at VB.....)
when i load a form, i assign a value to my textbox (named txtNRep).
what i want is when the user changes my value, a checked checkbox appears
i tried
Private Sub txtNRep_Change()
cbChgRep.Visible = True
cbChgRep.Value = 1
End Sub
but, this causes the checkbox to always appear, because i am changing the value in my form_load
is there an easy way to catch the change only after the form loads?
thanks so much in advance,
meg
-
Mar 6th, 2002, 09:58 PM
#2
Try this:
'Place a checkbox on the form and set in visible value = false
text1_change()
if text1.text = "" then
Check1.visible = false
else
check1.visible = true
end if
end sub
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Mar 6th, 2002, 10:03 PM
#3
Thread Starter
Junior Member
thanks so much for your quick response!
-
Mar 6th, 2002, 10:07 PM
#4
Originally posted by tennis_blues
thanks so much for your quick response!
I hope I solved your problem.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
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
|