Thread overview
(OT) VB6 DoEvents
Jul 27, 2004
Vathix
July 27, 2004
What's the equivalent to VB6 DoEvents procedure? It must be a win32 api function, right?

-----------------------
Carlos Santander Bernal


July 27, 2004
"Carlos Santander B." <carlos8294@msn.com> wrote in message news:ce6ncp$2ndm$2@digitaldaemon.com...
> What's the equivalent to VB6 DoEvents procedure? It must be a win32 api function, right?
>
> -----------------------
> Carlos Santander Bernal
>

There's Application.doEvents() in DFL; it's a PeekMessage() loop until it
returns zero (no more messages in the queue).


July 28, 2004
"Vathix" <vathixSpamFix@dprogramming.com> escribió en el mensaje
news:ce6nvd$2nia$1@digitaldaemon.com
| "Carlos Santander B." <carlos8294@msn.com> wrote in message
| news:ce6ncp$2ndm$2@digitaldaemon.com...
|| What's the equivalent to VB6 DoEvents procedure? It must be a win32 api
|| function, right?
||
|| -----------------------
|| Carlos Santander Bernal
||
|
| There's Application.doEvents() in DFL; it's a PeekMessage() loop until it
| returns zero (no more messages in the queue).

Thanks a lot!

-----------------------
Carlos Santander Bernal