• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What causes (not responding)?

When the application is hung up in a way that doesn't allow the window message pump to empty it's message queue. This can be avoided by proper use of threading, but most applications work something like this:

loop forever until application closes
{

check for windows events

do application stuff

}

When it hangs in "do application stuff", the message queue for the window backs up and the app is "not responding". Most common reason is not enough disk IO or high CPU load and /or lack of threading.
 
Last edited:
So, how do I narrow down the cause or fix it?
I can open the resource monitor and seeit is normally something to do with InternetExplorer.
 
Sometimes it is just a matter of the user sending WE too many commands too quickly, and the processor gets bogged down with an "aw shit" moment. 🙂
 
Back
Top