View Single Post

  #7 (permalink)  
Old 12-31-2004
Wilfried Wilfried is offline
Senior Member
Black Belt
 
Join Date: Nov 2004
Posts: 2,112
Hi,

The 'server busy' msg window comes when the calling (your) application does not respond to windows messages anymore. For example you will have this a lot if you step with the debugger trough the code.

Cleaning up mappoint.exe is helpfull whilst developping because a lot of time the program will not 'nice' terminating. In final fase it should not be done.

About the non responsive. If your program has many things to do in a closed loop then it should be into consideration to eather optimize it for speed, or run it in a background thread context. That way to not get the 'server busy' message.
Reply With Quote