views:

82

answers:

3

I am writing a windows form application in .net using C#.

I am running into a problem that if my program is running when the computer goes into the sleep and/or hibernate state (I am not sure at this time which one, or if both, cause the problem), when the machine wakes up again the program just hangs. The only way to exit out of it is to kill the process from the task manager.

This is, for obvious reasons, not the way I want the program to function. Even if I just shut the program down when it goes into these states, that would be fine, but I am not quite sure how to do this or if there is a more graceful way altogether of handling this.

+1  A: 

This article covers listening for those events. You'll have to do something like override WndProc and listen for PBT_APMSUSPEND events.

msergeant
+4  A: 

Handling those events may be a work-around. But before applying this kind of work-around I'd try to figure out what the application was doing when the OS went into hibernate.

Occurs hanging although application was just idle?

Is the application doing some kind of low-level work (communication with device drivers or external hardware) that should not be interrupted?

Does the application use some kind of network connection?

Christian Schwarz
It does poll a serial port every second and I use the built in serialport class. My gut tells me that this is what is causing the problem as I have had a number of issues with known bugs in the VS serialport class. But even then, the quickest solution is to just shutdown the program and we have been under a lot of time pressure recently so I will probably just do that to solve ALL the potential problems.
EatATaco
OK. Try closing the serial port when you receive hibernate/sleep/standby and open it after the OS is up again.
Christian Schwarz
+1 for getting at the root of the problem :)
Allen
A: 
void SystemEvents_PowerModeChanged(object sender, PowerModeChangedEventArgs e)
{
    if(e.Mode == PowerModes.Suspend)
    {
        this.GracefullyHandleSleep();
    }
}

This is what I went with.

EatATaco