i have a game going and im usin the move method inside a loop for smooth animation but when an enemy bounces around the screen like one of those screensavers i cant click on anything else how do i fix this
Printable View
i have a game going and im usin the move method inside a loop for smooth animation but when an enemy bounces around the screen like one of those screensavers i cant click on anything else how do i fix this
Could be you forgot to call DoEvents in your loop?
-
While 1
DoEvents 'Get Windows Messages
Wend
-
------------------
[email protected]
...
Every program can be reduced to one instruction which doesn't work.