I've noticed that if you craete a standard loop for an applications e.g.
While not KeyDown(KEY_ESCAPE)
......
Wend
In windows, its runs as fast as possible (i.e. Utilising available processing power 100%). I can see this is usesfull for games but is there a way of contolling this for desktop apps?
I've tried using PollSystem() inside the loop but it seems to have no affect.
While not KeyDown(KEY_ESCAPE)
......
Wend
In windows, its runs as fast as possible (i.e. Utilising available processing power 100%). I can see this is usesfull for games but is there a way of contolling this for desktop apps?
I've tried using PollSystem() inside the loop but it seems to have no affect.