Re:'Server Busy'
2011/05/27 12:04:43
(permalink)
That "server busy ..." message is from Windows and it's a standard part of an internal mechanism (OLE) that is used to send things ("objects") from one process to another. It happens when one process sends an object (e.g. a file) to another process that is busy, or gets busy processing the object that was sent. When that receiving process does not respond very soon back to the sending process, that dialog is displayed. The dialog will eventually go away when the target process finishes.
An example is drag-and-drop. It can happen e.g. when you drag something from one process to another process that then takes a very long time to process it, e.g. copying or moving a file or folder.
There is not much the sending process (e.g. dragged from) can do about it except set flags or timers in advance to basically ignore the whole thing. I've never noticed any case where the dialog is actually helpful.
The best you might be able to do is guess what you did to cause one process to send something to another process while that process was busy or got busy from what you dragged.
Bill B.