Important alert: (current site time 5/20/2013 8:54:43 PM EDT)
 

winzip icon

DoWait

Email
Submitted on: 10/17/2012 12:27:41 PM
By: X-Fly 
Level: Beginner
User Rating: Unrated
Compatibility: VB 6.0
Views: 2400
(About the author)
 
     DoWait. Sometimes I need to wait for a user click or input etc. before continuing with the program. Instead of a timer system, I have written this incredible small control to do just that - WAITING. Not visible at runtime, only one property, but it do what I ask. No need to load a form as model (me. show 1) or otherwise. No need to vote as this is very small indeed. Hope you can use it. Note: Load the DoWait.vbp or the Group.vbp When loading for the first time, there may be an error. Do not heed warning and continue to load. After saving, there will not be a problem anymore.
 
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.Virus note:All files are scanned once-a-day by Planet Source Code for viruses, but new viruses come out every day, so no prevention program can catch 100% of them. For your own safety, please:
  1. Re-scan downloaded files using your personal virus checker before using it.
  2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
  3. Scan the source code with Minnow's Project Scanner

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 2 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments
10/18/2012 12:59:21 AMBonnie West

DoEvents in a loop is very CPU-intensive. Also, the whole loop is tiny enough to include in any routine.
(If this comment was disrespectful, please report it.)

 
10/18/2012 7:41:11 AMmathprof

Could you please explain the code?
Why the caution not to remove the commented statements?
How is it diffeent from DoEvents?
(If this comment was disrespectful, please report it.)

 
10/20/2012 5:59:02 AMX-Fly

This is merely to show the programmer that even a simple program like this could be built into a usercontrol.

Also, The comments not to remove the comments is part of the usercontrol building process. I left it there just as VB has built it.

The main exercise is to show a very small routine can be used to wait for user-input, rather than a larger way or timer function.

Yes, doEvents is CPU consuming, but almost never an overflow error - but in the timer function, that can easily happen and make the program very slow indeed...especially if it's a large program.
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.