private void Recieve(object sender,
System.IO.Ports.SerialDataReceivedEventArgs e)
{
try{
recieved_data = serial.ReadExisting();
TextFromRs232.Text = "received";
Thread.Sleep(16);
}
catch
{}
}
当RS232的传讯号过来时
我希望在我的textbox TextFromRs232能够显示收到
可是当讯号传进来的时候
程式跑到TextFrom 那一行会直接跳到catch
为什么会这样呢?
新手感谢您的解答