vote up 8 vote down star
2

I have an issue with my application when windows shuts down - my app isn't exiting nicely, resulting in the End Task window being displayed. How can I use the debugger to see what's going on? e.g. is there a way to send the windows shutdown message(s) to my application so it thinks windows is shutting down, so i can see exactly how it behaves?

flag

37% accept rate
Ah shoot. Follow your other thread with the exact same topic. – nobugz Feb 8 at 22:35

2 Answers

vote up 5 vote down

I believe when Windows is shutting down it sends a "WM_QueryEndSession" to all applications. To simulate a Windows shutdown you could create a little application that just does a PostMessage with this message to your application and see what happens. Windows may send more messages than that to actually close your application (like WM_CLOSE), but whenever your application receives the "WM_QueryEndSession" message it means your application is about to have the rug pulled out from under it.

link|flag
Also, WM_QueryEndSession is followed (given the all-OK by the apps that receive it) by WM_EndSession. – JMD Feb 6 at 16:24
Excellent - thanks for the clarification JMD. I figured there had to be an additional message, but I wasn't sure what it was. – Jon Tackabury Feb 6 at 16:25
Any useful utils that I can use to send such messages instead of crafting one myself? – Rory Feb 6 at 16:28
I don't know of any applications, but you could do this: [DllImport("user32.dll")] [return: MarshalAs(UnmanagedType.Bool)] static extern bool PostMessage(HandleRef hWnd, uint Msg, IntPtr wParam, IntPtr lParam); Then just call PostMessage(handle, WM_whatever, IntPtr.Zero, IntPtr.Zero); – Jon Tackabury Feb 6 at 16:39
Sorry, the code doesn't format very well in the comments. – Jon Tackabury Feb 6 at 16:39
show 1 more comment
vote up 1 vote down

You could use the SystemEvents.SessionEnding event, which is fired when a user logs off or shuts down. Be careful when using it though, some resources are not guaranteed to be available. For example, my application needed to hit a server when it was shutting down to clock a user out (a timeclock application), but the network card is sometimes already disabled when this event occurs. Since you're just doing cleanup, this should work fine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.