private void OnDumpScreen_CheckedChanged(object sender, EventArgs e)
        {
            RFECommunicator objRFE = m_controlRemoteScreen.RFExplorer;

            if (objRFE == null)
            {
                return;
            }

            objRFE.CaptureRemoteScreen = CaptureDumpScreen;

            OnChkDumpScreenChangeEvent(new EventArgs());

            if (CaptureDumpScreen)
            {
                objRFE.SendCommand_EnableScreenDump();
            }
            else
            {
                objRFE.SendCommand_DisableScreenDump();
            }
        }