README.md

December 5, 2022 ยท View on GitHub

Replacement for DoEvents

Description

Stop All these DoEvents cr*p post. This is the way it windows does it and done in c++.

Slight update from my last one. zip is included.

More Info

Submitted On2004-03-07 11:53:40
ByFrenzied-Panda
LevelBeginner
User Rating4.0 (16 globes from 4 users)
CompatibilityVB 5.0, VB 6.0
CategoryCoding Standards
WorldVisual Basic
Archive FileReplacemen171717372004.zip

Source Code

While b
 'It is better if you get the hwnd value beforehand so you
 'do not have to ask the vb dll for it each and every time
 DoMyEvents (Me.hWnd) 'Endless loop
 'If you want other window to be processed
 'then you need to DoMyEvents () with their HWND
 'That is why you cannot pause the ide window
 'when your in this loop.
Wend