try
{
if(m_commCtrl.GetPortOpen())
m_commCtrl.SetPortOpen(FALSE);//关闭串口
}
catch (CException* e)
{
//错误的其它处理
e->ReportError();
e->Delete();
}
是不是利用MSComm打开的串口?
用 void CMSComm::SetPortOpen(BOOL bNewValue); 函数打开或关闭串口;bNewValue值设置为TRUE,则打开串口;bNewValue值设置为FALSE,则关闭串口。
用 bool CMSComm::GetPortOpen(); 函数获取串口状态,返回TRUE,则串口被打开;否则串口关闭。