private void OnCommandA_Click(object sender, EventArgs e) { //Example command LCD ON, this command does not require wait for answer if (m_objRFE != null && m_objRFE.PortConnected) { m_objRFE.SendCommand_ScreenON(); Thread.Sleep(100); //Wait 100ms to wait for command to settle } }