Input In VB6
How do you wait until you get some feedback to do something. If you have Command1, how do you make a thing that says until Command1 is hit just pause on that? Sorry if that sounds fuzzy but I don''t know how else to explain it.
-Taphreek
Hoo boy... another person who does not understand the benefits of an event-based programming language...
Unless you''ve got a timer or something doing the work, then all you have to do is put the code in the commandbutton that you want to run when you click it.
If you do have a timer, then you want to disable the timer (Timer1.Enabled = False), and in the command button re-start it (Timer1.Enabled = True). That simple.
Unless you''ve got a timer or something doing the work, then all you have to do is put the code in the commandbutton that you want to run when you click it.
If you do have a timer, then you want to disable the timer (Timer1.Enabled = False), and in the command button re-start it (Timer1.Enabled = True). That simple.
RIP GameDev.net: launched 2 unusably-broken forum engines in as many years, and now has ceased operating as a forum at all, happy to remain naught but an advertising platform with an attached social media presense, headed by a staff who by their own admission have no idea what their userbase wants or expects.Here's to the good times; shame they exist in the past.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement