vote up 2 vote down star

I have an app where I read from the serialport, everything goes fine, until I close the app. When I click on the [X] the app simply hangs, the UI: unresponsive.

I read from the port in the DataReceived event handler, and I close the port when FormClosed happens:

    private void MainForm_FormClosed(object sender, FormClosedEventArgs e)
    {
        mySerialPort.Close();
    }
flag

1 Answer

vote up 3 vote down

Serial Port hangs while closing

This is a known issue with the SerialPort class and described in this Product Feedback article as well as several threads in these forums. You may notice the "closed by design" dismissal.

link|flag
1  
+1, this ties in with the OP's previous question. But for a good SO answer you could have posted short summary here. Suppose that that page moves? – Henk Holterman Nov 8 at 13:47
1  
UNBELIEVABLE!!! this is a known bug in the framework which as closed by MS as "works as designed!!!" +1 for the reference – mfeingold Nov 8 at 14:26

Your Answer

Get an OpenID
or
never shown

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