Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: ObsidianWolf on December 13, 2003, 01:54 PM

Title: Sleep vs DoEvents
Post by: ObsidianWolf on December 13, 2003, 01:54 PM
I am looking to make a program that performs a task at a specified interval and was wondering if I should use the Sleep API or a DoEvents kind of Loop?

Feel Free to share Ideas.
Title: Re:Sleep vs DoEvents
Post by: K on December 13, 2003, 02:38 PM
Quote from: ObsidianWolf on December 13, 2003, 01:54 PM
I am looking to make a program that performs a task at a specified interval and was wondering if I should use the Sleep API or a DoEvents kind of Loop?

Feel Free to share Ideas.

You should register a Timer and a callback via the CreateTimer and KillTimer API.
Title: Re:Sleep vs DoEvents
Post by: CupHead on December 13, 2003, 03:41 PM
Or since you're using VB, just create a timer control.
Title: Re:Sleep vs DoEvents
Post by: iago on December 13, 2003, 07:18 PM
timer control isn't as reliable, Grok once told me.  Perhaps he can elaborate?
Title: Re:Sleep vs DoEvents
Post by: Grok on December 13, 2003, 08:18 PM
Quote from: iago on December 13, 2003, 07:18 PM
timer control isn't as reliable, Grok once told me.  Perhaps he can elaborate?

Yes.
Title: Re:Sleep vs DoEvents
Post by: iago on December 13, 2003, 08:22 PM
Quote from: Grok on December 13, 2003, 08:18 PM
Quote from: iago on December 13, 2003, 07:18 PM
timer control isn't as reliable, Grok once told me.  Perhaps he can elaborate?

Yes.

Good hustle.
Title: Re:Sleep vs DoEvents
Post by: Grok on December 13, 2003, 08:25 PM
I do my best!
Title: Re:Sleep vs DoEvents
Post by: Adron on December 14, 2003, 06:35 AM
I've seen no reliability problems with the timer control, so go ahead and use that. I think it uses WM_TIMER messages which work great in C++ apps as well. They may not be the most effective thing, but they work without any trouble.
Title: Re:Sleep vs DoEvents
Post by: Grok on December 14, 2003, 09:22 AM
Quote from: Adron on December 14, 2003, 06:35 AM
I've seen no reliability problems with the timer control, so go ahead and use that. I think it uses WM_TIMER messages which work great in C++ apps as well. They may not be the most effective thing, but they work without any trouble.

They get blocked.  You miss all the events during the blocking, and receive one summary event after.
Title: Re:Sleep vs DoEvents
Post by: Adron on December 14, 2003, 09:48 AM
Blocked by? As in, they don't execute when the program isn't calling DoEvents often enough?
Title: Re:Sleep vs DoEvents
Post by: Grok on December 14, 2003, 09:55 AM
That may be the correct mechanism of failure.  They're certainly not acting like asynchronous events, or at least handled as such.

When I use CreateTimer, they fire reliably without the need for DoEvents scattered throughout.
Title: Re:Sleep vs DoEvents
Post by: Adron on December 14, 2003, 10:17 AM
OK, an attempt to summarize:

If you want a timer to update something in your gui periodically, use a Timer control. It will only execute when your gui is allowed to update. If you don't allow your gui to update for an extended period of time, and miss several timeouts, you'll only get a single event afterwards. That way you don't do a lot of unnecessary drawing because you get 50 timer events in a row with no time between them.

If you want a timer to handle something that must be done periodically, want to get called multiple times if you've missed previous periods, and isn't related to your gui, use CreateTimer.

Does that sound about right?

Which CreateTimer call is this btw?

Title: Re:Sleep vs DoEvents
Post by: iago on December 14, 2003, 04:14 PM
So what somebody should do is have an API timer which calls DoEvents() to keep the GUI from screwing up while being blocked! :)