How can you ask the computer to ALLWAYS wait for a key.. But still funtion.. like, this key ( the 4 arrows) are how the Person moves around.
Im think of a Wend Command But that will freeze it up..
What could I do?
Thankyou,
Evan
Printable View
How can you ask the computer to ALLWAYS wait for a key.. But still funtion.. like, this key ( the 4 arrows) are how the Person moves around.
Im think of a Wend Command But that will freeze it up..
What could I do?
Thankyou,
Evan
Why not use the keypress event?
Otherwise, use something like this:
While 'No keypress'
DoEvents()
The key is using the function DoEvents() while its waiting. Otherwise just use the keypress event for more efficient processing.
Phil