示例#1
0
        private void SetupPrettyTrackBarImages(PrettyTrackBar ctrl)
        {
            if (ctrl.Orientation == Orientation.Horizontal)
            {
                // load images
                string s = path + "\\" + ctrl.TopLevelControl.Name + "\\";
                if (File.Exists(s + "slider_back" + pic_file_ext))
                {
                    ctrl.BackgroundImage = Image.FromFile(s + "slider_back" + pic_file_ext);
                }
                else
                {
                    ctrl.BackgroundImage = null;
                }

                if (File.Exists(s + "slider_head" + pic_file_ext))
                {
                    ctrl.HeadImage = Image.FromFile(s + "slider_head" + pic_file_ext);
                }
                else
                {
                    ctrl.HeadImage = null;
                }

                ctrl.Invalidate();
            }
            else if (ctrl.Orientation == Orientation.Vertical)
            {
                string s = path + "\\" + ctrl.TopLevelControl.Name + "\\";
                if (File.Exists(s + "slider_back_v" + pic_file_ext))
                {
                    ctrl.BackgroundImage = Image.FromFile(s + "slider_back_v" + pic_file_ext);
                }
                else
                {
                    ctrl.BackgroundImage = null;
                }

                if (File.Exists(s + "slider_head_v" + pic_file_ext))
                {
                    ctrl.HeadImage = Image.FromFile(s + "slider_head_v" + pic_file_ext);
                }
                else
                {
                    ctrl.HeadImage = null;
                }

                ctrl.Invalidate();
            }
        }
示例#2
0
        private static void SetupPrettyTrackBarImages(PrettyTrackBar ctrl)
        {
            // load images
            string s = path + "\\" + ctrl.TopLevelControl.Name + "\\" + ctrl.Name + "-";
            if (File.Exists(s + "back" + pic_file_ext))
                ctrl.BackgroundImage = Image.FromFile(s + "back" + pic_file_ext);
            else ctrl.BackgroundImage = null;

            if(File.Exists(s + "head" + pic_file_ext))
                ctrl.HeadImage = Image.FromFile(s + "head" + pic_file_ext);
            else ctrl.HeadImage = null;

            ctrl.Invalidate();
        }
示例#3
0
        private static void RestorePrettyTrackBar(PrettyTrackBar ctrl, XmlDocument doc)
        {
            XmlNodeList matches = doc.GetElementsByTagName(ctrl.Name);
            if (matches.Count == 0) // not found
                return;

            Debug.Assert(matches.Count == 1);

            foreach (XmlNode node in matches[0].ChildNodes)
            {
                switch (node.LocalName)
                {
                    case "BackColor":
                        ctrl.BackColor = StringToColor(node.InnerText);
                        break;
                    case "BackgroundImageLayout":
                        ctrl.BackgroundImageLayout = (ImageLayout)Enum.Parse(typeof(ImageLayout), node.InnerText);
                        break;
                    case "Location":
                        ctrl.Location = RestoreLocation(node);
                        break;
                    case "Size":
                        ctrl.Size = RestoreSize(node);
                        break;
                }
            }
        }
示例#4
0
 private static void SavePrettyTrackBar(PrettyTrackBar ctrl, XmlTextWriter writer)
 {
     writer.WriteStartElement(ctrl.Name);
     writer.WriteElementString("Type", "PrettyTrackBar");
     writer.WriteElementString("BackColor", ctrl.BackColor.Name);
     writer.WriteElementString("BackGroundImageLayout", ctrl.BackgroundImageLayout.ToString());
     SaveLocation(ctrl.Location, writer);
     SaveSize(ctrl.Size, writer);
     writer.WriteEndElement();
 }
示例#5
0
        private void SetupPrettyTrackBarImages(PrettyTrackBar ctrl)
        {
            if (ctrl.Orientation == Orientation.Horizontal)
            {
                // load images
                string s = path + "\\" + ctrl.TopLevelControl.Name + "\\";
                if (File.Exists(s + "slider_back" + pic_file_ext))
                    ctrl.BackgroundImage = Image.FromFile(s + "slider_back" + pic_file_ext);
                else ctrl.BackgroundImage = null;

                if (File.Exists(s + "slider_head" + pic_file_ext))
                    ctrl.HeadImage = Image.FromFile(s + "slider_head" + pic_file_ext);
                else ctrl.HeadImage = null;

                ctrl.Invalidate();
            }
            else if (ctrl.Orientation == Orientation.Vertical)
            {
                string s = path + "\\" + ctrl.TopLevelControl.Name + "\\";
                if (File.Exists(s + "slider_back_v" + pic_file_ext))
                {
                    ctrl.BackgroundImage = Image.FromFile(s + "slider_back_v" + pic_file_ext);
                }
                else ctrl.BackgroundImage = null;

                if (File.Exists(s + "slider_head_v" + pic_file_ext))
                    ctrl.HeadImage = Image.FromFile(s + "slider_head_v" + pic_file_ext);
                else ctrl.HeadImage = null;

                ctrl.Invalidate();
            }
        }
示例#6
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Console));
            this.mnuWave = new System.Windows.Forms.MenuItem();
            this.mnuEQ = new System.Windows.Forms.MenuItem();
            this.mnuCWX = new System.Windows.Forms.MenuItem();
            this.mnuVoiceMessages = new System.Windows.Forms.MenuItem();
            this.mnuWizard = new System.Windows.Forms.MenuItem();
            this.mnuAbout = new System.Windows.Forms.MenuItem();
            this.contextMenuFilter = new System.Windows.Forms.ContextMenu();
            this.menuItemFilterConfigure = new System.Windows.Forms.MenuItem();
            this.mnuFilterReset = new System.Windows.Forms.MenuItem();
            this.timer_cpu_meter = new System.Windows.Forms.Timer(this.components);
            this.timer_peak_text = new System.Windows.Forms.Timer(this.components);
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.chkNoiseGate = new System.Windows.Forms.CheckBoxTS();
            this.chkVOX = new System.Windows.Forms.CheckBoxTS();
            this.chkDSPComp = new System.Windows.Forms.CheckBoxTS();
            this.chkDSPCompander = new System.Windows.Forms.CheckBoxTS();
            this.comboTXProfile = new System.Windows.Forms.ComboBoxTS();
            this.chkShowTXFilter = new System.Windows.Forms.CheckBoxTS();
            this.ptbPWR = new PowerSDR.PrettyTrackBar();
            this.ptbRF = new PowerSDR.PrettyTrackBar();
            this.ptbAF = new PowerSDR.PrettyTrackBar();
            this.btnNetwork = new System.Windows.Forms.LabelTS();
            this.chkShowTXCWFreq = new System.Windows.Forms.CheckBoxTS();
            this.chkCWVAC = new System.Windows.Forms.CheckBoxTS();
            this.udCWPitch = new System.Windows.Forms.NumericUpDownTS();
            this.chkCWIambic = new System.Windows.Forms.CheckBoxTS();
            this.chkBreakIn = new System.Windows.Forms.CheckBoxTS();
            this.udCWSpeed = new System.Windows.Forms.NumericUpDownTS();
            this.btnG160_X2 = new System.Windows.Forms.RadioButtonTS();
            this.btnG160_X1 = new System.Windows.Forms.RadioButtonTS();
            this.btnATT = new System.Windows.Forms.CheckBoxTS();
            this.btnHIGH_AF = new System.Windows.Forms.CheckBoxTS();
            this.btnHIGH_RF = new System.Windows.Forms.CheckBoxTS();
            this.btnUSB = new System.Windows.Forms.LabelTS();
            this.ptbRX0Gain = new PowerSDR.PrettyTrackBar();
            this.chkEnableSubRX = new System.Windows.Forms.CheckBoxTS();
            this.ptbPanSubRX = new PowerSDR.PrettyTrackBar();
            this.ptbPanMainRX = new PowerSDR.PrettyTrackBar();
            this.ptbRX1Gain = new PowerSDR.PrettyTrackBar();
            this.radBandGEN = new System.Windows.Forms.RadioButtonTS();
            this.radBandWWV = new System.Windows.Forms.RadioButtonTS();
            this.radMoreBands = new System.Windows.Forms.RadioButtonTS();
            this.radBand2 = new System.Windows.Forms.RadioButtonTS();
            this.radBand6 = new System.Windows.Forms.RadioButtonTS();
            this.radBand10 = new System.Windows.Forms.RadioButtonTS();
            this.radBand12 = new System.Windows.Forms.RadioButtonTS();
            this.radBand15 = new System.Windows.Forms.RadioButtonTS();
            this.radBand17 = new System.Windows.Forms.RadioButtonTS();
            this.radBand20 = new System.Windows.Forms.RadioButtonTS();
            this.radBand30 = new System.Windows.Forms.RadioButtonTS();
            this.radBand40 = new System.Windows.Forms.RadioButtonTS();
            this.radBand60 = new System.Windows.Forms.RadioButtonTS();
            this.radBand80 = new System.Windows.Forms.RadioButtonTS();
            this.radBand160 = new System.Windows.Forms.RadioButtonTS();
            this.btnZAP = new System.Windows.Forms.CheckBoxTS();
            this.btnVFOA = new System.Windows.Forms.CheckBoxTS();
            this.chkVFOsinc = new System.Windows.Forms.CheckBoxTS();
            this.btnEraseMemory = new System.Windows.Forms.ButtonTS();
            this.chkVFOLock = new System.Windows.Forms.CheckBoxTS();
            this.btnMemoryQuickRecall = new System.Windows.Forms.ButtonTS();
            this.btnMemoryQuickSave = new System.Windows.Forms.ButtonTS();
            this.chkDisplayPeak = new System.Windows.Forms.CheckBoxTS();
            this.comboDisplayMode = new System.Windows.Forms.ComboBoxTS();
            this.chkDisplayAVG = new System.Windows.Forms.CheckBoxTS();
            this.chkRecordWav = new System.Windows.Forms.CheckBoxTS();
            this.chkMUT = new System.Windows.Forms.CheckBoxTS();
            this.contextMenuMUTE = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.leftToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.rightToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.bothToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.noneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.chkMON = new System.Windows.Forms.CheckBoxTS();
            this.chkTUN = new System.Windows.Forms.CheckBoxTS();
            this.chkMOX = new System.Windows.Forms.CheckBoxTS();
            this.chkPlayWav = new System.Windows.Forms.CheckBoxTS();
            this.comboVACSampleRate = new System.Windows.Forms.ComboBoxTS();
            this.txtWheelTune = new System.Windows.Forms.TextBoxTS();
            this.udFilterHigh = new System.Windows.Forms.NumericUpDownTS();
            this.udFilterLow = new System.Windows.Forms.NumericUpDownTS();
            this.ptbFilterWidth = new PowerSDR.PrettyTrackBar();
            this.btnFilterShiftReset = new System.Windows.Forms.ButtonTS();
            this.ptbFilterShift = new PowerSDR.PrettyTrackBar();
            this.chkPower = new System.Windows.Forms.CheckBoxTS();
            this.chkDSPNB2 = new System.Windows.Forms.CheckBoxTS();
            this.chkNB = new System.Windows.Forms.CheckBoxTS();
            this.chkANF = new System.Windows.Forms.CheckBoxTS();
            this.chkNR = new System.Windows.Forms.CheckBoxTS();
            this.chkBIN = new System.Windows.Forms.CheckBoxTS();
            this.udXIT = new System.Windows.Forms.NumericUpDownTS();
            this.udRIT = new System.Windows.Forms.NumericUpDownTS();
            this.chkXIT = new System.Windows.Forms.CheckBoxTS();
            this.chkRIT = new System.Windows.Forms.CheckBoxTS();
            this.comboMeterTXMode = new System.Windows.Forms.ComboBoxTS();
            this.comboMeterRXMode = new System.Windows.Forms.ComboBoxTS();
            this.btnRITReset = new System.Windows.Forms.ButtonTS();
            this.btnXITReset = new System.Windows.Forms.ButtonTS();
            this.btnVFOSwap = new System.Windows.Forms.CheckBoxTS();
            this.btnVFOBtoA = new System.Windows.Forms.CheckBoxTS();
            this.btnVFOAtoB = new System.Windows.Forms.CheckBoxTS();
            this.chkVFOSplit = new System.Windows.Forms.CheckBoxTS();
            this.chkSQLMainRX = new System.Windows.Forms.CheckBoxTS();
            this.udVACTXGain = new System.Windows.Forms.NumericUpDownTS();
            this.udVACRXGain = new System.Windows.Forms.NumericUpDownTS();
            this.chkVACEnabled = new System.Windows.Forms.CheckBoxTS();
            this.udSubRXFilterHigh = new System.Windows.Forms.NumericUpDownTS();
            this.udSubRXFilterLow = new System.Windows.Forms.NumericUpDownTS();
            this.ptbSubRXFilterWidth = new PowerSDR.PrettyTrackBar();
            this.btnSubRXFilterShiftReset = new System.Windows.Forms.ButtonTS();
            this.ptbSubRXFilterShift = new PowerSDR.PrettyTrackBar();
            this.chkNB2SubRX = new System.Windows.Forms.CheckBoxTS();
            this.chkNBSubRX = new System.Windows.Forms.CheckBoxTS();
            this.chkANFSubRX = new System.Windows.Forms.CheckBoxTS();
            this.chkNRSubRX = new System.Windows.Forms.CheckBoxTS();
            this.chkBINSubRX = new System.Windows.Forms.CheckBoxTS();
            this.comboAGCMainRX = new System.Windows.Forms.ComboBoxTS();
            this.comboAGCSubRX = new System.Windows.Forms.ComboBoxTS();
            this.ptbSQLMainRX = new PowerSDR.PrettyTrackBar();
            this.udSQLSubRX = new System.Windows.Forms.NumericUpDownTS();
            this.chkSQLSubRX = new System.Windows.Forms.CheckBoxTS();
            this.ptbSQLSubRX = new PowerSDR.PrettyTrackBar();
            this.udSQLMainRX = new System.Windows.Forms.NumericUpDownTS();
            this.txtWheelTuneSubRX = new System.Windows.Forms.TextBoxTS();
            this.ptbPWR1 = new PowerSDR.PrettyTrackBar();
            this.ptbRF1 = new PowerSDR.PrettyTrackBar();
            this.ptbAF1 = new PowerSDR.PrettyTrackBar();
            this.udRF1 = new System.Windows.Forms.NumericUpDownTS();
            this.udPWR1 = new System.Windows.Forms.NumericUpDownTS();
            this.udAF1 = new System.Windows.Forms.NumericUpDownTS();
            this.lblRX2 = new System.Windows.Forms.LabelTS();
            this.ptbNotchWidth = new PowerSDR.PrettyTrackBar();
            this.ptbNotchShift = new PowerSDR.PrettyTrackBar();
            this.btnNotchReset = new System.Windows.Forms.ButtonTS();
            this.radSUBRxModeAM = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeSAM = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeDSB = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeCWU = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeDIGU = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeDIGL = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeLSB = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeSPEC = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeDRM = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeFMN = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeUSB = new System.Windows.Forms.RadioButtonTS();
            this.radSUBRxModeCWL = new System.Windows.Forms.RadioButtonTS();
            this.radModeAM = new System.Windows.Forms.RadioButtonTS();
            this.radModeSAM = new System.Windows.Forms.RadioButtonTS();
            this.radModeDSB = new System.Windows.Forms.RadioButtonTS();
            this.radModeCWU = new System.Windows.Forms.RadioButtonTS();
            this.radModeDIGU = new System.Windows.Forms.RadioButtonTS();
            this.radModeDIGL = new System.Windows.Forms.RadioButtonTS();
            this.radModeLSB = new System.Windows.Forms.RadioButtonTS();
            this.radModeSPEC = new System.Windows.Forms.RadioButtonTS();
            this.radModeDRM = new System.Windows.Forms.RadioButtonTS();
            this.radModeFMN = new System.Windows.Forms.RadioButtonTS();
            this.radModeUSB = new System.Windows.Forms.RadioButtonTS();
            this.radModeWFM = new System.Windows.Forms.RadioButtonTS();
            this.chkManualNotchFilter = new System.Windows.Forms.CheckBoxTS();
            this.chkG11ATTbtn = new System.Windows.Forms.CheckBoxTS();
            this.chkG11AFbtn = new System.Windows.Forms.CheckBoxTS();
            this.chkG11RFbtn = new System.Windows.Forms.CheckBoxTS();
            this.radBandHF = new System.Windows.Forms.RadioButtonTS();
            this.radBand600 = new System.Windows.Forms.RadioButtonTS();
            this.radBand2190 = new System.Windows.Forms.RadioButtonTS();
            this.btnFMMC = new System.Windows.Forms.ButtonTS();
            this.btnFMMR = new System.Windows.Forms.ButtonTS();
            this.btnFMMS = new System.Windows.Forms.ButtonTS();
            this.lblMemoryNumber = new System.Windows.Forms.LabelTS();
            this.contextMemoryMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.eraseAllMemoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.lblFMMemory = new System.Windows.Forms.LabelTS();
            this.contextMenuFMMemory = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.eraseAllMemoryToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.udFMOffset = new System.Windows.Forms.NumericUpDownTS();
            this.radFMModeHigh = new System.Windows.Forms.RadioButtonTS();
            this.radFMModeSimplex = new System.Windows.Forms.RadioButtonTS();
            this.radFMModeLow = new System.Windows.Forms.RadioButtonTS();
            this.chkCTCSS = new System.Windows.Forms.CheckBoxTS();
            this.comboFMCTCSSFreq = new System.Windows.Forms.ComboBoxTS();
            this.ptbFMMicGain = new PowerSDR.PrettyTrackBar();
            this.chkVACMute = new System.Windows.Forms.CheckBoxTS();
            this.chkG6ATT_6dB = new System.Windows.Forms.CheckBoxTS();
            this.chkG6AF = new System.Windows.Forms.CheckBoxTS();
            this.chkG6RF = new System.Windows.Forms.CheckBoxTS();
            this.chkWFMstereo = new System.Windows.Forms.CheckBoxTS();
            this.chkG6ATT_12dB = new System.Windows.Forms.CheckBoxTS();
            this.chkG6ATT_18dB = new System.Windows.Forms.CheckBoxTS();
            this.timer_clock = new System.Windows.Forms.Timer(this.components);
            this.contextLOSCMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.xtal1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.setupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.waveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.equalizerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cWXToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.voiceMessagesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.wizardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.minimalisticToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dXToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.xTRVToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.debugToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mnuSetup = new System.Windows.Forms.MenuItem();
            this.contextNewVFOSmeter = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripNewVFOSmeterRX = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripTextBox2 = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripNewVFOSmeterTX = new System.Windows.Forms.ToolStripComboBox();
            this.grpG500 = new System.Windows.Forms.GroupBoxTS();
            this.btnG500_X1 = new System.Windows.Forms.RadioButtonTS();
            this.grpG137 = new System.Windows.Forms.GroupBoxTS();
            this.btnG137_X1 = new System.Windows.Forms.RadioButtonTS();
            this.grpG40 = new System.Windows.Forms.GroupBoxTS();
            this.btnG40_X1 = new System.Windows.Forms.RadioButtonTS();
            this.grpModeSpecificPhone = new System.Windows.Forms.GroupBoxTS();
            this.groupBoxTS1 = new System.Windows.Forms.GroupBoxTS();
            this.btnMsg6 = new System.Windows.Forms.CheckBoxTS();
            this.btnMsg5 = new System.Windows.Forms.CheckBoxTS();
            this.btnMsg4 = new System.Windows.Forms.CheckBoxTS();
            this.btnMsg3 = new System.Windows.Forms.CheckBoxTS();
            this.btnMsg2 = new System.Windows.Forms.CheckBoxTS();
            this.btnMsg1 = new System.Windows.Forms.CheckBoxTS();
            this.udNoiseGate = new System.Windows.Forms.NumericUpDownTS();
            this.udVOX = new System.Windows.Forms.NumericUpDownTS();
            this.ptbMIC = new PowerSDR.PrettyTrackBar();
            this.udCPDR = new System.Windows.Forms.NumericUpDownTS();
            this.ptbCPDR = new PowerSDR.PrettyTrackBar();
            this.udCOMP = new System.Windows.Forms.NumericUpDownTS();
            this.ptbCOMP = new PowerSDR.PrettyTrackBar();
            this.picNoiseGate = new System.Windows.Forms.PictureBox();
            this.ptbNoiseGate = new PowerSDR.PrettyTrackBar();
            this.picVOX = new System.Windows.Forms.PictureBox();
            this.ptbVOX = new PowerSDR.PrettyTrackBar();
            this.udMIC = new System.Windows.Forms.NumericUpDownTS();
            this.lblMIC = new System.Windows.Forms.LabelTS();
            this.lblTransmitProfile = new System.Windows.Forms.LabelTS();
            this.grpVFOA = new System.Windows.Forms.GroupBoxTS();
            this.panelVFOAHover = new System.Windows.Forms.PanelTS();
            this.txtVFOALSD = new System.Windows.Forms.TextBoxTS();
            this.txtVFOAMSD = new System.Windows.Forms.TextBoxTS();
            this.txtVFOABand = new System.Windows.Forms.TextBoxTS();
            this.txtVFOAFreq = new System.Windows.Forms.TextBoxTS();
            this.btnHidden = new System.Windows.Forms.ButtonTS();
            this.grpVFOnew = new System.Windows.Forms.GroupBoxTS();
            this.picAGauge = new System.Windows.Forms.PictureBox();
            this.lblATTNewVFO = new System.Windows.Forms.LabelTS();
            this.lblRFNewVFO = new System.Windows.Forms.LabelTS();
            this.lblAFNewVFO = new System.Windows.Forms.LabelTS();
            this.txtNewVFOBand = new System.Windows.Forms.TextBoxTS();
            this.lblVFOBTX = new System.Windows.Forms.LabelTS();
            this.lblVFOATX = new System.Windows.Forms.LabelTS();
            this.lblLOSC = new System.Windows.Forms.LabelTS();
            this.lblVFOB = new System.Windows.Forms.LabelTS();
            this.lblVFOA = new System.Windows.Forms.LabelTS();
            this.panelLOSCnewHover = new System.Windows.Forms.PanelTS();
            this.panelVFOBnewHover = new System.Windows.Forms.PanelTS();
            this.panelVFOAnewHover = new System.Windows.Forms.PanelTS();
            this.txtLOSCnew = new System.Windows.Forms.TextBoxTS();
            this.txtVFOBnew = new System.Windows.Forms.TextBoxTS();
            this.txtVFOAnew = new System.Windows.Forms.TextBoxTS();
            this.sMeterDigital1 = new PowerSDR.Invoke.SMeter1();
            this.sMeterDigital2 = new PowerSDR.Invoke.SMeter2();
            this.lblNotchShift = new System.Windows.Forms.LabelTS();
            this.lblWidth = new System.Windows.Forms.LabelTS();
            this.grpSoundControls = new System.Windows.Forms.GroupBoxTS();
            this.lblAF = new System.Windows.Forms.LabelTS();
            this.lblPWRValue = new System.Windows.Forms.LabelTS();
            this.lblRFValue = new System.Windows.Forms.LabelTS();
            this.picSQLSubRX = new System.Windows.Forms.PictureBox();
            this.lblRF = new System.Windows.Forms.LabelTS();
            this.lblPWR = new System.Windows.Forms.LabelTS();
            this.lblAGC = new System.Windows.Forms.LabelTS();
            this.lblAFValue = new System.Windows.Forms.LabelTS();
            this.picSQLMainRX = new System.Windows.Forms.PictureBox();
            this.grpModeSpecificCW = new System.Windows.Forms.GroupBoxTS();
            this.grpCWX = new System.Windows.Forms.GroupBoxTS();
            this.btnCWX4 = new System.Windows.Forms.CheckBoxTS();
            this.btnCWX5 = new System.Windows.Forms.CheckBoxTS();
            this.btnCWX1 = new System.Windows.Forms.CheckBoxTS();
            this.btnCWX6 = new System.Windows.Forms.CheckBoxTS();
            this.btnCWX2 = new System.Windows.Forms.CheckBoxTS();
            this.btnCWX3 = new System.Windows.Forms.CheckBoxTS();
            this.grpCWPitch = new System.Windows.Forms.GroupBoxTS();
            this.lblCWPitchFreq = new System.Windows.Forms.LabelTS();
            this.ptbCWSpeed = new PowerSDR.PrettyTrackBar();
            this.lblCWSpeed = new System.Windows.Forms.LabelTS();
            this.grpVFOB = new System.Windows.Forms.GroupBoxTS();
            this.txtVFOBLSD = new System.Windows.Forms.TextBoxTS();
            this.panelVFOBHover = new System.Windows.Forms.PanelTS();
            this.txtVFOBMSD = new System.Windows.Forms.TextBoxTS();
            this.lblVFOBLSD = new System.Windows.Forms.LabelTS();
            this.txtVFOBBand = new System.Windows.Forms.TextBoxTS();
            this.txtVFOBFreq = new System.Windows.Forms.TextBoxTS();
            this.grpLOSC = new System.Windows.Forms.GroupBoxTS();
            this.panelLOSCHover = new System.Windows.Forms.PanelTS();
            this.txtLOSCLSD = new System.Windows.Forms.TextBoxTS();
            this.txtLOSCMSD = new System.Windows.Forms.TextBoxTS();
            this.txtLOSCFreq = new System.Windows.Forms.TextBoxTS();
            this.grpG160 = new System.Windows.Forms.GroupBoxTS();
            this.grpG3020 = new System.Windows.Forms.GroupBoxTS();
            this.btnG3020_X4 = new System.Windows.Forms.RadioButtonTS();
            this.btnG3020_X3 = new System.Windows.Forms.RadioButtonTS();
            this.btnG3020_X2 = new System.Windows.Forms.RadioButtonTS();
            this.btnG3020_X1 = new System.Windows.Forms.RadioButtonTS();
            this.grpG80 = new System.Windows.Forms.GroupBoxTS();
            this.btnG80_X4 = new System.Windows.Forms.RadioButtonTS();
            this.btnG80_X3 = new System.Windows.Forms.RadioButtonTS();
            this.btnG80_X2 = new System.Windows.Forms.RadioButtonTS();
            this.btnG80_X1 = new System.Windows.Forms.RadioButtonTS();
            this.grpG59 = new System.Windows.Forms.GroupBoxTS();
            this.grpZoom = new System.Windows.Forms.GroupBoxTS();
            this.label2 = new System.Windows.Forms.LabelTS();
            this.ptbDisplayZoom = new PowerSDR.PrettyTrackBar();
            this.ptbDisplayPan = new PowerSDR.PrettyTrackBar();
            this.label1 = new System.Windows.Forms.LabelTS();
            this.radDisplayZoom32x = new System.Windows.Forms.RadioButtonTS();
            this.radDisplayZoom1x = new System.Windows.Forms.RadioButtonTS();
            this.radDisplayZoom2x = new System.Windows.Forms.RadioButtonTS();
            this.radDisplayZoom16x = new System.Windows.Forms.RadioButtonTS();
            this.radDisplayZoom4x = new System.Windows.Forms.RadioButtonTS();
            this.radDisplayZoom8x = new System.Windows.Forms.RadioButtonTS();
            this.grpSubRX = new System.Windows.Forms.GroupBoxTS();
            this.grpBandHF = new System.Windows.Forms.GroupBoxTS();
            this.grpVFOBetween = new System.Windows.Forms.GroupBoxTS();
            this.txtMemory = new System.Windows.Forms.TextBoxTS();
            this.grpDisplay2 = new System.Windows.Forms.GroupBoxTS();
            this.grpOptions = new System.Windows.Forms.GroupBoxTS();
            this.btnChangeTuneStepLarger = new System.Windows.Forms.ButtonTS();
            this.btnTuneStepChangeSmaller = new System.Windows.Forms.ButtonTS();
            this.btnChangeTuneStepLargerSubRX = new System.Windows.Forms.ButtonTS();
            this.btnTuneStepChangeSmallerSubRX = new System.Windows.Forms.ButtonTS();
            this.grpModeSpecificDigital = new System.Windows.Forms.GroupBoxTS();
            this.grpDIGSampleRate = new System.Windows.Forms.GroupBoxTS();
            this.ptbVACTXGain = new PowerSDR.PrettyTrackBar();
            this.ptbVACRXGain = new PowerSDR.PrettyTrackBar();
            this.lblTXGain = new System.Windows.Forms.LabelTS();
            this.lblRXGain = new System.Windows.Forms.LabelTS();
            this.lblTuneStep = new System.Windows.Forms.LabelTS();
            this.grpDisplay = new System.Windows.Forms.GroupBoxTS();
            this.picWaterfall = new System.Windows.Forms.PictureBox();
            this.txtDisplayPeakFreq = new System.Windows.Forms.TextBoxTS();
            this.txtDisplayCursorFreq = new System.Windows.Forms.TextBoxTS();
            this.txtDisplayCursorPower = new System.Windows.Forms.TextBoxTS();
            this.txtDisplayPeakPower = new System.Windows.Forms.TextBoxTS();
            this.txtDisplayCursorOffset = new System.Windows.Forms.TextBoxTS();
            this.txtDisplayPeakOffset = new System.Windows.Forms.TextBoxTS();
            this.picDisplay = new System.Windows.Forms.PictureBox();
            this.grpMainRXFilter = new System.Windows.Forms.GroupBoxTS();
            this.lblFilterWidth = new System.Windows.Forms.LabelTS();
            this.lblFilterShift = new System.Windows.Forms.LabelTS();
            this.radFilter1 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter2 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter3 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter4 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter5 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter6 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter7 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter8 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter9 = new System.Windows.Forms.RadioButtonTS();
            this.radFilter10 = new System.Windows.Forms.RadioButtonTS();
            this.radFilterVar1 = new System.Windows.Forms.RadioButtonTS();
            this.radFilterVar2 = new System.Windows.Forms.RadioButtonTS();
            this.lblFilterLow = new System.Windows.Forms.LabelTS();
            this.lblFilterHigh = new System.Windows.Forms.LabelTS();
            this.lblCPUMeter = new System.Windows.Forms.LabelTS();
            this.grpDSPMainRX = new System.Windows.Forms.GroupBoxTS();
            this.grpMultimeter = new System.Windows.Forms.GroupBoxTS();
            this.picMultiMeterDigital = new System.Windows.Forms.PictureBox();
            this.lblMultiSMeter = new System.Windows.Forms.LabelTS();
            this.txtMultiText = new System.Windows.Forms.TextBoxTS();
            this.picMultimeterAnalog = new System.Windows.Forms.PictureBox();
            this.grpVFO = new System.Windows.Forms.GroupBoxTS();
            this.grpManualNotch = new System.Windows.Forms.GroupBoxTS();
            this.labelTS6 = new System.Windows.Forms.LabelTS();
            this.labelTS5 = new System.Windows.Forms.LabelTS();
            this.lblNotchLow = new System.Windows.Forms.LabelTS();
            this.lblNotchHigh = new System.Windows.Forms.LabelTS();
            this.picSmallAGauge = new System.Windows.Forms.PictureBox();
            this.grpSubRXFilter = new System.Windows.Forms.GroupBoxTS();
            this.labelTS1 = new System.Windows.Forms.LabelTS();
            this.labelTS2 = new System.Windows.Forms.LabelTS();
            this.radSubRXFilter1 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter2 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter3 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter4 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter5 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter6 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter7 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter8 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter9 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilter10 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilterVar1 = new System.Windows.Forms.RadioButtonTS();
            this.radSubRXFilterVar2 = new System.Windows.Forms.RadioButtonTS();
            this.labelTS3 = new System.Windows.Forms.LabelTS();
            this.labelTS4 = new System.Windows.Forms.LabelTS();
            this.grpDSPSubRX = new System.Windows.Forms.GroupBoxTS();
            this.grpSoundControls1 = new System.Windows.Forms.GroupBoxTS();
            this.lblRF1 = new System.Windows.Forms.LabelTS();
            this.lblPWR1 = new System.Windows.Forms.LabelTS();
            this.lblAF1 = new System.Windows.Forms.LabelTS();
            this.grpSubRXMode = new System.Windows.Forms.GroupBoxTS();
            this.grpMainRXMode = new System.Windows.Forms.GroupBoxTS();
            this.grpG11 = new System.Windows.Forms.GroupBoxTS();
            this.grpMoreBands = new System.Windows.Forms.GroupBoxTS();
            this.radBandX12 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX11 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX10 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX9 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX8 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX7 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX6 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX5 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX4 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX3 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX2 = new System.Windows.Forms.RadioButtonTS();
            this.radBandX1 = new System.Windows.Forms.RadioButtonTS();
            this.grpModeSpecificFM = new System.Windows.Forms.GroupBoxTS();
            this.labelTS7 = new System.Windows.Forms.LabelTS();
            this.grpFMVoiceMsg = new System.Windows.Forms.GroupBoxTS();
            this.chkFMMsg6 = new System.Windows.Forms.CheckBoxTS();
            this.chkFMMsg5 = new System.Windows.Forms.CheckBoxTS();
            this.chkFMMsg4 = new System.Windows.Forms.CheckBoxTS();
            this.chkFMMsg3 = new System.Windows.Forms.CheckBoxTS();
            this.chkFMMsg2 = new System.Windows.Forms.CheckBoxTS();
            this.chkFMMsg1 = new System.Windows.Forms.CheckBoxTS();
            this.labelTS8 = new System.Windows.Forms.LabelTS();
            this.txtFMmemory = new System.Windows.Forms.TextBoxTS();
            this.grpG6 = new System.Windows.Forms.GroupBoxTS();
            ((System.ComponentModel.ISupportInitialize)(this.ptbPWR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRF)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbAF)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCWPitch)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCWSpeed)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRX0Gain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbPanSubRX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbPanMainRX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRX1Gain)).BeginInit();
            this.contextMenuMUTE.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.udFilterHigh)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udFilterLow)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbFilterWidth)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbFilterShift)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udXIT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udRIT)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udVACTXGain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udVACRXGain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSubRXFilterHigh)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSubRXFilterLow)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSubRXFilterWidth)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSubRXFilterShift)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSQLMainRX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSQLSubRX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSQLSubRX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSQLMainRX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbPWR1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRF1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbAF1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udRF1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udPWR1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udAF1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbNotchWidth)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbNotchShift)).BeginInit();
            this.contextMemoryMenu.SuspendLayout();
            this.contextMenuFMMemory.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.udFMOffset)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbFMMicGain)).BeginInit();
            this.contextLOSCMenu.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.contextNewVFOSmeter.SuspendLayout();
            this.grpG500.SuspendLayout();
            this.grpG137.SuspendLayout();
            this.grpG40.SuspendLayout();
            this.grpModeSpecificPhone.SuspendLayout();
            this.groupBoxTS1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.udNoiseGate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udVOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbMIC)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCPDR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbCPDR)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCOMP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbCOMP)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picNoiseGate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbNoiseGate)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picVOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbVOX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.udMIC)).BeginInit();
            this.grpVFOA.SuspendLayout();
            this.grpVFOnew.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picAGauge)).BeginInit();
            this.grpSoundControls.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picSQLSubRX)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picSQLMainRX)).BeginInit();
            this.grpModeSpecificCW.SuspendLayout();
            this.grpCWX.SuspendLayout();
            this.grpCWPitch.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ptbCWSpeed)).BeginInit();
            this.grpVFOB.SuspendLayout();
            this.grpLOSC.SuspendLayout();
            this.grpG160.SuspendLayout();
            this.grpG3020.SuspendLayout();
            this.grpG80.SuspendLayout();
            this.grpG59.SuspendLayout();
            this.grpZoom.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ptbDisplayZoom)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbDisplayPan)).BeginInit();
            this.grpSubRX.SuspendLayout();
            this.grpBandHF.SuspendLayout();
            this.grpVFOBetween.SuspendLayout();
            this.grpDisplay2.SuspendLayout();
            this.grpOptions.SuspendLayout();
            this.grpModeSpecificDigital.SuspendLayout();
            this.grpDIGSampleRate.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ptbVACTXGain)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbVACRXGain)).BeginInit();
            this.grpDisplay.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picWaterfall)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picDisplay)).BeginInit();
            this.grpMainRXFilter.SuspendLayout();
            this.grpDSPMainRX.SuspendLayout();
            this.grpMultimeter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picMultiMeterDigital)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picMultimeterAnalog)).BeginInit();
            this.grpVFO.SuspendLayout();
            this.grpManualNotch.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picSmallAGauge)).BeginInit();
            this.grpSubRXFilter.SuspendLayout();
            this.grpDSPSubRX.SuspendLayout();
            this.grpSoundControls1.SuspendLayout();
            this.grpSubRXMode.SuspendLayout();
            this.grpMainRXMode.SuspendLayout();
            this.grpG11.SuspendLayout();
            this.grpMoreBands.SuspendLayout();
            this.grpModeSpecificFM.SuspendLayout();
            this.grpFMVoiceMsg.SuspendLayout();
            this.grpG6.SuspendLayout();
            this.SuspendLayout();
            // 
            // mnuWave
            // 
            this.mnuWave.Index = -1;
            resources.ApplyResources(this.mnuWave, "mnuWave");
            this.mnuWave.Click += new System.EventHandler(this.menu_wave_Click);
            // 
            // mnuEQ
            // 
            this.mnuEQ.Index = -1;
            resources.ApplyResources(this.mnuEQ, "mnuEQ");
            this.mnuEQ.Click += new System.EventHandler(this.mnuEQ_Click);
            // 
            // mnuCWX
            // 
            this.mnuCWX.Index = -1;
            resources.ApplyResources(this.mnuCWX, "mnuCWX");
            this.mnuCWX.Click += new System.EventHandler(this.mnuCWX_Click);
            // 
            // mnuVoiceMessages
            // 
            this.mnuVoiceMessages.Index = -1;
            resources.ApplyResources(this.mnuVoiceMessages, "mnuVoiceMessages");
            this.mnuVoiceMessages.Click += new System.EventHandler(this.mnuVoiceMessages_Click);
            // 
            // mnuWizard
            // 
            this.mnuWizard.Index = -1;
            resources.ApplyResources(this.mnuWizard, "mnuWizard");
            this.mnuWizard.Click += new System.EventHandler(this.mnuWizard_Click);
            // 
            // mnuAbout
            // 
            this.mnuAbout.Index = -1;
            resources.ApplyResources(this.mnuAbout, "mnuAbout");
            this.mnuAbout.Click += new System.EventHandler(this.mnuAbout_Click);
            // 
            // contextMenuFilter
            // 
            this.contextMenuFilter.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.menuItemFilterConfigure,
            this.mnuFilterReset});
            // 
            // menuItemFilterConfigure
            // 
            this.menuItemFilterConfigure.Index = 0;
            resources.ApplyResources(this.menuItemFilterConfigure, "menuItemFilterConfigure");
            this.menuItemFilterConfigure.Click += new System.EventHandler(this.menuItemFilterConfigure_Click);
            // 
            // mnuFilterReset
            // 
            this.mnuFilterReset.Index = 1;
            resources.ApplyResources(this.mnuFilterReset, "mnuFilterReset");
            this.mnuFilterReset.Click += new System.EventHandler(this.mnuFilterReset_Click);
            // 
            // timer_cpu_meter
            // 
            this.timer_cpu_meter.Enabled = true;
            this.timer_cpu_meter.Interval = 1000;
            this.timer_cpu_meter.Tick += new System.EventHandler(this.timer_cpu_meter_Tick);
            // 
            // timer_peak_text
            // 
            this.timer_peak_text.Interval = 500;
            this.timer_peak_text.Tick += new System.EventHandler(this.timer_peak_text_Tick);
            // 
            // chkNoiseGate
            // 
            resources.ApplyResources(this.chkNoiseGate, "chkNoiseGate");
            this.chkNoiseGate.FlatAppearance.BorderSize = 0;
            this.chkNoiseGate.Image = null;
            this.chkNoiseGate.Name = "chkNoiseGate";
            this.toolTip1.SetToolTip(this.chkNoiseGate, resources.GetString("chkNoiseGate.ToolTip"));
            this.chkNoiseGate.CheckedChanged += new System.EventHandler(this.chkNoiseGate_CheckedChanged);
            // 
            // chkVOX
            // 
            resources.ApplyResources(this.chkVOX, "chkVOX");
            this.chkVOX.FlatAppearance.BorderSize = 0;
            this.chkVOX.Image = null;
            this.chkVOX.Name = "chkVOX";
            this.toolTip1.SetToolTip(this.chkVOX, resources.GetString("chkVOX.ToolTip"));
            this.chkVOX.CheckedChanged += new System.EventHandler(this.chkVOX_CheckedChanged);
            // 
            // chkDSPComp
            // 
            resources.ApplyResources(this.chkDSPComp, "chkDSPComp");
            this.chkDSPComp.FlatAppearance.BorderSize = 0;
            this.chkDSPComp.Image = null;
            this.chkDSPComp.Name = "chkDSPComp";
            this.toolTip1.SetToolTip(this.chkDSPComp, resources.GetString("chkDSPComp.ToolTip"));
            this.chkDSPComp.CheckedChanged += new System.EventHandler(this.chkDSPComp_CheckedChanged);
            // 
            // chkDSPCompander
            // 
            resources.ApplyResources(this.chkDSPCompander, "chkDSPCompander");
            this.chkDSPCompander.FlatAppearance.BorderSize = 0;
            this.chkDSPCompander.Image = null;
            this.chkDSPCompander.Name = "chkDSPCompander";
            this.toolTip1.SetToolTip(this.chkDSPCompander, resources.GetString("chkDSPCompander.ToolTip"));
            this.chkDSPCompander.CheckedChanged += new System.EventHandler(this.chkDSPCompander_CheckedChanged);
            // 
            // comboTXProfile
            // 
            this.comboTXProfile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboTXProfile.DropDownWidth = 96;
            resources.ApplyResources(this.comboTXProfile, "comboTXProfile");
            this.comboTXProfile.Name = "comboTXProfile";
            this.toolTip1.SetToolTip(this.comboTXProfile, resources.GetString("comboTXProfile.ToolTip"));
            this.comboTXProfile.SelectedIndexChanged += new System.EventHandler(this.comboTXProfile_SelectedIndexChanged);
            // 
            // chkShowTXFilter
            // 
            resources.ApplyResources(this.chkShowTXFilter, "chkShowTXFilter");
            this.chkShowTXFilter.Image = null;
            this.chkShowTXFilter.Name = "chkShowTXFilter";
            this.toolTip1.SetToolTip(this.chkShowTXFilter, resources.GetString("chkShowTXFilter.ToolTip"));
            this.chkShowTXFilter.CheckedChanged += new System.EventHandler(this.chkShowTXFilter_CheckedChanged);
            // 
            // ptbPWR
            // 
            resources.ApplyResources(this.ptbPWR, "ptbPWR");
            this.ptbPWR.HeadImage = null;
            this.ptbPWR.LargeChange = 5;
            this.ptbPWR.Maximum = 100;
            this.ptbPWR.Minimum = 0;
            this.ptbPWR.Name = "ptbPWR";
            this.ptbPWR.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbPWR.SmallChange = 1;
            this.ptbPWR.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbPWR, resources.GetString("ptbPWR.ToolTip"));
            this.ptbPWR.Value = 50;
            this.ptbPWR.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbPWR_Wheel);
            this.ptbPWR.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbPWR_Scroll);
            // 
            // ptbRF
            // 
            resources.ApplyResources(this.ptbRF, "ptbRF");
            this.ptbRF.HeadImage = null;
            this.ptbRF.LargeChange = 5;
            this.ptbRF.Maximum = 120;
            this.ptbRF.Minimum = -20;
            this.ptbRF.Name = "ptbRF";
            this.ptbRF.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbRF.SmallChange = 1;
            this.ptbRF.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbRF, resources.GetString("ptbRF.ToolTip"));
            this.ptbRF.Value = 90;
            this.ptbRF.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbRF_Wheel);
            this.ptbRF.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbRF_Scroll);
            // 
            // ptbAF
            // 
            resources.ApplyResources(this.ptbAF, "ptbAF");
            this.ptbAF.HeadImage = null;
            this.ptbAF.LargeChange = 5;
            this.ptbAF.Maximum = 100;
            this.ptbAF.Minimum = 0;
            this.ptbAF.Name = "ptbAF";
            this.ptbAF.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbAF.SmallChange = 1;
            this.ptbAF.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbAF, resources.GetString("ptbAF.ToolTip"));
            this.ptbAF.Value = 50;
            this.ptbAF.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbAF_Wheel);
            this.ptbAF.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbAF_Scroll);
            // 
            // btnNetwork
            // 
            this.btnNetwork.BackColor = System.Drawing.Color.Red;
            this.btnNetwork.Image = null;
            resources.ApplyResources(this.btnNetwork, "btnNetwork");
            this.btnNetwork.Name = "btnNetwork";
            this.toolTip1.SetToolTip(this.btnNetwork, resources.GetString("btnNetwork.ToolTip"));
            this.btnNetwork.Click += new System.EventHandler(this.btnNetwork_Click);
            // 
            // chkShowTXCWFreq
            // 
            resources.ApplyResources(this.chkShowTXCWFreq, "chkShowTXCWFreq");
            this.chkShowTXCWFreq.Image = null;
            this.chkShowTXCWFreq.Name = "chkShowTXCWFreq";
            this.toolTip1.SetToolTip(this.chkShowTXCWFreq, resources.GetString("chkShowTXCWFreq.ToolTip"));
            this.chkShowTXCWFreq.CheckedChanged += new System.EventHandler(this.chkShowTXCWFreq_CheckedChanged);
            // 
            // chkCWVAC
            // 
            resources.ApplyResources(this.chkCWVAC, "chkCWVAC");
            this.chkCWVAC.FlatAppearance.BorderSize = 0;
            this.chkCWVAC.Image = null;
            this.chkCWVAC.Name = "chkCWVAC";
            this.toolTip1.SetToolTip(this.chkCWVAC, resources.GetString("chkCWVAC.ToolTip"));
            this.chkCWVAC.CheckedChanged += new System.EventHandler(this.chkCWVAC_CheckedChanged);
            // 
            // udCWPitch
            // 
            this.udCWPitch.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
            resources.ApplyResources(this.udCWPitch, "udCWPitch");
            this.udCWPitch.Maximum = new decimal(new int[] {
            2250,
            0,
            0,
            0});
            this.udCWPitch.Minimum = new decimal(new int[] {
            200,
            0,
            0,
            0});
            this.udCWPitch.Name = "udCWPitch";
            this.toolTip1.SetToolTip(this.udCWPitch, resources.GetString("udCWPitch.ToolTip"));
            this.udCWPitch.Value = new decimal(new int[] {
            600,
            0,
            0,
            0});
            this.udCWPitch.ValueChanged += new System.EventHandler(this.udCWPitch_ValueChanged);
            // 
            // chkCWIambic
            // 
            resources.ApplyResources(this.chkCWIambic, "chkCWIambic");
            this.chkCWIambic.Checked = true;
            this.chkCWIambic.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkCWIambic.Image = null;
            this.chkCWIambic.Name = "chkCWIambic";
            this.toolTip1.SetToolTip(this.chkCWIambic, resources.GetString("chkCWIambic.ToolTip"));
            this.chkCWIambic.CheckedChanged += new System.EventHandler(this.chkCWIambic_CheckedChanged);
            // 
            // chkBreakIn
            // 
            resources.ApplyResources(this.chkBreakIn, "chkBreakIn");
            this.chkBreakIn.BackColor = System.Drawing.Color.Yellow;
            this.chkBreakIn.Checked = true;
            this.chkBreakIn.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkBreakIn.FlatAppearance.BorderSize = 0;
            this.chkBreakIn.Image = null;
            this.chkBreakIn.Name = "chkBreakIn";
            this.toolTip1.SetToolTip(this.chkBreakIn, resources.GetString("chkBreakIn.ToolTip"));
            this.chkBreakIn.UseVisualStyleBackColor = false;
            this.chkBreakIn.CheckedChanged += new System.EventHandler(this.chkBreakIn_CheckedChanged);
            // 
            // udCWSpeed
            // 
            this.udCWSpeed.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udCWSpeed, "udCWSpeed");
            this.udCWSpeed.Maximum = new decimal(new int[] {
            60,
            0,
            0,
            0});
            this.udCWSpeed.Minimum = new decimal(new int[] {
            7,
            0,
            0,
            0});
            this.udCWSpeed.Name = "udCWSpeed";
            this.toolTip1.SetToolTip(this.udCWSpeed, resources.GetString("udCWSpeed.ToolTip"));
            this.udCWSpeed.Value = new decimal(new int[] {
            25,
            0,
            0,
            0});
            this.udCWSpeed.ValueChanged += new System.EventHandler(this.udCWSpeed_ValueChanged);
            // 
            // btnG160_X2
            // 
            resources.ApplyResources(this.btnG160_X2, "btnG160_X2");
            this.btnG160_X2.FlatAppearance.BorderSize = 0;
            this.btnG160_X2.Image = null;
            this.btnG160_X2.Name = "btnG160_X2";
            this.toolTip1.SetToolTip(this.btnG160_X2, resources.GetString("btnG160_X2.ToolTip"));
            this.btnG160_X2.UseVisualStyleBackColor = true;
            this.btnG160_X2.Click += new System.EventHandler(this.btnG160_X2_Click);
            // 
            // btnG160_X1
            // 
            resources.ApplyResources(this.btnG160_X1, "btnG160_X1");
            this.btnG160_X1.FlatAppearance.BorderSize = 0;
            this.btnG160_X1.Image = null;
            this.btnG160_X1.Name = "btnG160_X1";
            this.toolTip1.SetToolTip(this.btnG160_X1, resources.GetString("btnG160_X1.ToolTip"));
            this.btnG160_X1.UseVisualStyleBackColor = true;
            this.btnG160_X1.Click += new System.EventHandler(this.btnG160_X1_Click);
            // 
            // btnATT
            // 
            resources.ApplyResources(this.btnATT, "btnATT");
            this.btnATT.FlatAppearance.BorderSize = 0;
            this.btnATT.Image = null;
            this.btnATT.Name = "btnATT";
            this.toolTip1.SetToolTip(this.btnATT, resources.GetString("btnATT.ToolTip"));
            this.btnATT.UseVisualStyleBackColor = true;
            this.btnATT.CheckedChanged += new System.EventHandler(this.btnATT_CheckedChanged);
            // 
            // btnHIGH_AF
            // 
            resources.ApplyResources(this.btnHIGH_AF, "btnHIGH_AF");
            this.btnHIGH_AF.FlatAppearance.BorderSize = 0;
            this.btnHIGH_AF.Image = null;
            this.btnHIGH_AF.Name = "btnHIGH_AF";
            this.toolTip1.SetToolTip(this.btnHIGH_AF, resources.GetString("btnHIGH_AF.ToolTip"));
            this.btnHIGH_AF.UseVisualStyleBackColor = true;
            this.btnHIGH_AF.CheckedChanged += new System.EventHandler(this.btnHIGH_AF_CheckedChanged);
            // 
            // btnHIGH_RF
            // 
            resources.ApplyResources(this.btnHIGH_RF, "btnHIGH_RF");
            this.btnHIGH_RF.FlatAppearance.BorderSize = 0;
            this.btnHIGH_RF.Image = null;
            this.btnHIGH_RF.Name = "btnHIGH_RF";
            this.toolTip1.SetToolTip(this.btnHIGH_RF, resources.GetString("btnHIGH_RF.ToolTip"));
            this.btnHIGH_RF.UseVisualStyleBackColor = true;
            this.btnHIGH_RF.CheckedChanged += new System.EventHandler(this.btnHIGH_RF_CheckedChanged);
            // 
            // btnUSB
            // 
            this.btnUSB.BackColor = System.Drawing.Color.Red;
            this.btnUSB.Image = null;
            resources.ApplyResources(this.btnUSB, "btnUSB");
            this.btnUSB.Name = "btnUSB";
            this.toolTip1.SetToolTip(this.btnUSB, resources.GetString("btnUSB.ToolTip"));
            this.btnUSB.Click += new System.EventHandler(this.btnUSB_Click);
            // 
            // ptbRX0Gain
            // 
            resources.ApplyResources(this.ptbRX0Gain, "ptbRX0Gain");
            this.ptbRX0Gain.HeadImage = null;
            this.ptbRX0Gain.LargeChange = 1;
            this.ptbRX0Gain.Maximum = 100;
            this.ptbRX0Gain.Minimum = 0;
            this.ptbRX0Gain.Name = "ptbRX0Gain";
            this.ptbRX0Gain.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.ptbRX0Gain.SmallChange = 1;
            this.ptbRX0Gain.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbRX0Gain, resources.GetString("ptbRX0Gain.ToolTip"));
            this.ptbRX0Gain.Value = 100;
            this.ptbRX0Gain.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbRX0Gain_OnWheel);
            this.ptbRX0Gain.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbRX0Gain_Scroll);
            // 
            // chkEnableSubRX
            // 
            resources.ApplyResources(this.chkEnableSubRX, "chkEnableSubRX");
            this.chkEnableSubRX.FlatAppearance.BorderSize = 0;
            this.chkEnableSubRX.Image = null;
            this.chkEnableSubRX.Name = "chkEnableSubRX";
            this.toolTip1.SetToolTip(this.chkEnableSubRX, resources.GetString("chkEnableSubRX.ToolTip"));
            this.chkEnableSubRX.CheckedChanged += new System.EventHandler(this.chkEnableSubRX_CheckedChanged);
            // 
            // ptbPanSubRX
            // 
            this.ptbPanSubRX.BackColor = System.Drawing.SystemColors.Control;
            resources.ApplyResources(this.ptbPanSubRX, "ptbPanSubRX");
            this.ptbPanSubRX.HeadImage = null;
            this.ptbPanSubRX.LargeChange = 1;
            this.ptbPanSubRX.Maximum = 100;
            this.ptbPanSubRX.Minimum = 0;
            this.ptbPanSubRX.Name = "ptbPanSubRX";
            this.ptbPanSubRX.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbPanSubRX.SmallChange = 1;
            this.ptbPanSubRX.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbPanSubRX, resources.GetString("ptbPanSubRX.ToolTip"));
            this.ptbPanSubRX.Value = 100;
            this.ptbPanSubRX.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbPanSubRX_OnWheel);
            this.ptbPanSubRX.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbPanSubRX_Scroll);
            // 
            // ptbPanMainRX
            // 
            resources.ApplyResources(this.ptbPanMainRX, "ptbPanMainRX");
            this.ptbPanMainRX.HeadImage = null;
            this.ptbPanMainRX.LargeChange = 1;
            this.ptbPanMainRX.Maximum = 100;
            this.ptbPanMainRX.Minimum = 0;
            this.ptbPanMainRX.Name = "ptbPanMainRX";
            this.ptbPanMainRX.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbPanMainRX.SmallChange = 1;
            this.ptbPanMainRX.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbPanMainRX, resources.GetString("ptbPanMainRX.ToolTip"));
            this.ptbPanMainRX.Value = 0;
            this.ptbPanMainRX.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbPanMainRX_OnWheel);
            this.ptbPanMainRX.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbPanMainRX_Scroll);
            // 
            // ptbRX1Gain
            // 
            resources.ApplyResources(this.ptbRX1Gain, "ptbRX1Gain");
            this.ptbRX1Gain.HeadImage = null;
            this.ptbRX1Gain.LargeChange = 1;
            this.ptbRX1Gain.Maximum = 100;
            this.ptbRX1Gain.Minimum = 0;
            this.ptbRX1Gain.Name = "ptbRX1Gain";
            this.ptbRX1Gain.Orientation = System.Windows.Forms.Orientation.Vertical;
            this.ptbRX1Gain.SmallChange = 1;
            this.ptbRX1Gain.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbRX1Gain, resources.GetString("ptbRX1Gain.ToolTip"));
            this.ptbRX1Gain.Value = 100;
            this.ptbRX1Gain.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbRX1Gain_OnWheel);
            this.ptbRX1Gain.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbRX1Gain_Scroll);
            // 
            // radBandGEN
            // 
            resources.ApplyResources(this.radBandGEN, "radBandGEN");
            this.radBandGEN.FlatAppearance.BorderSize = 0;
            this.radBandGEN.Image = null;
            this.radBandGEN.Name = "radBandGEN";
            this.toolTip1.SetToolTip(this.radBandGEN, resources.GetString("radBandGEN.ToolTip"));
            this.radBandGEN.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBandGEN.Click += new System.EventHandler(this.btnBandGEN_Click);
            this.radBandGEN.CheckedChanged += new System.EventHandler(this.btnBandGEN_CheckedChanged);
            this.radBandGEN.MouseHover += new System.EventHandler(this.radBandGEN_MouseHover);
            // 
            // radBandWWV
            // 
            resources.ApplyResources(this.radBandWWV, "radBandWWV");
            this.radBandWWV.FlatAppearance.BorderSize = 0;
            this.radBandWWV.Image = null;
            this.radBandWWV.Name = "radBandWWV";
            this.toolTip1.SetToolTip(this.radBandWWV, resources.GetString("radBandWWV.ToolTip"));
            this.radBandWWV.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBandWWV.Click += new System.EventHandler(this.btnBandWWV_Click);
            this.radBandWWV.CheckedChanged += new System.EventHandler(this.btnBandWWV_CheckedChanged);
            this.radBandWWV.MouseHover += new System.EventHandler(this.radBandWWV_MouseHover);
            // 
            // radMoreBands
            // 
            resources.ApplyResources(this.radMoreBands, "radMoreBands");
            this.radMoreBands.FlatAppearance.BorderSize = 0;
            this.radMoreBands.Image = null;
            this.radMoreBands.Name = "radMoreBands";
            this.toolTip1.SetToolTip(this.radMoreBands, resources.GetString("radMoreBands.ToolTip"));
            this.radMoreBands.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radMoreBands.Click += new System.EventHandler(this.radMoreBands_Click);
            this.radMoreBands.MouseHover += new System.EventHandler(this.radBandVHF_MouseHover);
            // 
            // radBand2
            // 
            resources.ApplyResources(this.radBand2, "radBand2");
            this.radBand2.FlatAppearance.BorderSize = 0;
            this.radBand2.Image = null;
            this.radBand2.Name = "radBand2";
            this.toolTip1.SetToolTip(this.radBand2, resources.GetString("radBand2.ToolTip"));
            this.radBand2.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand2.Click += new System.EventHandler(this.btnBand2_Click);
            this.radBand2.CheckedChanged += new System.EventHandler(this.btnBand2_CheckedChanged);
            this.radBand2.MouseHover += new System.EventHandler(this.radBand2_MouseHover);
            // 
            // radBand6
            // 
            resources.ApplyResources(this.radBand6, "radBand6");
            this.radBand6.FlatAppearance.BorderSize = 0;
            this.radBand6.Image = null;
            this.radBand6.Name = "radBand6";
            this.toolTip1.SetToolTip(this.radBand6, resources.GetString("radBand6.ToolTip"));
            this.radBand6.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand6.Click += new System.EventHandler(this.btnBand6_Click);
            this.radBand6.CheckedChanged += new System.EventHandler(this.btnBand6_CheckedChanged);
            this.radBand6.MouseHover += new System.EventHandler(this.radBand6_MouseHover);
            // 
            // radBand10
            // 
            resources.ApplyResources(this.radBand10, "radBand10");
            this.radBand10.FlatAppearance.BorderSize = 0;
            this.radBand10.Image = null;
            this.radBand10.Name = "radBand10";
            this.toolTip1.SetToolTip(this.radBand10, resources.GetString("radBand10.ToolTip"));
            this.radBand10.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand10.Click += new System.EventHandler(this.btnBand10_Click);
            this.radBand10.CheckedChanged += new System.EventHandler(this.btnBand10_CheckedChanged);
            this.radBand10.MouseHover += new System.EventHandler(this.radBand10_MouseHover);
            // 
            // radBand12
            // 
            resources.ApplyResources(this.radBand12, "radBand12");
            this.radBand12.FlatAppearance.BorderSize = 0;
            this.radBand12.Image = null;
            this.radBand12.Name = "radBand12";
            this.toolTip1.SetToolTip(this.radBand12, resources.GetString("radBand12.ToolTip"));
            this.radBand12.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand12.Click += new System.EventHandler(this.btnBand12_Click);
            this.radBand12.CheckedChanged += new System.EventHandler(this.btnBand12_CheckedChanged);
            this.radBand12.MouseHover += new System.EventHandler(this.radBand12_MouseHover);
            // 
            // radBand15
            // 
            resources.ApplyResources(this.radBand15, "radBand15");
            this.radBand15.FlatAppearance.BorderSize = 0;
            this.radBand15.Image = null;
            this.radBand15.Name = "radBand15";
            this.toolTip1.SetToolTip(this.radBand15, resources.GetString("radBand15.ToolTip"));
            this.radBand15.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand15.Click += new System.EventHandler(this.btnBand15_Click);
            this.radBand15.CheckedChanged += new System.EventHandler(this.btnBand15_CheckedChanged);
            this.radBand15.MouseHover += new System.EventHandler(this.radBand15_MouseHover);
            // 
            // radBand17
            // 
            resources.ApplyResources(this.radBand17, "radBand17");
            this.radBand17.FlatAppearance.BorderSize = 0;
            this.radBand17.Image = null;
            this.radBand17.Name = "radBand17";
            this.toolTip1.SetToolTip(this.radBand17, resources.GetString("radBand17.ToolTip"));
            this.radBand17.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand17.Click += new System.EventHandler(this.btnBand17_Click);
            this.radBand17.CheckedChanged += new System.EventHandler(this.btnBand17_CheckedChanged);
            this.radBand17.MouseHover += new System.EventHandler(this.radBand17_MouseHover);
            // 
            // radBand20
            // 
            resources.ApplyResources(this.radBand20, "radBand20");
            this.radBand20.FlatAppearance.BorderSize = 0;
            this.radBand20.Image = null;
            this.radBand20.Name = "radBand20";
            this.toolTip1.SetToolTip(this.radBand20, resources.GetString("radBand20.ToolTip"));
            this.radBand20.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand20.Click += new System.EventHandler(this.btnBand20_Click);
            this.radBand20.CheckedChanged += new System.EventHandler(this.btnBand20_CheckedChanged);
            this.radBand20.MouseHover += new System.EventHandler(this.radBand20_MouseHover);
            // 
            // radBand30
            // 
            resources.ApplyResources(this.radBand30, "radBand30");
            this.radBand30.FlatAppearance.BorderSize = 0;
            this.radBand30.Image = null;
            this.radBand30.Name = "radBand30";
            this.toolTip1.SetToolTip(this.radBand30, resources.GetString("radBand30.ToolTip"));
            this.radBand30.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand30.Click += new System.EventHandler(this.btnBand30_Click);
            this.radBand30.CheckedChanged += new System.EventHandler(this.btnBand30_CheckedChanged);
            this.radBand30.MouseHover += new System.EventHandler(this.radBand30_MouseHover);
            // 
            // radBand40
            // 
            resources.ApplyResources(this.radBand40, "radBand40");
            this.radBand40.FlatAppearance.BorderSize = 0;
            this.radBand40.Image = null;
            this.radBand40.Name = "radBand40";
            this.toolTip1.SetToolTip(this.radBand40, resources.GetString("radBand40.ToolTip"));
            this.radBand40.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand40.Click += new System.EventHandler(this.btnBand40_Click);
            this.radBand40.CheckedChanged += new System.EventHandler(this.btnBand40_CheckedChanged);
            this.radBand40.MouseHover += new System.EventHandler(this.radBand40_MouseHover);
            // 
            // radBand60
            // 
            resources.ApplyResources(this.radBand60, "radBand60");
            this.radBand60.FlatAppearance.BorderSize = 0;
            this.radBand60.Image = null;
            this.radBand60.Name = "radBand60";
            this.toolTip1.SetToolTip(this.radBand60, resources.GetString("radBand60.ToolTip"));
            this.radBand60.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand60.Click += new System.EventHandler(this.btnBand60_Click);
            this.radBand60.CheckedChanged += new System.EventHandler(this.btnBand60_CheckedChanged);
            this.radBand60.MouseHover += new System.EventHandler(this.radBand60_MouseHover);
            // 
            // radBand80
            // 
            resources.ApplyResources(this.radBand80, "radBand80");
            this.radBand80.FlatAppearance.BorderSize = 0;
            this.radBand80.Image = null;
            this.radBand80.Name = "radBand80";
            this.toolTip1.SetToolTip(this.radBand80, resources.GetString("radBand80.ToolTip"));
            this.radBand80.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand80.Click += new System.EventHandler(this.btnBand80_Click);
            this.radBand80.CheckedChanged += new System.EventHandler(this.btnBand80_CheckedChanged);
            this.radBand80.MouseHover += new System.EventHandler(this.radBand80_MouseHover);
            // 
            // radBand160
            // 
            resources.ApplyResources(this.radBand160, "radBand160");
            this.radBand160.FlatAppearance.BorderSize = 0;
            this.radBand160.Image = null;
            this.radBand160.Name = "radBand160";
            this.toolTip1.SetToolTip(this.radBand160, resources.GetString("radBand160.ToolTip"));
            this.radBand160.MouseLeave += new System.EventHandler(this.MouseLeaveBandButton);
            this.radBand160.Click += new System.EventHandler(this.btnBand160_Click);
            this.radBand160.CheckedChanged += new System.EventHandler(this.btnBand160_CheckedChanged);
            this.radBand160.MouseHover += new System.EventHandler(this.radBand160_MouseHover);
            // 
            // btnZAP
            // 
            resources.ApplyResources(this.btnZAP, "btnZAP");
            this.btnZAP.FlatAppearance.BorderSize = 0;
            this.btnZAP.Image = null;
            this.btnZAP.Name = "btnZAP";
            this.toolTip1.SetToolTip(this.btnZAP, resources.GetString("btnZAP.ToolTip"));
            this.btnZAP.CheckStateChanged += new System.EventHandler(this.btnZAP_CheckStateChanged);
            // 
            // btnVFOA
            // 
            resources.ApplyResources(this.btnVFOA, "btnVFOA");
            this.btnVFOA.FlatAppearance.BorderSize = 0;
            this.btnVFOA.Image = null;
            this.btnVFOA.Name = "btnVFOA";
            this.toolTip1.SetToolTip(this.btnVFOA, resources.GetString("btnVFOA.ToolTip"));
            this.btnVFOA.Click += new System.EventHandler(this.btnVFOA_Click);
            // 
            // chkVFOsinc
            // 
            resources.ApplyResources(this.chkVFOsinc, "chkVFOsinc");
            this.chkVFOsinc.FlatAppearance.BorderSize = 0;
            this.chkVFOsinc.Image = null;
            this.chkVFOsinc.Name = "chkVFOsinc";
            this.toolTip1.SetToolTip(this.chkVFOsinc, resources.GetString("chkVFOsinc.ToolTip"));
            this.chkVFOsinc.Click += new System.EventHandler(this.chkVFOsinc_Click);
            // 
            // btnEraseMemory
            // 
            this.btnEraseMemory.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnEraseMemory, "btnEraseMemory");
            this.btnEraseMemory.Image = null;
            this.btnEraseMemory.Name = "btnEraseMemory";
            this.toolTip1.SetToolTip(this.btnEraseMemory, resources.GetString("btnEraseMemory.ToolTip"));
            this.btnEraseMemory.Click += new System.EventHandler(this.btnEraseMemory_Click);
            // 
            // chkVFOLock
            // 
            resources.ApplyResources(this.chkVFOLock, "chkVFOLock");
            this.chkVFOLock.FlatAppearance.BorderSize = 0;
            this.chkVFOLock.Image = null;
            this.chkVFOLock.Name = "chkVFOLock";
            this.toolTip1.SetToolTip(this.chkVFOLock, resources.GetString("chkVFOLock.ToolTip"));
            this.chkVFOLock.CheckedChanged += new System.EventHandler(this.chkVFOLock_CheckedChanged);
            // 
            // btnMemoryQuickRecall
            // 
            this.btnMemoryQuickRecall.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnMemoryQuickRecall, "btnMemoryQuickRecall");
            this.btnMemoryQuickRecall.Image = null;
            this.btnMemoryQuickRecall.Name = "btnMemoryQuickRecall";
            this.toolTip1.SetToolTip(this.btnMemoryQuickRecall, resources.GetString("btnMemoryQuickRecall.ToolTip"));
            this.btnMemoryQuickRecall.Click += new System.EventHandler(this.btnMemoryQuickRestore_Click);
            // 
            // btnMemoryQuickSave
            // 
            this.btnMemoryQuickSave.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnMemoryQuickSave, "btnMemoryQuickSave");
            this.btnMemoryQuickSave.Image = null;
            this.btnMemoryQuickSave.Name = "btnMemoryQuickSave";
            this.toolTip1.SetToolTip(this.btnMemoryQuickSave, resources.GetString("btnMemoryQuickSave.ToolTip"));
            this.btnMemoryQuickSave.Click += new System.EventHandler(this.btnMemoryQuickSave_Click);
            // 
            // chkDisplayPeak
            // 
            resources.ApplyResources(this.chkDisplayPeak, "chkDisplayPeak");
            this.chkDisplayPeak.FlatAppearance.BorderSize = 0;
            this.chkDisplayPeak.Image = null;
            this.chkDisplayPeak.Name = "chkDisplayPeak";
            this.toolTip1.SetToolTip(this.chkDisplayPeak, resources.GetString("chkDisplayPeak.ToolTip"));
            this.chkDisplayPeak.CheckedChanged += new System.EventHandler(this.chkDisplayPeak_CheckedChanged);
            // 
            // comboDisplayMode
            // 
            this.comboDisplayMode.BackColor = System.Drawing.SystemColors.Window;
            this.comboDisplayMode.DisplayMember = "3";
            this.comboDisplayMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboDisplayMode.DropDownWidth = 88;
            resources.ApplyResources(this.comboDisplayMode, "comboDisplayMode");
            this.comboDisplayMode.ForeColor = System.Drawing.SystemColors.WindowText;
            this.comboDisplayMode.Name = "comboDisplayMode";
            this.toolTip1.SetToolTip(this.comboDisplayMode, resources.GetString("comboDisplayMode.ToolTip"));
            this.comboDisplayMode.SelectedIndexChanged += new System.EventHandler(this.comboDisplayMode_SelectedIndexChanged);
            // 
            // chkDisplayAVG
            // 
            resources.ApplyResources(this.chkDisplayAVG, "chkDisplayAVG");
            this.chkDisplayAVG.FlatAppearance.BorderSize = 0;
            this.chkDisplayAVG.Image = null;
            this.chkDisplayAVG.Name = "chkDisplayAVG";
            this.toolTip1.SetToolTip(this.chkDisplayAVG, resources.GetString("chkDisplayAVG.ToolTip"));
            this.chkDisplayAVG.CheckedChanged += new System.EventHandler(this.chkDisplayAVG_CheckedChanged);
            // 
            // chkRecordWav
            // 
            resources.ApplyResources(this.chkRecordWav, "chkRecordWav");
            this.chkRecordWav.FlatAppearance.BorderSize = 0;
            this.chkRecordWav.Image = null;
            this.chkRecordWav.Name = "chkRecordWav";
            this.toolTip1.SetToolTip(this.chkRecordWav, resources.GetString("chkRecordWav.ToolTip"));
            this.chkRecordWav.CheckedChanged += new System.EventHandler(this.chkRecordWav_CheckedChanged);
            // 
            // chkMUT
            // 
            resources.ApplyResources(this.chkMUT, "chkMUT");
            this.chkMUT.ContextMenuStrip = this.contextMenuMUTE;
            this.chkMUT.FlatAppearance.BorderSize = 0;
            this.chkMUT.Image = null;
            this.chkMUT.Name = "chkMUT";
            this.toolTip1.SetToolTip(this.chkMUT, resources.GetString("chkMUT.ToolTip"));
            this.chkMUT.CheckedChanged += new System.EventHandler(this.chkMUT_CheckedChanged);
            // 
            // contextMenuMUTE
            // 
            this.contextMenuMUTE.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.leftToolStripMenuItem,
            this.rightToolStripMenuItem,
            this.bothToolStripMenuItem,
            this.noneToolStripMenuItem});
            this.contextMenuMUTE.Name = "contextMenuMUTE";
            resources.ApplyResources(this.contextMenuMUTE, "contextMenuMUTE");
            // 
            // leftToolStripMenuItem
            // 
            this.leftToolStripMenuItem.Name = "leftToolStripMenuItem";
            resources.ApplyResources(this.leftToolStripMenuItem, "leftToolStripMenuItem");
            this.leftToolStripMenuItem.Click += new System.EventHandler(this.leftToolStripMenuItem_Click);
            // 
            // rightToolStripMenuItem
            // 
            this.rightToolStripMenuItem.Name = "rightToolStripMenuItem";
            resources.ApplyResources(this.rightToolStripMenuItem, "rightToolStripMenuItem");
            this.rightToolStripMenuItem.Click += new System.EventHandler(this.rightToolStripMenuItem_Click);
            // 
            // bothToolStripMenuItem
            // 
            this.bothToolStripMenuItem.Name = "bothToolStripMenuItem";
            resources.ApplyResources(this.bothToolStripMenuItem, "bothToolStripMenuItem");
            this.bothToolStripMenuItem.Click += new System.EventHandler(this.bothToolStripMenuItem_Click);
            // 
            // noneToolStripMenuItem
            // 
            this.noneToolStripMenuItem.Name = "noneToolStripMenuItem";
            resources.ApplyResources(this.noneToolStripMenuItem, "noneToolStripMenuItem");
            this.noneToolStripMenuItem.Click += new System.EventHandler(this.noneToolStripMenuItem_Click);
            // 
            // chkMON
            // 
            resources.ApplyResources(this.chkMON, "chkMON");
            this.chkMON.FlatAppearance.BorderSize = 0;
            this.chkMON.Image = null;
            this.chkMON.Name = "chkMON";
            this.toolTip1.SetToolTip(this.chkMON, resources.GetString("chkMON.ToolTip"));
            this.chkMON.CheckedChanged += new System.EventHandler(this.chkMON_CheckedChanged);
            // 
            // chkTUN
            // 
            resources.ApplyResources(this.chkTUN, "chkTUN");
            this.chkTUN.FlatAppearance.BorderSize = 0;
            this.chkTUN.Image = null;
            this.chkTUN.Name = "chkTUN";
            this.toolTip1.SetToolTip(this.chkTUN, resources.GetString("chkTUN.ToolTip"));
            this.chkTUN.CheckedChanged += new System.EventHandler(this.chkTUN_CheckedChanged);
            // 
            // chkMOX
            // 
            resources.ApplyResources(this.chkMOX, "chkMOX");
            this.chkMOX.FlatAppearance.BorderSize = 0;
            this.chkMOX.Image = null;
            this.chkMOX.Name = "chkMOX";
            this.toolTip1.SetToolTip(this.chkMOX, resources.GetString("chkMOX.ToolTip"));
            this.chkMOX.Click += new System.EventHandler(this.chkMOX_Click);
            this.chkMOX.CheckedChanged += new System.EventHandler(this.chkMOX_CheckedChanged);
            // 
            // chkPlayWav
            // 
            resources.ApplyResources(this.chkPlayWav, "chkPlayWav");
            this.chkPlayWav.FlatAppearance.BorderSize = 0;
            this.chkPlayWav.Image = null;
            this.chkPlayWav.Name = "chkPlayWav";
            this.toolTip1.SetToolTip(this.chkPlayWav, resources.GetString("chkPlayWav.ToolTip"));
            this.chkPlayWav.CheckedChanged += new System.EventHandler(this.chkPlayWav_CheckedChanged);
            // 
            // comboVACSampleRate
            // 
            this.comboVACSampleRate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboVACSampleRate.DropDownWidth = 64;
            resources.ApplyResources(this.comboVACSampleRate, "comboVACSampleRate");
            this.comboVACSampleRate.Items.AddRange(new object[] {
            resources.GetString("comboVACSampleRate.Items"),
            resources.GetString("comboVACSampleRate.Items1"),
            resources.GetString("comboVACSampleRate.Items2"),
            resources.GetString("comboVACSampleRate.Items3"),
            resources.GetString("comboVACSampleRate.Items4"),
            resources.GetString("comboVACSampleRate.Items5"),
            resources.GetString("comboVACSampleRate.Items6"),
            resources.GetString("comboVACSampleRate.Items7"),
            resources.GetString("comboVACSampleRate.Items8"),
            resources.GetString("comboVACSampleRate.Items9")});
            this.comboVACSampleRate.Name = "comboVACSampleRate";
            this.toolTip1.SetToolTip(this.comboVACSampleRate, resources.GetString("comboVACSampleRate.ToolTip"));
            this.comboVACSampleRate.SelectedIndexChanged += new System.EventHandler(this.comboVACSampleRate_SelectedIndexChanged);
            // 
            // txtWheelTune
            // 
            this.txtWheelTune.BackColor = System.Drawing.SystemColors.Window;
            this.txtWheelTune.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtWheelTune, "txtWheelTune");
            this.txtWheelTune.ForeColor = System.Drawing.SystemColors.ControlText;
            this.txtWheelTune.Name = "txtWheelTune";
            this.txtWheelTune.ReadOnly = true;
            this.toolTip1.SetToolTip(this.txtWheelTune, resources.GetString("txtWheelTune.ToolTip"));
            this.txtWheelTune.GotFocus += new System.EventHandler(this.HideFocus);
            this.txtWheelTune.MouseDown += new System.Windows.Forms.MouseEventHandler(this.WheelTune_MouseDown);
            // 
            // udFilterHigh
            // 
            this.udFilterHigh.BackColor = System.Drawing.SystemColors.Window;
            resources.ApplyResources(this.udFilterHigh, "udFilterHigh");
            this.udFilterHigh.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udFilterHigh.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.udFilterHigh.Maximum = new decimal(new int[] {
            125000,
            0,
            0,
            0});
            this.udFilterHigh.Minimum = new decimal(new int[] {
            125000,
            0,
            0,
            -2147483648});
            this.udFilterHigh.Name = "udFilterHigh";
            this.toolTip1.SetToolTip(this.udFilterHigh, resources.GetString("udFilterHigh.ToolTip"));
            this.udFilterHigh.Value = new decimal(new int[] {
            6000,
            0,
            0,
            0});
            this.udFilterHigh.ValueChanged += new System.EventHandler(this.udFilterHigh_ValueChanged);
            this.udFilterHigh.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udFilterHigh.LostFocus += new System.EventHandler(this.udFilterHigh_LostFocus);
            // 
            // udFilterLow
            // 
            this.udFilterLow.BackColor = System.Drawing.SystemColors.Window;
            resources.ApplyResources(this.udFilterLow, "udFilterLow");
            this.udFilterLow.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udFilterLow.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.udFilterLow.Maximum = new decimal(new int[] {
            125000,
            0,
            0,
            0});
            this.udFilterLow.Minimum = new decimal(new int[] {
            125000,
            0,
            0,
            -2147483648});
            this.udFilterLow.Name = "udFilterLow";
            this.toolTip1.SetToolTip(this.udFilterLow, resources.GetString("udFilterLow.ToolTip"));
            this.udFilterLow.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udFilterLow.ValueChanged += new System.EventHandler(this.udFilterLow_ValueChanged);
            this.udFilterLow.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udFilterLow.LostFocus += new System.EventHandler(this.udFilterLow_LostFocus);
            // 
            // ptbFilterWidth
            // 
            resources.ApplyResources(this.ptbFilterWidth, "ptbFilterWidth");
            this.ptbFilterWidth.HeadImage = null;
            this.ptbFilterWidth.LargeChange = 5;
            this.ptbFilterWidth.Maximum = 20000;
            this.ptbFilterWidth.Minimum = 1;
            this.ptbFilterWidth.Name = "ptbFilterWidth";
            this.ptbFilterWidth.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbFilterWidth.SmallChange = 1;
            this.ptbFilterWidth.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbFilterWidth, resources.GetString("ptbFilterWidth.ToolTip"));
            this.ptbFilterWidth.Value = 1;
            this.ptbFilterWidth.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbFilterWidth_Wheel);
            this.ptbFilterWidth.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbFilterWidth_Scroll);
            // 
            // btnFilterShiftReset
            // 
            this.btnFilterShiftReset.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnFilterShiftReset, "btnFilterShiftReset");
            this.btnFilterShiftReset.Image = null;
            this.btnFilterShiftReset.Name = "btnFilterShiftReset";
            this.btnFilterShiftReset.Tag = "Reset Filter Shift";
            this.toolTip1.SetToolTip(this.btnFilterShiftReset, resources.GetString("btnFilterShiftReset.ToolTip"));
            this.btnFilterShiftReset.Click += new System.EventHandler(this.btnFilterShiftReset_Click);
            // 
            // ptbFilterShift
            // 
            resources.ApplyResources(this.ptbFilterShift, "ptbFilterShift");
            this.ptbFilterShift.HeadImage = null;
            this.ptbFilterShift.LargeChange = 5;
            this.ptbFilterShift.Maximum = 1000;
            this.ptbFilterShift.Minimum = -1000;
            this.ptbFilterShift.Name = "ptbFilterShift";
            this.ptbFilterShift.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbFilterShift.SmallChange = 1;
            this.ptbFilterShift.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbFilterShift, resources.GetString("ptbFilterShift.ToolTip"));
            this.ptbFilterShift.Value = 0;
            this.ptbFilterShift.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbFilterShift_Wheel);
            this.ptbFilterShift.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbFilterShift_Scroll);
            // 
            // chkPower
            // 
            resources.ApplyResources(this.chkPower, "chkPower");
            this.chkPower.BackColor = System.Drawing.SystemColors.Control;
            this.chkPower.FlatAppearance.BorderSize = 0;
            this.chkPower.Image = null;
            this.chkPower.Name = "chkPower";
            this.toolTip1.SetToolTip(this.chkPower, resources.GetString("chkPower.ToolTip"));
            this.chkPower.UseVisualStyleBackColor = false;
            this.chkPower.CheckedChanged += new System.EventHandler(this.chkPower_CheckedChanged);
            // 
            // chkDSPNB2
            // 
            resources.ApplyResources(this.chkDSPNB2, "chkDSPNB2");
            this.chkDSPNB2.FlatAppearance.BorderSize = 0;
            this.chkDSPNB2.Image = null;
            this.chkDSPNB2.Name = "chkDSPNB2";
            this.toolTip1.SetToolTip(this.chkDSPNB2, resources.GetString("chkDSPNB2.ToolTip"));
            this.chkDSPNB2.CheckedChanged += new System.EventHandler(this.chkDSPNB2_CheckedChanged);
            // 
            // chkNB
            // 
            resources.ApplyResources(this.chkNB, "chkNB");
            this.chkNB.FlatAppearance.BorderSize = 0;
            this.chkNB.Image = null;
            this.chkNB.Name = "chkNB";
            this.toolTip1.SetToolTip(this.chkNB, resources.GetString("chkNB.ToolTip"));
            this.chkNB.CheckedChanged += new System.EventHandler(this.chkNB_CheckedChanged);
            // 
            // chkANF
            // 
            resources.ApplyResources(this.chkANF, "chkANF");
            this.chkANF.FlatAppearance.BorderSize = 0;
            this.chkANF.Image = null;
            this.chkANF.Name = "chkANF";
            this.toolTip1.SetToolTip(this.chkANF, resources.GetString("chkANF.ToolTip"));
            this.chkANF.CheckedChanged += new System.EventHandler(this.chkANF_CheckedChanged);
            // 
            // chkNR
            // 
            resources.ApplyResources(this.chkNR, "chkNR");
            this.chkNR.FlatAppearance.BorderSize = 0;
            this.chkNR.Image = null;
            this.chkNR.Name = "chkNR";
            this.toolTip1.SetToolTip(this.chkNR, resources.GetString("chkNR.ToolTip"));
            this.chkNR.CheckedChanged += new System.EventHandler(this.chkNR_CheckedChanged);
            // 
            // chkBIN
            // 
            resources.ApplyResources(this.chkBIN, "chkBIN");
            this.chkBIN.FlatAppearance.BorderSize = 0;
            this.chkBIN.Image = null;
            this.chkBIN.Name = "chkBIN";
            this.toolTip1.SetToolTip(this.chkBIN, resources.GetString("chkBIN.ToolTip"));
            this.chkBIN.CheckedChanged += new System.EventHandler(this.chkBIN_CheckedChanged);
            // 
            // udXIT
            // 
            this.udXIT.BackColor = System.Drawing.SystemColors.Window;
            this.udXIT.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udXIT.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udXIT, "udXIT");
            this.udXIT.Maximum = new decimal(new int[] {
            99999,
            0,
            0,
            0});
            this.udXIT.Minimum = new decimal(new int[] {
            99999,
            0,
            0,
            -2147483648});
            this.udXIT.Name = "udXIT";
            this.toolTip1.SetToolTip(this.udXIT, resources.GetString("udXIT.ToolTip"));
            this.udXIT.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udXIT.ValueChanged += new System.EventHandler(this.udXIT_ValueChanged);
            this.udXIT.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udXIT.LostFocus += new System.EventHandler(this.udXIT_LostFocus);
            // 
            // udRIT
            // 
            this.udRIT.BackColor = System.Drawing.SystemColors.Window;
            this.udRIT.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udRIT.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udRIT, "udRIT");
            this.udRIT.Maximum = new decimal(new int[] {
            99999,
            0,
            0,
            0});
            this.udRIT.Minimum = new decimal(new int[] {
            99999,
            0,
            0,
            -2147483648});
            this.udRIT.Name = "udRIT";
            this.toolTip1.SetToolTip(this.udRIT, resources.GetString("udRIT.ToolTip"));
            this.udRIT.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udRIT.ValueChanged += new System.EventHandler(this.udRIT_ValueChanged);
            this.udRIT.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udRIT.LostFocus += new System.EventHandler(this.udRIT_LostFocus);
            // 
            // chkXIT
            // 
            resources.ApplyResources(this.chkXIT, "chkXIT");
            this.chkXIT.FlatAppearance.BorderSize = 0;
            this.chkXIT.Image = null;
            this.chkXIT.Name = "chkXIT";
            this.toolTip1.SetToolTip(this.chkXIT, resources.GetString("chkXIT.ToolTip"));
            this.chkXIT.CheckedChanged += new System.EventHandler(this.chkXIT_CheckedChanged);
            // 
            // chkRIT
            // 
            resources.ApplyResources(this.chkRIT, "chkRIT");
            this.chkRIT.FlatAppearance.BorderSize = 0;
            this.chkRIT.Image = null;
            this.chkRIT.Name = "chkRIT";
            this.toolTip1.SetToolTip(this.chkRIT, resources.GetString("chkRIT.ToolTip"));
            this.chkRIT.CheckedChanged += new System.EventHandler(this.chkRIT_CheckedChanged);
            // 
            // comboMeterTXMode
            // 
            this.comboMeterTXMode.BackColor = System.Drawing.SystemColors.Window;
            this.comboMeterTXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboMeterTXMode.DropDownWidth = 72;
            this.comboMeterTXMode.ForeColor = System.Drawing.SystemColors.WindowText;
            resources.ApplyResources(this.comboMeterTXMode, "comboMeterTXMode");
            this.comboMeterTXMode.Name = "comboMeterTXMode";
            this.toolTip1.SetToolTip(this.comboMeterTXMode, resources.GetString("comboMeterTXMode.ToolTip"));
            this.comboMeterTXMode.SelectedIndexChanged += new System.EventHandler(this.comboMeterTXMode_SelectedIndexChanged);
            // 
            // comboMeterRXMode
            // 
            this.comboMeterRXMode.BackColor = System.Drawing.SystemColors.Window;
            this.comboMeterRXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboMeterRXMode.DropDownWidth = 72;
            this.comboMeterRXMode.ForeColor = System.Drawing.SystemColors.WindowText;
            resources.ApplyResources(this.comboMeterRXMode, "comboMeterRXMode");
            this.comboMeterRXMode.Name = "comboMeterRXMode";
            this.toolTip1.SetToolTip(this.comboMeterRXMode, resources.GetString("comboMeterRXMode.ToolTip"));
            this.comboMeterRXMode.SelectedIndexChanged += new System.EventHandler(this.comboMeterRXMode_SelectedIndexChanged);
            // 
            // btnRITReset
            // 
            this.btnRITReset.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnRITReset, "btnRITReset");
            this.btnRITReset.Image = null;
            this.btnRITReset.Name = "btnRITReset";
            this.toolTip1.SetToolTip(this.btnRITReset, resources.GetString("btnRITReset.ToolTip"));
            this.btnRITReset.Click += new System.EventHandler(this.btnRITReset_Click);
            // 
            // btnXITReset
            // 
            this.btnXITReset.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnXITReset, "btnXITReset");
            this.btnXITReset.Image = null;
            this.btnXITReset.Name = "btnXITReset";
            this.toolTip1.SetToolTip(this.btnXITReset, resources.GetString("btnXITReset.ToolTip"));
            this.btnXITReset.Click += new System.EventHandler(this.btnXITReset_Click);
            // 
            // btnVFOSwap
            // 
            resources.ApplyResources(this.btnVFOSwap, "btnVFOSwap");
            this.btnVFOSwap.FlatAppearance.BorderSize = 0;
            this.btnVFOSwap.Image = null;
            this.btnVFOSwap.Name = "btnVFOSwap";
            this.toolTip1.SetToolTip(this.btnVFOSwap, resources.GetString("btnVFOSwap.ToolTip"));
            this.btnVFOSwap.Click += new System.EventHandler(this.btnVFOSwap_Click);
            // 
            // btnVFOBtoA
            // 
            resources.ApplyResources(this.btnVFOBtoA, "btnVFOBtoA");
            this.btnVFOBtoA.FlatAppearance.BorderSize = 0;
            this.btnVFOBtoA.Image = null;
            this.btnVFOBtoA.Name = "btnVFOBtoA";
            this.toolTip1.SetToolTip(this.btnVFOBtoA, resources.GetString("btnVFOBtoA.ToolTip"));
            this.btnVFOBtoA.Click += new System.EventHandler(this.btnVFOBtoA_Click);
            // 
            // btnVFOAtoB
            // 
            resources.ApplyResources(this.btnVFOAtoB, "btnVFOAtoB");
            this.btnVFOAtoB.FlatAppearance.BorderSize = 0;
            this.btnVFOAtoB.Image = null;
            this.btnVFOAtoB.Name = "btnVFOAtoB";
            this.toolTip1.SetToolTip(this.btnVFOAtoB, resources.GetString("btnVFOAtoB.ToolTip"));
            this.btnVFOAtoB.Click += new System.EventHandler(this.btnVFOAtoB_Click);
            // 
            // chkVFOSplit
            // 
            resources.ApplyResources(this.chkVFOSplit, "chkVFOSplit");
            this.chkVFOSplit.FlatAppearance.BorderSize = 0;
            this.chkVFOSplit.Image = null;
            this.chkVFOSplit.Name = "chkVFOSplit";
            this.toolTip1.SetToolTip(this.chkVFOSplit, resources.GetString("chkVFOSplit.ToolTip"));
            this.chkVFOSplit.CheckedChanged += new System.EventHandler(this.chkVFOSplit_CheckedChanged);
            // 
            // chkSQLMainRX
            // 
            resources.ApplyResources(this.chkSQLMainRX, "chkSQLMainRX");
            this.chkSQLMainRX.FlatAppearance.BorderSize = 0;
            this.chkSQLMainRX.Image = null;
            this.chkSQLMainRX.Name = "chkSQLMainRX";
            this.toolTip1.SetToolTip(this.chkSQLMainRX, resources.GetString("chkSQLMainRX.ToolTip"));
            this.chkSQLMainRX.CheckedChanged += new System.EventHandler(this.chkSQLMainRX_CheckedChanged);
            // 
            // udVACTXGain
            // 
            this.udVACTXGain.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udVACTXGain, "udVACTXGain");
            this.udVACTXGain.Maximum = new decimal(new int[] {
            20,
            0,
            0,
            0});
            this.udVACTXGain.Minimum = new decimal(new int[] {
            40,
            0,
            0,
            -2147483648});
            this.udVACTXGain.Name = "udVACTXGain";
            this.toolTip1.SetToolTip(this.udVACTXGain, resources.GetString("udVACTXGain.ToolTip"));
            this.udVACTXGain.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udVACTXGain.ValueChanged += new System.EventHandler(this.udVACTXGain_ValueChanged);
            // 
            // udVACRXGain
            // 
            this.udVACRXGain.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udVACRXGain, "udVACRXGain");
            this.udVACRXGain.Maximum = new decimal(new int[] {
            20,
            0,
            0,
            0});
            this.udVACRXGain.Minimum = new decimal(new int[] {
            40,
            0,
            0,
            -2147483648});
            this.udVACRXGain.Name = "udVACRXGain";
            this.toolTip1.SetToolTip(this.udVACRXGain, resources.GetString("udVACRXGain.ToolTip"));
            this.udVACRXGain.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udVACRXGain.ValueChanged += new System.EventHandler(this.udVACRXGain_ValueChanged);
            // 
            // chkVACEnabled
            // 
            resources.ApplyResources(this.chkVACEnabled, "chkVACEnabled");
            this.chkVACEnabled.FlatAppearance.BorderSize = 0;
            this.chkVACEnabled.Image = null;
            this.chkVACEnabled.Name = "chkVACEnabled";
            this.toolTip1.SetToolTip(this.chkVACEnabled, resources.GetString("chkVACEnabled.ToolTip"));
            this.chkVACEnabled.CheckedChanged += new System.EventHandler(this.chkVACEnabled_CheckedChanged);
            // 
            // udSubRXFilterHigh
            // 
            this.udSubRXFilterHigh.BackColor = System.Drawing.SystemColors.Window;
            resources.ApplyResources(this.udSubRXFilterHigh, "udSubRXFilterHigh");
            this.udSubRXFilterHigh.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udSubRXFilterHigh.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.udSubRXFilterHigh.Maximum = new decimal(new int[] {
            20000,
            0,
            0,
            0});
            this.udSubRXFilterHigh.Minimum = new decimal(new int[] {
            20000,
            0,
            0,
            -2147483648});
            this.udSubRXFilterHigh.Name = "udSubRXFilterHigh";
            this.toolTip1.SetToolTip(this.udSubRXFilterHigh, resources.GetString("udSubRXFilterHigh.ToolTip"));
            this.udSubRXFilterHigh.Value = new decimal(new int[] {
            6000,
            0,
            0,
            0});
            this.udSubRXFilterHigh.ValueChanged += new System.EventHandler(this.udSubRXFilterHigh_ValueChanged);
            this.udSubRXFilterHigh.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udSubRXFilterHigh.LostFocus += new System.EventHandler(this.udSubRXFilterHigh_LostFocus);
            // 
            // udSubRXFilterLow
            // 
            this.udSubRXFilterLow.BackColor = System.Drawing.SystemColors.Window;
            resources.ApplyResources(this.udSubRXFilterLow, "udSubRXFilterLow");
            this.udSubRXFilterLow.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udSubRXFilterLow.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.udSubRXFilterLow.Maximum = new decimal(new int[] {
            20000,
            0,
            0,
            0});
            this.udSubRXFilterLow.Minimum = new decimal(new int[] {
            20000,
            0,
            0,
            -2147483648});
            this.udSubRXFilterLow.Name = "udSubRXFilterLow";
            this.toolTip1.SetToolTip(this.udSubRXFilterLow, resources.GetString("udSubRXFilterLow.ToolTip"));
            this.udSubRXFilterLow.Value = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udSubRXFilterLow.ValueChanged += new System.EventHandler(this.udSubRXFilterLow_ValueChanged);
            this.udSubRXFilterLow.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udSubRXFilterLow.LostFocus += new System.EventHandler(this.udSubRXFilterLow_LostFocus);
            // 
            // ptbSubRXFilterWidth
            // 
            resources.ApplyResources(this.ptbSubRXFilterWidth, "ptbSubRXFilterWidth");
            this.ptbSubRXFilterWidth.HeadImage = null;
            this.ptbSubRXFilterWidth.LargeChange = 5;
            this.ptbSubRXFilterWidth.Maximum = 20000;
            this.ptbSubRXFilterWidth.Minimum = 1;
            this.ptbSubRXFilterWidth.Name = "ptbSubRXFilterWidth";
            this.ptbSubRXFilterWidth.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbSubRXFilterWidth.SmallChange = 1;
            this.ptbSubRXFilterWidth.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbSubRXFilterWidth, resources.GetString("ptbSubRXFilterWidth.ToolTip"));
            this.ptbSubRXFilterWidth.Value = 1;
            this.ptbSubRXFilterWidth.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbSubRXFilterWidth_OnWheel);
            this.ptbSubRXFilterWidth.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ptbSubRXFilterWidth_MouseMove);
            this.ptbSubRXFilterWidth.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbSubRXFilterWidth_Scroll);
            // 
            // btnSubRXFilterShiftReset
            // 
            this.btnSubRXFilterShiftReset.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnSubRXFilterShiftReset, "btnSubRXFilterShiftReset");
            this.btnSubRXFilterShiftReset.Image = null;
            this.btnSubRXFilterShiftReset.Name = "btnSubRXFilterShiftReset";
            this.btnSubRXFilterShiftReset.Tag = "Reset Filter Shift";
            this.toolTip1.SetToolTip(this.btnSubRXFilterShiftReset, resources.GetString("btnSubRXFilterShiftReset.ToolTip"));
            this.btnSubRXFilterShiftReset.Click += new System.EventHandler(this.btnSubRXFilterShiftReset_Click);
            // 
            // ptbSubRXFilterShift
            // 
            resources.ApplyResources(this.ptbSubRXFilterShift, "ptbSubRXFilterShift");
            this.ptbSubRXFilterShift.HeadImage = null;
            this.ptbSubRXFilterShift.LargeChange = 5;
            this.ptbSubRXFilterShift.Maximum = 1000;
            this.ptbSubRXFilterShift.Minimum = -1000;
            this.ptbSubRXFilterShift.Name = "ptbSubRXFilterShift";
            this.ptbSubRXFilterShift.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbSubRXFilterShift.SmallChange = 1;
            this.ptbSubRXFilterShift.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbSubRXFilterShift, resources.GetString("ptbSubRXFilterShift.ToolTip"));
            this.ptbSubRXFilterShift.Value = 0;
            this.ptbSubRXFilterShift.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbSubRXFilterShift_OnWheel);
            this.ptbSubRXFilterShift.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ptbSubRXFilterShift_MouseMove);
            this.ptbSubRXFilterShift.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbSubRXFilterShift_Scroll);
            // 
            // chkNB2SubRX
            // 
            resources.ApplyResources(this.chkNB2SubRX, "chkNB2SubRX");
            this.chkNB2SubRX.FlatAppearance.BorderSize = 0;
            this.chkNB2SubRX.Image = null;
            this.chkNB2SubRX.Name = "chkNB2SubRX";
            this.toolTip1.SetToolTip(this.chkNB2SubRX, resources.GetString("chkNB2SubRX.ToolTip"));
            this.chkNB2SubRX.CheckedChanged += new System.EventHandler(this.chkNB2SubRX_CheckedChanged);
            // 
            // chkNBSubRX
            // 
            resources.ApplyResources(this.chkNBSubRX, "chkNBSubRX");
            this.chkNBSubRX.FlatAppearance.BorderSize = 0;
            this.chkNBSubRX.Image = null;
            this.chkNBSubRX.Name = "chkNBSubRX";
            this.toolTip1.SetToolTip(this.chkNBSubRX, resources.GetString("chkNBSubRX.ToolTip"));
            this.chkNBSubRX.CheckedChanged += new System.EventHandler(this.chkNBSubRX_CheckedChanged);
            // 
            // chkANFSubRX
            // 
            resources.ApplyResources(this.chkANFSubRX, "chkANFSubRX");
            this.chkANFSubRX.FlatAppearance.BorderSize = 0;
            this.chkANFSubRX.Image = null;
            this.chkANFSubRX.Name = "chkANFSubRX";
            this.toolTip1.SetToolTip(this.chkANFSubRX, resources.GetString("chkANFSubRX.ToolTip"));
            this.chkANFSubRX.CheckedChanged += new System.EventHandler(this.chkANFSubRX_CheckedChanged);
            // 
            // chkNRSubRX
            // 
            resources.ApplyResources(this.chkNRSubRX, "chkNRSubRX");
            this.chkNRSubRX.FlatAppearance.BorderSize = 0;
            this.chkNRSubRX.Image = null;
            this.chkNRSubRX.Name = "chkNRSubRX";
            this.toolTip1.SetToolTip(this.chkNRSubRX, resources.GetString("chkNRSubRX.ToolTip"));
            this.chkNRSubRX.CheckedChanged += new System.EventHandler(this.chkNRSubRX_CheckedChanged);
            // 
            // chkBINSubRX
            // 
            resources.ApplyResources(this.chkBINSubRX, "chkBINSubRX");
            this.chkBINSubRX.FlatAppearance.BorderSize = 0;
            this.chkBINSubRX.Image = null;
            this.chkBINSubRX.Name = "chkBINSubRX";
            this.toolTip1.SetToolTip(this.chkBINSubRX, resources.GetString("chkBINSubRX.ToolTip"));
            this.chkBINSubRX.CheckedChanged += new System.EventHandler(this.chkBINSubRX_CheckedChanged);
            // 
            // comboAGCMainRX
            // 
            this.comboAGCMainRX.BackColor = System.Drawing.SystemColors.Window;
            this.comboAGCMainRX.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboAGCMainRX.DropDownWidth = 48;
            resources.ApplyResources(this.comboAGCMainRX, "comboAGCMainRX");
            this.comboAGCMainRX.ForeColor = System.Drawing.SystemColors.WindowText;
            this.comboAGCMainRX.Name = "comboAGCMainRX";
            this.toolTip1.SetToolTip(this.comboAGCMainRX, resources.GetString("comboAGCMainRX.ToolTip"));
            this.comboAGCMainRX.SelectedIndexChanged += new System.EventHandler(this.comboAGCMainRX_SelectedIndexChanged);
            // 
            // comboAGCSubRX
            // 
            this.comboAGCSubRX.BackColor = System.Drawing.SystemColors.Window;
            this.comboAGCSubRX.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboAGCSubRX.DropDownWidth = 48;
            resources.ApplyResources(this.comboAGCSubRX, "comboAGCSubRX");
            this.comboAGCSubRX.ForeColor = System.Drawing.SystemColors.WindowText;
            this.comboAGCSubRX.Name = "comboAGCSubRX";
            this.toolTip1.SetToolTip(this.comboAGCSubRX, resources.GetString("comboAGCSubRX.ToolTip"));
            this.comboAGCSubRX.SelectedIndexChanged += new System.EventHandler(this.comboAGCSubRX_SelectedIndexChanged);
            // 
            // ptbSQLMainRX
            // 
            resources.ApplyResources(this.ptbSQLMainRX, "ptbSQLMainRX");
            this.ptbSQLMainRX.HeadImage = null;
            this.ptbSQLMainRX.LargeChange = 1;
            this.ptbSQLMainRX.Maximum = 0;
            this.ptbSQLMainRX.Minimum = -160;
            this.ptbSQLMainRX.Name = "ptbSQLMainRX";
            this.ptbSQLMainRX.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbSQLMainRX.SmallChange = 1;
            this.ptbSQLMainRX.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbSQLMainRX, resources.GetString("ptbSQLMainRX.ToolTip"));
            this.ptbSQLMainRX.Value = -150;
            this.ptbSQLMainRX.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbSQL_OnWheel);
            this.ptbSQLMainRX.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbSQL_Scroll);
            // 
            // udSQLSubRX
            // 
            this.udSQLSubRX.BackColor = System.Drawing.SystemColors.Window;
            this.udSQLSubRX.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udSQLSubRX.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udSQLSubRX, "udSQLSubRX");
            this.udSQLSubRX.Maximum = new decimal(new int[] {
            160,
            0,
            0,
            0});
            this.udSQLSubRX.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udSQLSubRX.Name = "udSQLSubRX";
            this.toolTip1.SetToolTip(this.udSQLSubRX, resources.GetString("udSQLSubRX.ToolTip"));
            this.udSQLSubRX.Value = new decimal(new int[] {
            150,
            0,
            0,
            0});
            this.udSQLSubRX.ValueChanged += new System.EventHandler(this.udSQLSubRX_ValueChanged);
            this.udSQLSubRX.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            // 
            // chkSQLSubRX
            // 
            resources.ApplyResources(this.chkSQLSubRX, "chkSQLSubRX");
            this.chkSQLSubRX.FlatAppearance.BorderSize = 0;
            this.chkSQLSubRX.Image = null;
            this.chkSQLSubRX.Name = "chkSQLSubRX";
            this.toolTip1.SetToolTip(this.chkSQLSubRX, resources.GetString("chkSQLSubRX.ToolTip"));
            this.chkSQLSubRX.CheckedChanged += new System.EventHandler(this.chkSQLSubRX_CheckedChanged);
            // 
            // ptbSQLSubRX
            // 
            resources.ApplyResources(this.ptbSQLSubRX, "ptbSQLSubRX");
            this.ptbSQLSubRX.HeadImage = null;
            this.ptbSQLSubRX.LargeChange = 1;
            this.ptbSQLSubRX.Maximum = 0;
            this.ptbSQLSubRX.Minimum = -160;
            this.ptbSQLSubRX.Name = "ptbSQLSubRX";
            this.ptbSQLSubRX.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbSQLSubRX.SmallChange = 1;
            this.ptbSQLSubRX.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbSQLSubRX, resources.GetString("ptbSQLSubRX.ToolTip"));
            this.ptbSQLSubRX.Value = -150;
            this.ptbSQLSubRX.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbSQLSubRX_OnWheel);
            this.ptbSQLSubRX.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbSQLSubRX_Scroll);
            // 
            // udSQLMainRX
            // 
            this.udSQLMainRX.BackColor = System.Drawing.SystemColors.Window;
            this.udSQLMainRX.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udSQLMainRX.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udSQLMainRX, "udSQLMainRX");
            this.udSQLMainRX.Maximum = new decimal(new int[] {
            160,
            0,
            0,
            0});
            this.udSQLMainRX.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udSQLMainRX.Name = "udSQLMainRX";
            this.toolTip1.SetToolTip(this.udSQLMainRX, resources.GetString("udSQLMainRX.ToolTip"));
            this.udSQLMainRX.Value = new decimal(new int[] {
            150,
            0,
            0,
            0});
            this.udSQLMainRX.ValueChanged += new System.EventHandler(this.udSQLMainRX_ValueChanged);
            this.udSQLMainRX.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udSQLMainRX.LostFocus += new System.EventHandler(this.udSQLMainRX_LostFocus);
            // 
            // txtWheelTuneSubRX
            // 
            this.txtWheelTuneSubRX.BackColor = System.Drawing.SystemColors.Window;
            this.txtWheelTuneSubRX.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtWheelTuneSubRX, "txtWheelTuneSubRX");
            this.txtWheelTuneSubRX.ForeColor = System.Drawing.SystemColors.ControlText;
            this.txtWheelTuneSubRX.Name = "txtWheelTuneSubRX";
            this.txtWheelTuneSubRX.ReadOnly = true;
            this.toolTip1.SetToolTip(this.txtWheelTuneSubRX, resources.GetString("txtWheelTuneSubRX.ToolTip"));
            this.txtWheelTuneSubRX.MouseDown += new System.Windows.Forms.MouseEventHandler(this.WheelTune_MouseDown);
            // 
            // ptbPWR1
            // 
            resources.ApplyResources(this.ptbPWR1, "ptbPWR1");
            this.ptbPWR1.HeadImage = null;
            this.ptbPWR1.LargeChange = 5;
            this.ptbPWR1.Maximum = 100;
            this.ptbPWR1.Minimum = 0;
            this.ptbPWR1.Name = "ptbPWR1";
            this.ptbPWR1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbPWR1.SmallChange = 1;
            this.ptbPWR1.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbPWR1, resources.GetString("ptbPWR1.ToolTip"));
            this.ptbPWR1.Value = 50;
            this.ptbPWR1.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbPWR1_OnWheel);
            this.ptbPWR1.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbPWR1_Scroll);
            // 
            // ptbRF1
            // 
            resources.ApplyResources(this.ptbRF1, "ptbRF1");
            this.ptbRF1.HeadImage = null;
            this.ptbRF1.LargeChange = 5;
            this.ptbRF1.Maximum = 120;
            this.ptbRF1.Minimum = -20;
            this.ptbRF1.Name = "ptbRF1";
            this.ptbRF1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbRF1.SmallChange = 1;
            this.ptbRF1.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbRF1, resources.GetString("ptbRF1.ToolTip"));
            this.ptbRF1.Value = 90;
            this.ptbRF1.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbRF1_OnWheel);
            this.ptbRF1.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbRF1_Scroll);
            // 
            // ptbAF1
            // 
            resources.ApplyResources(this.ptbAF1, "ptbAF1");
            this.ptbAF1.HeadImage = null;
            this.ptbAF1.LargeChange = 5;
            this.ptbAF1.Maximum = 100;
            this.ptbAF1.Minimum = 0;
            this.ptbAF1.Name = "ptbAF1";
            this.ptbAF1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbAF1.SmallChange = 1;
            this.ptbAF1.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbAF1, resources.GetString("ptbAF1.ToolTip"));
            this.ptbAF1.Value = 50;
            this.ptbAF1.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbAF1_OnWheel);
            this.ptbAF1.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbAF1_Scroll);
            // 
            // udRF1
            // 
            this.udRF1.BackColor = System.Drawing.SystemColors.Window;
            this.udRF1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udRF1.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udRF1, "udRF1");
            this.udRF1.Maximum = new decimal(new int[] {
            120,
            0,
            0,
            0});
            this.udRF1.Minimum = new decimal(new int[] {
            20,
            0,
            0,
            -2147483648});
            this.udRF1.Name = "udRF1";
            this.toolTip1.SetToolTip(this.udRF1, resources.GetString("udRF1.ToolTip"));
            this.udRF1.Value = new decimal(new int[] {
            90,
            0,
            0,
            0});
            this.udRF1.ValueChanged += new System.EventHandler(this.udRF1_ValueChanged);
            this.udRF1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            // 
            // udPWR1
            // 
            this.udPWR1.BackColor = System.Drawing.SystemColors.Window;
            this.udPWR1.DecimalPlaces = 1;
            this.udPWR1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udPWR1.Increment = new decimal(new int[] {
            1,
            0,
            0,
            65536});
            resources.ApplyResources(this.udPWR1, "udPWR1");
            this.udPWR1.Maximum = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.udPWR1.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udPWR1.Name = "udPWR1";
            this.toolTip1.SetToolTip(this.udPWR1, resources.GetString("udPWR1.ToolTip"));
            this.udPWR1.Value = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.udPWR1.ValueChanged += new System.EventHandler(this.udPWR1_ValueChanged);
            this.udPWR1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            // 
            // udAF1
            // 
            this.udAF1.BackColor = System.Drawing.SystemColors.Window;
            this.udAF1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udAF1.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udAF1, "udAF1");
            this.udAF1.Maximum = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.udAF1.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udAF1.Name = "udAF1";
            this.toolTip1.SetToolTip(this.udAF1, resources.GetString("udAF1.ToolTip"));
            this.udAF1.Value = new decimal(new int[] {
            50,
            0,
            0,
            0});
            this.udAF1.ValueChanged += new System.EventHandler(this.udAF1_ValueChanged_1);
            this.udAF1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            // 
            // lblRX2
            // 
            resources.ApplyResources(this.lblRX2, "lblRX2");
            this.lblRX2.BackColor = System.Drawing.Color.Black;
            this.lblRX2.ForeColor = System.Drawing.Color.Olive;
            this.lblRX2.Image = null;
            this.lblRX2.Name = "lblRX2";
            this.toolTip1.SetToolTip(this.lblRX2, resources.GetString("lblRX2.ToolTip"));
            this.lblRX2.Click += new System.EventHandler(this.lblRX2_Click);
            // 
            // ptbNotchWidth
            // 
            resources.ApplyResources(this.ptbNotchWidth, "ptbNotchWidth");
            this.ptbNotchWidth.HeadImage = null;
            this.ptbNotchWidth.LargeChange = 10;
            this.ptbNotchWidth.Maximum = 5000;
            this.ptbNotchWidth.Minimum = 0;
            this.ptbNotchWidth.Name = "ptbNotchWidth";
            this.ptbNotchWidth.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbNotchWidth.SmallChange = 10;
            this.ptbNotchWidth.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbNotchWidth, resources.GetString("ptbNotchWidth.ToolTip"));
            this.ptbNotchWidth.Value = 200;
            this.ptbNotchWidth.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbNotchWidth_OnWheel);
            this.ptbNotchWidth.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbNotchWidth_Scroll);
            // 
            // ptbNotchShift
            // 
            resources.ApplyResources(this.ptbNotchShift, "ptbNotchShift");
            this.ptbNotchShift.HeadImage = null;
            this.ptbNotchShift.LargeChange = 25;
            this.ptbNotchShift.Maximum = 5000;
            this.ptbNotchShift.Minimum = -5000;
            this.ptbNotchShift.Name = "ptbNotchShift";
            this.ptbNotchShift.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbNotchShift.SmallChange = 25;
            this.ptbNotchShift.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbNotchShift, resources.GetString("ptbNotchShift.ToolTip"));
            this.ptbNotchShift.Value = 0;
            this.ptbNotchShift.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbNotchShift_OnWheel);
            this.ptbNotchShift.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbNotchShift_Scroll);
            // 
            // btnNotchReset
            // 
            this.btnNotchReset.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnNotchReset, "btnNotchReset");
            this.btnNotchReset.Image = null;
            this.btnNotchReset.Name = "btnNotchReset";
            this.btnNotchReset.Tag = "Reset Filter Shift";
            this.toolTip1.SetToolTip(this.btnNotchReset, resources.GetString("btnNotchReset.ToolTip"));
            this.btnNotchReset.Click += new System.EventHandler(this.btnNotchReset_Click);
            // 
            // radSUBRxModeAM
            // 
            resources.ApplyResources(this.radSUBRxModeAM, "radSUBRxModeAM");
            this.radSUBRxModeAM.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeAM.Image = null;
            this.radSUBRxModeAM.Name = "radSUBRxModeAM";
            this.toolTip1.SetToolTip(this.radSUBRxModeAM, resources.GetString("radSUBRxModeAM.ToolTip"));
            this.radSUBRxModeAM.CheckedChanged += new System.EventHandler(this.radSUBRxModeAM_CheckedChanged);
            // 
            // radSUBRxModeSAM
            // 
            resources.ApplyResources(this.radSUBRxModeSAM, "radSUBRxModeSAM");
            this.radSUBRxModeSAM.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeSAM.Image = null;
            this.radSUBRxModeSAM.Name = "radSUBRxModeSAM";
            this.toolTip1.SetToolTip(this.radSUBRxModeSAM, resources.GetString("radSUBRxModeSAM.ToolTip"));
            this.radSUBRxModeSAM.CheckedChanged += new System.EventHandler(this.radSUBRxModeSAM_CheckedChanged);
            // 
            // radSUBRxModeDSB
            // 
            resources.ApplyResources(this.radSUBRxModeDSB, "radSUBRxModeDSB");
            this.radSUBRxModeDSB.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeDSB.Image = null;
            this.radSUBRxModeDSB.Name = "radSUBRxModeDSB";
            this.toolTip1.SetToolTip(this.radSUBRxModeDSB, resources.GetString("radSUBRxModeDSB.ToolTip"));
            this.radSUBRxModeDSB.CheckedChanged += new System.EventHandler(this.radSUBRxModeDSB_CheckedChanged);
            // 
            // radSUBRxModeCWU
            // 
            resources.ApplyResources(this.radSUBRxModeCWU, "radSUBRxModeCWU");
            this.radSUBRxModeCWU.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeCWU.Image = null;
            this.radSUBRxModeCWU.Name = "radSUBRxModeCWU";
            this.toolTip1.SetToolTip(this.radSUBRxModeCWU, resources.GetString("radSUBRxModeCWU.ToolTip"));
            this.radSUBRxModeCWU.CheckedChanged += new System.EventHandler(this.radSUBRxModeCWU_CheckedChanged);
            // 
            // radSUBRxModeDIGU
            // 
            resources.ApplyResources(this.radSUBRxModeDIGU, "radSUBRxModeDIGU");
            this.radSUBRxModeDIGU.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeDIGU.Image = null;
            this.radSUBRxModeDIGU.Name = "radSUBRxModeDIGU";
            this.toolTip1.SetToolTip(this.radSUBRxModeDIGU, resources.GetString("radSUBRxModeDIGU.ToolTip"));
            this.radSUBRxModeDIGU.CheckedChanged += new System.EventHandler(this.radSUBRxModeDIGU_CheckedChanged);
            // 
            // radSUBRxModeDIGL
            // 
            resources.ApplyResources(this.radSUBRxModeDIGL, "radSUBRxModeDIGL");
            this.radSUBRxModeDIGL.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeDIGL.Image = null;
            this.radSUBRxModeDIGL.Name = "radSUBRxModeDIGL";
            this.toolTip1.SetToolTip(this.radSUBRxModeDIGL, resources.GetString("radSUBRxModeDIGL.ToolTip"));
            this.radSUBRxModeDIGL.CheckedChanged += new System.EventHandler(this.radSUBRxModeDIGL_CheckedChanged);
            // 
            // radSUBRxModeLSB
            // 
            resources.ApplyResources(this.radSUBRxModeLSB, "radSUBRxModeLSB");
            this.radSUBRxModeLSB.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeLSB.Image = null;
            this.radSUBRxModeLSB.Name = "radSUBRxModeLSB";
            this.toolTip1.SetToolTip(this.radSUBRxModeLSB, resources.GetString("radSUBRxModeLSB.ToolTip"));
            this.radSUBRxModeLSB.CheckedChanged += new System.EventHandler(this.radSUBRxModeLSB_CheckedChanged);
            // 
            // radSUBRxModeSPEC
            // 
            resources.ApplyResources(this.radSUBRxModeSPEC, "radSUBRxModeSPEC");
            this.radSUBRxModeSPEC.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeSPEC.Image = null;
            this.radSUBRxModeSPEC.Name = "radSUBRxModeSPEC";
            this.toolTip1.SetToolTip(this.radSUBRxModeSPEC, resources.GetString("radSUBRxModeSPEC.ToolTip"));
            this.radSUBRxModeSPEC.CheckedChanged += new System.EventHandler(this.radSUBRxModeSPEC_CheckedChanged);
            // 
            // radSUBRxModeDRM
            // 
            resources.ApplyResources(this.radSUBRxModeDRM, "radSUBRxModeDRM");
            this.radSUBRxModeDRM.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeDRM.Image = null;
            this.radSUBRxModeDRM.Name = "radSUBRxModeDRM";
            this.toolTip1.SetToolTip(this.radSUBRxModeDRM, resources.GetString("radSUBRxModeDRM.ToolTip"));
            this.radSUBRxModeDRM.CheckedChanged += new System.EventHandler(this.radSUBRxModeDRM_CheckedChanged);
            // 
            // radSUBRxModeFMN
            // 
            resources.ApplyResources(this.radSUBRxModeFMN, "radSUBRxModeFMN");
            this.radSUBRxModeFMN.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeFMN.Image = null;
            this.radSUBRxModeFMN.Name = "radSUBRxModeFMN";
            this.toolTip1.SetToolTip(this.radSUBRxModeFMN, resources.GetString("radSUBRxModeFMN.ToolTip"));
            this.radSUBRxModeFMN.CheckedChanged += new System.EventHandler(this.radSUBRxModeFMN_CheckedChanged);
            // 
            // radSUBRxModeUSB
            // 
            resources.ApplyResources(this.radSUBRxModeUSB, "radSUBRxModeUSB");
            this.radSUBRxModeUSB.BackColor = System.Drawing.SystemColors.Control;
            this.radSUBRxModeUSB.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeUSB.Image = null;
            this.radSUBRxModeUSB.Name = "radSUBRxModeUSB";
            this.toolTip1.SetToolTip(this.radSUBRxModeUSB, resources.GetString("radSUBRxModeUSB.ToolTip"));
            this.radSUBRxModeUSB.UseVisualStyleBackColor = false;
            this.radSUBRxModeUSB.CheckedChanged += new System.EventHandler(this.radSUBRxModeUSB_CheckedChanged);
            // 
            // radSUBRxModeCWL
            // 
            resources.ApplyResources(this.radSUBRxModeCWL, "radSUBRxModeCWL");
            this.radSUBRxModeCWL.FlatAppearance.BorderSize = 0;
            this.radSUBRxModeCWL.Image = null;
            this.radSUBRxModeCWL.Name = "radSUBRxModeCWL";
            this.toolTip1.SetToolTip(this.radSUBRxModeCWL, resources.GetString("radSUBRxModeCWL.ToolTip"));
            this.radSUBRxModeCWL.CheckedChanged += new System.EventHandler(this.radSUBRxModeCWL_CheckedChanged);
            // 
            // radModeAM
            // 
            resources.ApplyResources(this.radModeAM, "radModeAM");
            this.radModeAM.FlatAppearance.BorderSize = 0;
            this.radModeAM.Image = null;
            this.radModeAM.Name = "radModeAM";
            this.toolTip1.SetToolTip(this.radModeAM, resources.GetString("radModeAM.ToolTip"));
            this.radModeAM.CheckedChanged += new System.EventHandler(this.radModeAM_CheckedChanged);
            // 
            // radModeSAM
            // 
            resources.ApplyResources(this.radModeSAM, "radModeSAM");
            this.radModeSAM.FlatAppearance.BorderSize = 0;
            this.radModeSAM.Image = null;
            this.radModeSAM.Name = "radModeSAM";
            this.toolTip1.SetToolTip(this.radModeSAM, resources.GetString("radModeSAM.ToolTip"));
            this.radModeSAM.CheckedChanged += new System.EventHandler(this.radModeSAM_CheckedChanged);
            // 
            // radModeDSB
            // 
            resources.ApplyResources(this.radModeDSB, "radModeDSB");
            this.radModeDSB.FlatAppearance.BorderSize = 0;
            this.radModeDSB.Image = null;
            this.radModeDSB.Name = "radModeDSB";
            this.toolTip1.SetToolTip(this.radModeDSB, resources.GetString("radModeDSB.ToolTip"));
            this.radModeDSB.CheckedChanged += new System.EventHandler(this.radModeDSB_CheckedChanged);
            // 
            // radModeCWU
            // 
            resources.ApplyResources(this.radModeCWU, "radModeCWU");
            this.radModeCWU.FlatAppearance.BorderSize = 0;
            this.radModeCWU.Image = null;
            this.radModeCWU.Name = "radModeCWU";
            this.toolTip1.SetToolTip(this.radModeCWU, resources.GetString("radModeCWU.ToolTip"));
            this.radModeCWU.CheckedChanged += new System.EventHandler(this.radModeCWU_CheckedChanged);
            // 
            // radModeDIGU
            // 
            resources.ApplyResources(this.radModeDIGU, "radModeDIGU");
            this.radModeDIGU.FlatAppearance.BorderSize = 0;
            this.radModeDIGU.Image = null;
            this.radModeDIGU.Name = "radModeDIGU";
            this.toolTip1.SetToolTip(this.radModeDIGU, resources.GetString("radModeDIGU.ToolTip"));
            this.radModeDIGU.CheckedChanged += new System.EventHandler(this.radModeDIGU_CheckedChanged);
            // 
            // radModeDIGL
            // 
            resources.ApplyResources(this.radModeDIGL, "radModeDIGL");
            this.radModeDIGL.FlatAppearance.BorderSize = 0;
            this.radModeDIGL.Image = null;
            this.radModeDIGL.Name = "radModeDIGL";
            this.toolTip1.SetToolTip(this.radModeDIGL, resources.GetString("radModeDIGL.ToolTip"));
            this.radModeDIGL.CheckedChanged += new System.EventHandler(this.radModeDIGL_CheckedChanged);
            // 
            // radModeLSB
            // 
            resources.ApplyResources(this.radModeLSB, "radModeLSB");
            this.radModeLSB.FlatAppearance.BorderSize = 0;
            this.radModeLSB.Image = null;
            this.radModeLSB.Name = "radModeLSB";
            this.toolTip1.SetToolTip(this.radModeLSB, resources.GetString("radModeLSB.ToolTip"));
            this.radModeLSB.CheckedChanged += new System.EventHandler(this.radModeLSB_CheckedChanged);
            // 
            // radModeSPEC
            // 
            resources.ApplyResources(this.radModeSPEC, "radModeSPEC");
            this.radModeSPEC.FlatAppearance.BorderSize = 0;
            this.radModeSPEC.Image = null;
            this.radModeSPEC.Name = "radModeSPEC";
            this.toolTip1.SetToolTip(this.radModeSPEC, resources.GetString("radModeSPEC.ToolTip"));
            this.radModeSPEC.CheckedChanged += new System.EventHandler(this.radModeSPEC_CheckedChanged);
            // 
            // radModeDRM
            // 
            resources.ApplyResources(this.radModeDRM, "radModeDRM");
            this.radModeDRM.FlatAppearance.BorderSize = 0;
            this.radModeDRM.Image = null;
            this.radModeDRM.Name = "radModeDRM";
            this.toolTip1.SetToolTip(this.radModeDRM, resources.GetString("radModeDRM.ToolTip"));
            this.radModeDRM.CheckedChanged += new System.EventHandler(this.radModeDRM_CheckedChanged);
            // 
            // radModeFMN
            // 
            resources.ApplyResources(this.radModeFMN, "radModeFMN");
            this.radModeFMN.FlatAppearance.BorderSize = 0;
            this.radModeFMN.Image = null;
            this.radModeFMN.Name = "radModeFMN";
            this.toolTip1.SetToolTip(this.radModeFMN, resources.GetString("radModeFMN.ToolTip"));
            this.radModeFMN.CheckedChanged += new System.EventHandler(this.radModeFMN_CheckedChanged);
            // 
            // radModeUSB
            // 
            resources.ApplyResources(this.radModeUSB, "radModeUSB");
            this.radModeUSB.BackColor = System.Drawing.SystemColors.Control;
            this.radModeUSB.FlatAppearance.BorderSize = 0;
            this.radModeUSB.Image = null;
            this.radModeUSB.Name = "radModeUSB";
            this.toolTip1.SetToolTip(this.radModeUSB, resources.GetString("radModeUSB.ToolTip"));
            this.radModeUSB.UseVisualStyleBackColor = true;
            this.radModeUSB.CheckedChanged += new System.EventHandler(this.radModeUSB_CheckedChanged);
            // 
            // radModeWFM
            // 
            resources.ApplyResources(this.radModeWFM, "radModeWFM");
            this.radModeWFM.FlatAppearance.BorderSize = 0;
            this.radModeWFM.Image = null;
            this.radModeWFM.Name = "radModeWFM";
            this.toolTip1.SetToolTip(this.radModeWFM, resources.GetString("radModeWFM.ToolTip"));
            this.radModeWFM.CheckedChanged += new System.EventHandler(this.radModeWFM_CheckedChanged);
            // 
            // chkManualNotchFilter
            // 
            resources.ApplyResources(this.chkManualNotchFilter, "chkManualNotchFilter");
            this.chkManualNotchFilter.Image = null;
            this.chkManualNotchFilter.Name = "chkManualNotchFilter";
            this.toolTip1.SetToolTip(this.chkManualNotchFilter, resources.GetString("chkManualNotchFilter.ToolTip"));
            this.chkManualNotchFilter.UseVisualStyleBackColor = true;
            this.chkManualNotchFilter.CheckedChanged += new System.EventHandler(this.chkManualNotchFilter_CheckedChanged);
            // 
            // chkG11ATTbtn
            // 
            resources.ApplyResources(this.chkG11ATTbtn, "chkG11ATTbtn");
            this.chkG11ATTbtn.FlatAppearance.BorderSize = 0;
            this.chkG11ATTbtn.Image = null;
            this.chkG11ATTbtn.Name = "chkG11ATTbtn";
            this.toolTip1.SetToolTip(this.chkG11ATTbtn, resources.GetString("chkG11ATTbtn.ToolTip"));
            this.chkG11ATTbtn.UseVisualStyleBackColor = true;
            this.chkG11ATTbtn.CheckedChanged += new System.EventHandler(this.chkG11ATTbtn_CheckedChanged);
            // 
            // chkG11AFbtn
            // 
            resources.ApplyResources(this.chkG11AFbtn, "chkG11AFbtn");
            this.chkG11AFbtn.FlatAppearance.BorderSize = 0;
            this.chkG11AFbtn.Image = null;
            this.chkG11AFbtn.Name = "chkG11AFbtn";
            this.toolTip1.SetToolTip(this.chkG11AFbtn, resources.GetString("chkG11AFbtn.ToolTip"));
            this.chkG11AFbtn.UseVisualStyleBackColor = true;
            this.chkG11AFbtn.CheckedChanged += new System.EventHandler(this.chkG11AFbtn_CheckedChanged);
            // 
            // chkG11RFbtn
            // 
            resources.ApplyResources(this.chkG11RFbtn, "chkG11RFbtn");
            this.chkG11RFbtn.FlatAppearance.BorderSize = 0;
            this.chkG11RFbtn.Image = null;
            this.chkG11RFbtn.Name = "chkG11RFbtn";
            this.toolTip1.SetToolTip(this.chkG11RFbtn, resources.GetString("chkG11RFbtn.ToolTip"));
            this.chkG11RFbtn.UseVisualStyleBackColor = true;
            this.chkG11RFbtn.CheckedChanged += new System.EventHandler(this.chkG11RFbtn_CheckedChanged);
            // 
            // radBandHF
            // 
            resources.ApplyResources(this.radBandHF, "radBandHF");
            this.radBandHF.Checked = true;
            this.radBandHF.FlatAppearance.BorderSize = 0;
            this.radBandHF.Image = null;
            this.radBandHF.Name = "radBandHF";
            this.radBandHF.TabStop = true;
            this.toolTip1.SetToolTip(this.radBandHF, resources.GetString("radBandHF.ToolTip"));
            this.radBandHF.Click += new System.EventHandler(this.radBandHF_Click);
            this.radBandHF.CheckedChanged += new System.EventHandler(this.radBandHF_CheckedChanged);
            // 
            // radBand600
            // 
            resources.ApplyResources(this.radBand600, "radBand600");
            this.radBand600.FlatAppearance.BorderSize = 0;
            this.radBand600.Image = null;
            this.radBand600.Name = "radBand600";
            this.toolTip1.SetToolTip(this.radBand600, resources.GetString("radBand600.ToolTip"));
            this.radBand600.Click += new System.EventHandler(this.radBand600_Click);
            this.radBand600.CheckedChanged += new System.EventHandler(this.radBand600_CheckedChanged);
            // 
            // radBand2190
            // 
            resources.ApplyResources(this.radBand2190, "radBand2190");
            this.radBand2190.FlatAppearance.BorderSize = 0;
            this.radBand2190.Image = null;
            this.radBand2190.Name = "radBand2190";
            this.toolTip1.SetToolTip(this.radBand2190, resources.GetString("radBand2190.ToolTip"));
            this.radBand2190.Click += new System.EventHandler(this.radBand2190_Click);
            this.radBand2190.CheckedChanged += new System.EventHandler(this.radBand2190_CheckedChanged);
            // 
            // btnFMMC
            // 
            this.btnFMMC.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnFMMC, "btnFMMC");
            this.btnFMMC.Image = null;
            this.btnFMMC.Name = "btnFMMC";
            this.toolTip1.SetToolTip(this.btnFMMC, resources.GetString("btnFMMC.ToolTip"));
            this.btnFMMC.Click += new System.EventHandler(this.btnFMMC_Click);
            // 
            // btnFMMR
            // 
            this.btnFMMR.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnFMMR, "btnFMMR");
            this.btnFMMR.Image = null;
            this.btnFMMR.Name = "btnFMMR";
            this.toolTip1.SetToolTip(this.btnFMMR, resources.GetString("btnFMMR.ToolTip"));
            this.btnFMMR.Click += new System.EventHandler(this.btnFMMR_Click);
            // 
            // btnFMMS
            // 
            this.btnFMMS.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnFMMS, "btnFMMS");
            this.btnFMMS.Image = null;
            this.btnFMMS.Name = "btnFMMS";
            this.toolTip1.SetToolTip(this.btnFMMS, resources.GetString("btnFMMS.ToolTip"));
            this.btnFMMS.Click += new System.EventHandler(this.btnFMMS_Click);
            // 
            // lblMemoryNumber
            // 
            resources.ApplyResources(this.lblMemoryNumber, "lblMemoryNumber");
            this.lblMemoryNumber.BackColor = System.Drawing.Color.Blue;
            this.lblMemoryNumber.ContextMenuStrip = this.contextMemoryMenu;
            this.lblMemoryNumber.ForeColor = System.Drawing.Color.White;
            this.lblMemoryNumber.Image = null;
            this.lblMemoryNumber.MinimumSize = new System.Drawing.Size(27, 20);
            this.lblMemoryNumber.Name = "lblMemoryNumber";
            this.toolTip1.SetToolTip(this.lblMemoryNumber, resources.GetString("lblMemoryNumber.ToolTip"));
            this.lblMemoryNumber.MouseLeave += new System.EventHandler(this.MemoryButton_MouseLeave);
            this.lblMemoryNumber.Click += new System.EventHandler(this.lblMemoryNumber_Click);
            this.lblMemoryNumber.MouseHover += new System.EventHandler(this.MemoryButton_MouseHover);
            // 
            // contextMemoryMenu
            // 
            this.contextMemoryMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.eraseAllMemoryToolStripMenuItem});
            this.contextMemoryMenu.Name = "contextMemoryMenu";
            resources.ApplyResources(this.contextMemoryMenu, "contextMemoryMenu");
            // 
            // eraseAllMemoryToolStripMenuItem
            // 
            this.eraseAllMemoryToolStripMenuItem.Name = "eraseAllMemoryToolStripMenuItem";
            resources.ApplyResources(this.eraseAllMemoryToolStripMenuItem, "eraseAllMemoryToolStripMenuItem");
            this.eraseAllMemoryToolStripMenuItem.Click += new System.EventHandler(this.eraseAllMemoryToolStripMenuItem_Click);
            // 
            // lblFMMemory
            // 
            resources.ApplyResources(this.lblFMMemory, "lblFMMemory");
            this.lblFMMemory.BackColor = System.Drawing.Color.Blue;
            this.lblFMMemory.ContextMenuStrip = this.contextMenuFMMemory;
            this.lblFMMemory.ForeColor = System.Drawing.Color.White;
            this.lblFMMemory.Image = null;
            this.lblFMMemory.MinimumSize = new System.Drawing.Size(27, 20);
            this.lblFMMemory.Name = "lblFMMemory";
            this.toolTip1.SetToolTip(this.lblFMMemory, resources.GetString("lblFMMemory.ToolTip"));
            this.lblFMMemory.MouseLeave += new System.EventHandler(this.lblFMMemory_MouseLeave);
            this.lblFMMemory.Click += new System.EventHandler(this.lblFMMemory_Click);
            this.lblFMMemory.MouseHover += new System.EventHandler(this.lblFMMemory_MouseHover);
            // 
            // contextMenuFMMemory
            // 
            this.contextMenuFMMemory.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.eraseAllMemoryToolStripMenuItem1});
            this.contextMenuFMMemory.Name = "contextMenuFMMemory";
            resources.ApplyResources(this.contextMenuFMMemory, "contextMenuFMMemory");
            // 
            // eraseAllMemoryToolStripMenuItem1
            // 
            this.eraseAllMemoryToolStripMenuItem1.Name = "eraseAllMemoryToolStripMenuItem1";
            resources.ApplyResources(this.eraseAllMemoryToolStripMenuItem1, "eraseAllMemoryToolStripMenuItem1");
            this.eraseAllMemoryToolStripMenuItem1.Click += new System.EventHandler(this.eraseAllMemoryToolStripMenuItem1_Click);
            // 
            // udFMOffset
            // 
            this.udFMOffset.Increment = new decimal(new int[] {
            100,
            0,
            0,
            0});
            resources.ApplyResources(this.udFMOffset, "udFMOffset");
            this.udFMOffset.Maximum = new decimal(new int[] {
            5000,
            0,
            0,
            0});
            this.udFMOffset.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udFMOffset.Name = "udFMOffset";
            this.toolTip1.SetToolTip(this.udFMOffset, resources.GetString("udFMOffset.ToolTip"));
            this.udFMOffset.Value = new decimal(new int[] {
            600,
            0,
            0,
            0});
            // 
            // radFMModeHigh
            // 
            resources.ApplyResources(this.radFMModeHigh, "radFMModeHigh");
            this.radFMModeHigh.FlatAppearance.BorderSize = 0;
            this.radFMModeHigh.Image = null;
            this.radFMModeHigh.Name = "radFMModeHigh";
            this.toolTip1.SetToolTip(this.radFMModeHigh, resources.GetString("radFMModeHigh.ToolTip"));
            this.radFMModeHigh.CheckedChanged += new System.EventHandler(this.radFMModeHigh_CheckedChanged);
            // 
            // radFMModeSimplex
            // 
            resources.ApplyResources(this.radFMModeSimplex, "radFMModeSimplex");
            this.radFMModeSimplex.Checked = true;
            this.radFMModeSimplex.FlatAppearance.BorderSize = 0;
            this.radFMModeSimplex.Image = null;
            this.radFMModeSimplex.Name = "radFMModeSimplex";
            this.radFMModeSimplex.TabStop = true;
            this.toolTip1.SetToolTip(this.radFMModeSimplex, resources.GetString("radFMModeSimplex.ToolTip"));
            this.radFMModeSimplex.CheckedChanged += new System.EventHandler(this.radFMModeSimplex_CheckedChanged);
            // 
            // radFMModeLow
            // 
            resources.ApplyResources(this.radFMModeLow, "radFMModeLow");
            this.radFMModeLow.FlatAppearance.BorderSize = 0;
            this.radFMModeLow.Image = null;
            this.radFMModeLow.Name = "radFMModeLow";
            this.toolTip1.SetToolTip(this.radFMModeLow, resources.GetString("radFMModeLow.ToolTip"));
            this.radFMModeLow.CheckedChanged += new System.EventHandler(this.radFMModeLow_CheckedChanged);
            // 
            // chkCTCSS
            // 
            resources.ApplyResources(this.chkCTCSS, "chkCTCSS");
            this.chkCTCSS.FlatAppearance.BorderSize = 0;
            this.chkCTCSS.Image = null;
            this.chkCTCSS.Name = "chkCTCSS";
            this.toolTip1.SetToolTip(this.chkCTCSS, resources.GetString("chkCTCSS.ToolTip"));
            this.chkCTCSS.UseVisualStyleBackColor = false;
            this.chkCTCSS.CheckedChanged += new System.EventHandler(this.chkCTCSS_CheckedChanged);
            // 
            // comboFMCTCSSFreq
            // 
            this.comboFMCTCSSFreq.FormattingEnabled = true;
            this.comboFMCTCSSFreq.Items.AddRange(new object[] {
            resources.GetString("comboFMCTCSSFreq.Items"),
            resources.GetString("comboFMCTCSSFreq.Items1"),
            resources.GetString("comboFMCTCSSFreq.Items2"),
            resources.GetString("comboFMCTCSSFreq.Items3"),
            resources.GetString("comboFMCTCSSFreq.Items4"),
            resources.GetString("comboFMCTCSSFreq.Items5"),
            resources.GetString("comboFMCTCSSFreq.Items6"),
            resources.GetString("comboFMCTCSSFreq.Items7"),
            resources.GetString("comboFMCTCSSFreq.Items8"),
            resources.GetString("comboFMCTCSSFreq.Items9"),
            resources.GetString("comboFMCTCSSFreq.Items10"),
            resources.GetString("comboFMCTCSSFreq.Items11"),
            resources.GetString("comboFMCTCSSFreq.Items12"),
            resources.GetString("comboFMCTCSSFreq.Items13"),
            resources.GetString("comboFMCTCSSFreq.Items14"),
            resources.GetString("comboFMCTCSSFreq.Items15"),
            resources.GetString("comboFMCTCSSFreq.Items16"),
            resources.GetString("comboFMCTCSSFreq.Items17"),
            resources.GetString("comboFMCTCSSFreq.Items18"),
            resources.GetString("comboFMCTCSSFreq.Items19"),
            resources.GetString("comboFMCTCSSFreq.Items20"),
            resources.GetString("comboFMCTCSSFreq.Items21"),
            resources.GetString("comboFMCTCSSFreq.Items22"),
            resources.GetString("comboFMCTCSSFreq.Items23"),
            resources.GetString("comboFMCTCSSFreq.Items24"),
            resources.GetString("comboFMCTCSSFreq.Items25"),
            resources.GetString("comboFMCTCSSFreq.Items26"),
            resources.GetString("comboFMCTCSSFreq.Items27"),
            resources.GetString("comboFMCTCSSFreq.Items28"),
            resources.GetString("comboFMCTCSSFreq.Items29"),
            resources.GetString("comboFMCTCSSFreq.Items30"),
            resources.GetString("comboFMCTCSSFreq.Items31"),
            resources.GetString("comboFMCTCSSFreq.Items32"),
            resources.GetString("comboFMCTCSSFreq.Items33"),
            resources.GetString("comboFMCTCSSFreq.Items34"),
            resources.GetString("comboFMCTCSSFreq.Items35"),
            resources.GetString("comboFMCTCSSFreq.Items36"),
            resources.GetString("comboFMCTCSSFreq.Items37"),
            resources.GetString("comboFMCTCSSFreq.Items38")});
            resources.ApplyResources(this.comboFMCTCSSFreq, "comboFMCTCSSFreq");
            this.comboFMCTCSSFreq.Name = "comboFMCTCSSFreq";
            this.toolTip1.SetToolTip(this.comboFMCTCSSFreq, resources.GetString("comboFMCTCSSFreq.ToolTip"));
            this.comboFMCTCSSFreq.SelectedIndexChanged += new System.EventHandler(this.comboFMCTCSSFreq_SelectedIndexChanged);
            // 
            // ptbFMMicGain
            // 
            resources.ApplyResources(this.ptbFMMicGain, "ptbFMMicGain");
            this.ptbFMMicGain.HeadImage = null;
            this.ptbFMMicGain.LargeChange = 1;
            this.ptbFMMicGain.Maximum = 70;
            this.ptbFMMicGain.Minimum = 0;
            this.ptbFMMicGain.Name = "ptbFMMicGain";
            this.ptbFMMicGain.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbFMMicGain.SmallChange = 1;
            this.ptbFMMicGain.TabStop = false;
            this.toolTip1.SetToolTip(this.ptbFMMicGain, resources.GetString("ptbFMMicGain.ToolTip"));
            this.ptbFMMicGain.Value = 35;
            this.ptbFMMicGain.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.ptbFMMicGain_OnWheel);
            this.ptbFMMicGain.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.ptbFMMicGain_Scroll);
            // 
            // chkVACMute
            // 
            resources.ApplyResources(this.chkVACMute, "chkVACMute");
            this.chkVACMute.FlatAppearance.BorderSize = 0;
            this.chkVACMute.Image = null;
            this.chkVACMute.Name = "chkVACMute";
            this.toolTip1.SetToolTip(this.chkVACMute, resources.GetString("chkVACMute.ToolTip"));
            this.chkVACMute.CheckedChanged += new System.EventHandler(this.chkVACMute_CheckedChanged);
            // 
            // chkG6ATT_6dB
            // 
            resources.ApplyResources(this.chkG6ATT_6dB, "chkG6ATT_6dB");
            this.chkG6ATT_6dB.FlatAppearance.BorderSize = 0;
            this.chkG6ATT_6dB.Image = null;
            this.chkG6ATT_6dB.Name = "chkG6ATT_6dB";
            this.toolTip1.SetToolTip(this.chkG6ATT_6dB, resources.GetString("chkG6ATT_6dB.ToolTip"));
            this.chkG6ATT_6dB.UseVisualStyleBackColor = true;
            this.chkG6ATT_6dB.CheckedChanged += new System.EventHandler(this.chkG6ATT_CheckedChanged);
            // 
            // chkG6AF
            // 
            resources.ApplyResources(this.chkG6AF, "chkG6AF");
            this.chkG6AF.FlatAppearance.BorderSize = 0;
            this.chkG6AF.Image = null;
            this.chkG6AF.Name = "chkG6AF";
            this.toolTip1.SetToolTip(this.chkG6AF, resources.GetString("chkG6AF.ToolTip"));
            this.chkG6AF.UseVisualStyleBackColor = true;
            this.chkG6AF.CheckedChanged += new System.EventHandler(this.chkG6AF_CheckedChanged);
            // 
            // chkG6RF
            // 
            resources.ApplyResources(this.chkG6RF, "chkG6RF");
            this.chkG6RF.FlatAppearance.BorderSize = 0;
            this.chkG6RF.Image = null;
            this.chkG6RF.Name = "chkG6RF";
            this.toolTip1.SetToolTip(this.chkG6RF, resources.GetString("chkG6RF.ToolTip"));
            this.chkG6RF.UseVisualStyleBackColor = true;
            this.chkG6RF.CheckedChanged += new System.EventHandler(this.chkG6RF_CheckedChanged);
            // 
            // chkWFMstereo
            // 
            resources.ApplyResources(this.chkWFMstereo, "chkWFMstereo");
            this.chkWFMstereo.Image = null;
            this.chkWFMstereo.Name = "chkWFMstereo";
            this.toolTip1.SetToolTip(this.chkWFMstereo, resources.GetString("chkWFMstereo.ToolTip"));
            this.chkWFMstereo.UseVisualStyleBackColor = true;
            this.chkWFMstereo.CheckedChanged += new System.EventHandler(this.chkWFMstereo_CheckedChanged);
            // 
            // chkG6ATT_12dB
            // 
            resources.ApplyResources(this.chkG6ATT_12dB, "chkG6ATT_12dB");
            this.chkG6ATT_12dB.FlatAppearance.BorderSize = 0;
            this.chkG6ATT_12dB.Image = null;
            this.chkG6ATT_12dB.Name = "chkG6ATT_12dB";
            this.toolTip1.SetToolTip(this.chkG6ATT_12dB, resources.GetString("chkG6ATT_12dB.ToolTip"));
            this.chkG6ATT_12dB.UseVisualStyleBackColor = true;
            this.chkG6ATT_12dB.CheckedChanged += new System.EventHandler(this.chkG6ATT_12dB_CheckedChanged);
            // 
            // chkG6ATT_18dB
            // 
            resources.ApplyResources(this.chkG6ATT_18dB, "chkG6ATT_18dB");
            this.chkG6ATT_18dB.FlatAppearance.BorderSize = 0;
            this.chkG6ATT_18dB.Image = null;
            this.chkG6ATT_18dB.Name = "chkG6ATT_18dB";
            this.toolTip1.SetToolTip(this.chkG6ATT_18dB, resources.GetString("chkG6ATT_18dB.ToolTip"));
            this.chkG6ATT_18dB.UseVisualStyleBackColor = true;
            this.chkG6ATT_18dB.CheckedChanged += new System.EventHandler(this.chkG6ATT_18dB_CheckedChanged);
            // 
            // contextLOSCMenu
            // 
            this.contextLOSCMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.xtal1ToolStripMenuItem});
            this.contextLOSCMenu.Name = "contextLOSCMenu";
            resources.ApplyResources(this.contextLOSCMenu, "contextLOSCMenu");
            // 
            // xtal1ToolStripMenuItem
            // 
            this.xtal1ToolStripMenuItem.Name = "xtal1ToolStripMenuItem";
            resources.ApplyResources(this.xtal1ToolStripMenuItem, "xtal1ToolStripMenuItem");
            this.xtal1ToolStripMenuItem.Click += new System.EventHandler(this.xtalToolStripMenuItem);
            // 
            // menuStrip1
            // 
            resources.ApplyResources(this.menuStrip1, "menuStrip1");
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.setupToolStripMenuItem,
            this.waveToolStripMenuItem,
            this.equalizerToolStripMenuItem,
            this.cWXToolStripMenuItem,
            this.voiceMessagesToolStripMenuItem,
            this.wizardToolStripMenuItem,
            this.minimalisticToolStripMenuItem,
            this.dXToolStripMenuItem,
            this.xTRVToolStripMenuItem,
            this.debugToolStripMenuItem,
            this.aboutToolStripMenuItem});
            this.menuStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            // 
            // setupToolStripMenuItem
            // 
            this.setupToolStripMenuItem.Name = "setupToolStripMenuItem";
            resources.ApplyResources(this.setupToolStripMenuItem, "setupToolStripMenuItem");
            this.setupToolStripMenuItem.Click += new System.EventHandler(this.menu_setup_Click);
            // 
            // waveToolStripMenuItem
            // 
            this.waveToolStripMenuItem.Name = "waveToolStripMenuItem";
            resources.ApplyResources(this.waveToolStripMenuItem, "waveToolStripMenuItem");
            this.waveToolStripMenuItem.Click += new System.EventHandler(this.menu_wave_Click);
            // 
            // equalizerToolStripMenuItem
            // 
            this.equalizerToolStripMenuItem.Name = "equalizerToolStripMenuItem";
            resources.ApplyResources(this.equalizerToolStripMenuItem, "equalizerToolStripMenuItem");
            this.equalizerToolStripMenuItem.Click += new System.EventHandler(this.mnuEQ_Click);
            // 
            // cWXToolStripMenuItem
            // 
            this.cWXToolStripMenuItem.Name = "cWXToolStripMenuItem";
            resources.ApplyResources(this.cWXToolStripMenuItem, "cWXToolStripMenuItem");
            this.cWXToolStripMenuItem.Click += new System.EventHandler(this.mnuCWX_Click);
            // 
            // voiceMessagesToolStripMenuItem
            // 
            this.voiceMessagesToolStripMenuItem.Name = "voiceMessagesToolStripMenuItem";
            resources.ApplyResources(this.voiceMessagesToolStripMenuItem, "voiceMessagesToolStripMenuItem");
            this.voiceMessagesToolStripMenuItem.Click += new System.EventHandler(this.mnuVoiceMessages_Click);
            // 
            // wizardToolStripMenuItem
            // 
            this.wizardToolStripMenuItem.Name = "wizardToolStripMenuItem";
            resources.ApplyResources(this.wizardToolStripMenuItem, "wizardToolStripMenuItem");
            this.wizardToolStripMenuItem.Click += new System.EventHandler(this.mnuWizard_Click);
            // 
            // minimalisticToolStripMenuItem
            // 
            this.minimalisticToolStripMenuItem.Name = "minimalisticToolStripMenuItem";
            resources.ApplyResources(this.minimalisticToolStripMenuItem, "minimalisticToolStripMenuItem");
            this.minimalisticToolStripMenuItem.Click += new System.EventHandler(this.minimalisticToolStripMenuItem_Click);
            // 
            // dXToolStripMenuItem
            // 
            this.dXToolStripMenuItem.Name = "dXToolStripMenuItem";
            resources.ApplyResources(this.dXToolStripMenuItem, "dXToolStripMenuItem");
            this.dXToolStripMenuItem.Click += new System.EventHandler(this.dXToolStripMenuItem_Click);
            // 
            // xTRVToolStripMenuItem
            // 
            this.xTRVToolStripMenuItem.Name = "xTRVToolStripMenuItem";
            resources.ApplyResources(this.xTRVToolStripMenuItem, "xTRVToolStripMenuItem");
            this.xTRVToolStripMenuItem.Click += new System.EventHandler(this.xTRVToolStripMenuItem_Click);
            // 
            // debugToolStripMenuItem
            // 
            this.debugToolStripMenuItem.Name = "debugToolStripMenuItem";
            resources.ApplyResources(this.debugToolStripMenuItem, "debugToolStripMenuItem");
            this.debugToolStripMenuItem.Click += new System.EventHandler(this.debugToolStripMenuItem_Click);
            // 
            // aboutToolStripMenuItem
            // 
            this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
            resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem");
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.mnuAbout_Click);
            // 
            // mnuSetup
            // 
            this.mnuSetup.Index = -1;
            resources.ApplyResources(this.mnuSetup, "mnuSetup");
            this.mnuSetup.Click += new System.EventHandler(this.menu_setup_Click);
            // 
            // contextNewVFOSmeter
            // 
            this.contextNewVFOSmeter.BackColor = System.Drawing.SystemColors.Control;
            this.contextNewVFOSmeter.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripTextBox1,
            this.toolStripNewVFOSmeterRX,
            this.toolStripTextBox2,
            this.toolStripNewVFOSmeterTX});
            this.contextNewVFOSmeter.Name = "contextNewVFOSmeter";
            resources.ApplyResources(this.contextNewVFOSmeter, "contextNewVFOSmeter");
            // 
            // toolStripTextBox1
            // 
            this.toolStripTextBox1.BackColor = System.Drawing.Color.SteelBlue;
            this.toolStripTextBox1.ForeColor = System.Drawing.Color.White;
            this.toolStripTextBox1.Name = "toolStripTextBox1";
            resources.ApplyResources(this.toolStripTextBox1, "toolStripTextBox1");
            // 
            // toolStripNewVFOSmeterRX
            // 
            this.toolStripNewVFOSmeterRX.Name = "toolStripNewVFOSmeterRX";
            resources.ApplyResources(this.toolStripNewVFOSmeterRX, "toolStripNewVFOSmeterRX");
            this.toolStripNewVFOSmeterRX.SelectedIndexChanged += new System.EventHandler(this.NewVFOAnalogSignalGaugeRXmode);
            // 
            // toolStripTextBox2
            // 
            this.toolStripTextBox2.BackColor = System.Drawing.Color.Red;
            this.toolStripTextBox2.ForeColor = System.Drawing.Color.White;
            this.toolStripTextBox2.Name = "toolStripTextBox2";
            resources.ApplyResources(this.toolStripTextBox2, "toolStripTextBox2");
            // 
            // toolStripNewVFOSmeterTX
            // 
            this.toolStripNewVFOSmeterTX.Name = "toolStripNewVFOSmeterTX";
            resources.ApplyResources(this.toolStripNewVFOSmeterTX, "toolStripNewVFOSmeterTX");
            this.toolStripNewVFOSmeterTX.SelectedIndexChanged += new System.EventHandler(this.NewVFOAnalogSignalGaugeTXMode);
            // 
            // grpG500
            // 
            this.grpG500.Controls.Add(this.btnG500_X1);
            resources.ApplyResources(this.grpG500, "grpG500");
            this.grpG500.Name = "grpG500";
            this.grpG500.TabStop = false;
            // 
            // btnG500_X1
            // 
            resources.ApplyResources(this.btnG500_X1, "btnG500_X1");
            this.btnG500_X1.FlatAppearance.BorderSize = 0;
            this.btnG500_X1.Image = null;
            this.btnG500_X1.Name = "btnG500_X1";
            this.btnG500_X1.UseVisualStyleBackColor = true;
            this.btnG500_X1.Click += new System.EventHandler(this.btnG500_X1_Click);
            // 
            // grpG137
            // 
            this.grpG137.Controls.Add(this.btnG137_X1);
            resources.ApplyResources(this.grpG137, "grpG137");
            this.grpG137.Name = "grpG137";
            this.grpG137.TabStop = false;
            // 
            // btnG137_X1
            // 
            resources.ApplyResources(this.btnG137_X1, "btnG137_X1");
            this.btnG137_X1.FlatAppearance.BorderSize = 0;
            this.btnG137_X1.Image = null;
            this.btnG137_X1.Name = "btnG137_X1";
            this.btnG137_X1.UseVisualStyleBackColor = true;
            this.btnG137_X1.Click += new System.EventHandler(this.btnG137_X1_Click);
            // 
            // grpG40
            // 
            this.grpG40.Controls.Add(this.btnG40_X1);
            resources.ApplyResources(this.grpG40, "grpG40");
            this.grpG40.Name = "grpG40";
            this.grpG40.TabStop = false;
            // 
            // btnG40_X1
            // 
            resources.ApplyResources(this.btnG40_X1, "btnG40_X1");
            this.btnG40_X1.FlatAppearance.BorderSize = 0;
            this.btnG40_X1.Image = null;
            this.btnG40_X1.Name = "btnG40_X1";
            this.btnG40_X1.UseVisualStyleBackColor = true;
            this.btnG40_X1.Click += new System.EventHandler(this.btnG40_X1_Click);
            // 
            // grpModeSpecificPhone
            // 
            resources.ApplyResources(this.grpModeSpecificPhone, "grpModeSpecificPhone");
            this.grpModeSpecificPhone.Controls.Add(this.groupBoxTS1);
            this.grpModeSpecificPhone.Controls.Add(this.udNoiseGate);
            this.grpModeSpecificPhone.Controls.Add(this.udVOX);
            this.grpModeSpecificPhone.Controls.Add(this.ptbMIC);
            this.grpModeSpecificPhone.Controls.Add(this.udCPDR);
            this.grpModeSpecificPhone.Controls.Add(this.ptbCPDR);
            this.grpModeSpecificPhone.Controls.Add(this.udCOMP);
            this.grpModeSpecificPhone.Controls.Add(this.ptbCOMP);
            this.grpModeSpecificPhone.Controls.Add(this.picNoiseGate);
            this.grpModeSpecificPhone.Controls.Add(this.ptbNoiseGate);
            this.grpModeSpecificPhone.Controls.Add(this.picVOX);
            this.grpModeSpecificPhone.Controls.Add(this.ptbVOX);
            this.grpModeSpecificPhone.Controls.Add(this.udMIC);
            this.grpModeSpecificPhone.Controls.Add(this.chkNoiseGate);
            this.grpModeSpecificPhone.Controls.Add(this.chkVOX);
            this.grpModeSpecificPhone.Controls.Add(this.lblMIC);
            this.grpModeSpecificPhone.Controls.Add(this.chkDSPComp);
            this.grpModeSpecificPhone.Controls.Add(this.chkDSPCompander);
            this.grpModeSpecificPhone.Controls.Add(this.comboTXProfile);
            this.grpModeSpecificPhone.Controls.Add(this.lblTransmitProfile);
            this.grpModeSpecificPhone.Controls.Add(this.chkShowTXFilter);
            this.grpModeSpecificPhone.Name = "grpModeSpecificPhone";
            this.grpModeSpecificPhone.TabStop = false;
            // 
            // groupBoxTS1
            // 
            this.groupBoxTS1.Controls.Add(this.btnMsg6);
            this.groupBoxTS1.Controls.Add(this.btnMsg5);
            this.groupBoxTS1.Controls.Add(this.btnMsg4);
            this.groupBoxTS1.Controls.Add(this.btnMsg3);
            this.groupBoxTS1.Controls.Add(this.btnMsg2);
            this.groupBoxTS1.Controls.Add(this.btnMsg1);
            resources.ApplyResources(this.groupBoxTS1, "groupBoxTS1");
            this.groupBoxTS1.Name = "groupBoxTS1";
            this.groupBoxTS1.TabStop = false;
            // 
            // btnMsg6
            // 
            resources.ApplyResources(this.btnMsg6, "btnMsg6");
            this.btnMsg6.FlatAppearance.BorderSize = 0;
            this.btnMsg6.Image = null;
            this.btnMsg6.Name = "btnMsg6";
            this.btnMsg6.UseVisualStyleBackColor = true;
            this.btnMsg6.Click += new System.EventHandler(this.btnMsg6_Click);
            this.btnMsg6.MouseHover += new System.EventHandler(this.btnMsg6_MouseHover);
            // 
            // btnMsg5
            // 
            resources.ApplyResources(this.btnMsg5, "btnMsg5");
            this.btnMsg5.FlatAppearance.BorderSize = 0;
            this.btnMsg5.Image = null;
            this.btnMsg5.Name = "btnMsg5";
            this.btnMsg5.UseVisualStyleBackColor = true;
            this.btnMsg5.Click += new System.EventHandler(this.btnMsg5_Click);
            this.btnMsg5.MouseHover += new System.EventHandler(this.btnMsg5_MouseHover);
            // 
            // btnMsg4
            // 
            resources.ApplyResources(this.btnMsg4, "btnMsg4");
            this.btnMsg4.FlatAppearance.BorderSize = 0;
            this.btnMsg4.Image = null;
            this.btnMsg4.Name = "btnMsg4";
            this.btnMsg4.UseVisualStyleBackColor = true;
            this.btnMsg4.Click += new System.EventHandler(this.btnMsg4_Click);
            this.btnMsg4.MouseHover += new System.EventHandler(this.btnMsg4_MousHover);
            // 
            // btnMsg3
            // 
            resources.ApplyResources(this.btnMsg3, "btnMsg3");
            this.btnMsg3.FlatAppearance.BorderSize = 0;
            this.btnMsg3.Image = null;
            this.btnMsg3.Name = "btnMsg3";
            this.btnMsg3.UseVisualStyleBackColor = true;
            this.btnMsg3.Click += new System.EventHandler(this.btnMsg3_Click);
            this.btnMsg3.MouseHover += new System.EventHandler(this.btnMsg3_MouseHover);
            // 
            // btnMsg2
            // 
            resources.ApplyResources(this.btnMsg2, "btnMsg2");
            this.btnMsg2.FlatAppearance.BorderSize = 0;
            this.btnMsg2.Image = null;
            this.btnMsg2.Name = "btnMsg2";
            this.btnMsg2.UseVisualStyleBackColor = true;
            this.btnMsg2.Click += new System.EventHandler(this.btnMsg2_Click);
            this.btnMsg2.MouseHover += new System.EventHandler(this.btnMsg2_MouseHover);
            // 
            // btnMsg1
            // 
            resources.ApplyResources(this.btnMsg1, "btnMsg1");
            this.btnMsg1.FlatAppearance.BorderSize = 0;
            this.btnMsg1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.btnMsg1.Image = null;
            this.btnMsg1.Name = "btnMsg1";
            this.btnMsg1.UseVisualStyleBackColor = false;
            this.btnMsg1.Click += new System.EventHandler(this.btnMsg1_Click);
            this.btnMsg1.MouseHover += new System.EventHandler(this.btnMsg1_MouseHover);
            // 
            // udNoiseGate
            // 
            this.udNoiseGate.BackColor = System.Drawing.SystemColors.Window;
            this.udNoiseGate.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udNoiseGate.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udNoiseGate, "udNoiseGate");
            this.udNoiseGate.Maximum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udNoiseGate.Minimum = new decimal(new int[] {
            160,
            0,
            0,
            -2147483648});
            this.udNoiseGate.Name = "udNoiseGate";
            this.udNoiseGate.Value = new decimal(new int[] {
            40,
            0,
            0,
            -2147483648});
            this.udNoiseGate.ValueChanged += new System.EventHandler(this.udNoiseGate_ValueChanged);
            // 
            // udVOX
            // 
            this.udVOX.BackColor = System.Drawing.SystemColors.Window;
            this.udVOX.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udVOX.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udVOX, "udVOX");
            this.udVOX.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.udVOX.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udVOX.Name = "udVOX";
            this.udVOX.Value = new decimal(new int[] {
            200,
            0,
            0,
            0});
            this.udVOX.ValueChanged += new System.EventHandler(this.udVOX_ValueChanged);
            // 
            // ptbMIC
            // 
            resources.ApplyResources(this.ptbMIC, "ptbMIC");
            this.ptbMIC.HeadImage = null;
            this.ptbMIC.LargeChange = 1;
            this.ptbMIC.Maximum = 70;
            this.ptbMIC.Minimum = 0;
            this.ptbMIC.Name = "ptbMIC";
            this.ptbMIC.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbMIC.SmallChange = 1;
            this.ptbMIC.TabStop = false;
            this.ptbMIC.Value = 35;
            this.ptbMIC.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbMIC_OnWheel);
            this.ptbMIC.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbMIC_Scroll);
            // 
            // udCPDR
            // 
            this.udCPDR.BackColor = System.Drawing.SystemColors.Window;
            this.udCPDR.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udCPDR.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udCPDR, "udCPDR");
            this.udCPDR.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
            this.udCPDR.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udCPDR.Name = "udCPDR";
            this.udCPDR.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
            this.udCPDR.ValueChanged += new System.EventHandler(this.udCPDR_ValueChanged);
            // 
            // ptbCPDR
            // 
            resources.ApplyResources(this.ptbCPDR, "ptbCPDR");
            this.ptbCPDR.HeadImage = null;
            this.ptbCPDR.LargeChange = 1;
            this.ptbCPDR.Maximum = 10;
            this.ptbCPDR.Minimum = 0;
            this.ptbCPDR.Name = "ptbCPDR";
            this.ptbCPDR.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbCPDR.SmallChange = 1;
            this.ptbCPDR.TabStop = false;
            this.ptbCPDR.Value = 3;
            this.ptbCPDR.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbCPDR_OnWheel);
            this.ptbCPDR.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbCPDR_Scroll);
            // 
            // udCOMP
            // 
            this.udCOMP.BackColor = System.Drawing.SystemColors.Window;
            this.udCOMP.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udCOMP.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udCOMP, "udCOMP");
            this.udCOMP.Maximum = new decimal(new int[] {
            20,
            0,
            0,
            0});
            this.udCOMP.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udCOMP.Name = "udCOMP";
            this.udCOMP.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
            this.udCOMP.ValueChanged += new System.EventHandler(this.udCOMP_ValueChanged);
            // 
            // ptbCOMP
            // 
            resources.ApplyResources(this.ptbCOMP, "ptbCOMP");
            this.ptbCOMP.HeadImage = null;
            this.ptbCOMP.LargeChange = 1;
            this.ptbCOMP.Maximum = 20;
            this.ptbCOMP.Minimum = 0;
            this.ptbCOMP.Name = "ptbCOMP";
            this.ptbCOMP.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbCOMP.SmallChange = 1;
            this.ptbCOMP.TabStop = false;
            this.ptbCOMP.Value = 3;
            this.ptbCOMP.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbCOMP_OnWheel);
            this.ptbCOMP.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbCOMP_Scroll);
            // 
            // picNoiseGate
            // 
            this.picNoiseGate.BackColor = System.Drawing.SystemColors.ControlText;
            resources.ApplyResources(this.picNoiseGate, "picNoiseGate");
            this.picNoiseGate.Name = "picNoiseGate";
            this.picNoiseGate.TabStop = false;
            this.picNoiseGate.Paint += new System.Windows.Forms.PaintEventHandler(this.picNoiseGate_Paint);
            // 
            // ptbNoiseGate
            // 
            resources.ApplyResources(this.ptbNoiseGate, "ptbNoiseGate");
            this.ptbNoiseGate.HeadImage = null;
            this.ptbNoiseGate.LargeChange = 1;
            this.ptbNoiseGate.Maximum = 0;
            this.ptbNoiseGate.Minimum = -160;
            this.ptbNoiseGate.Name = "ptbNoiseGate";
            this.ptbNoiseGate.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbNoiseGate.SmallChange = 1;
            this.ptbNoiseGate.TabStop = false;
            this.ptbNoiseGate.Value = -40;
            this.ptbNoiseGate.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbNoiseGate_OnWheel);
            this.ptbNoiseGate.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbNoiseGate_Scroll);
            // 
            // picVOX
            // 
            this.picVOX.BackColor = System.Drawing.SystemColors.ControlText;
            resources.ApplyResources(this.picVOX, "picVOX");
            this.picVOX.Name = "picVOX";
            this.picVOX.TabStop = false;
            this.picVOX.Paint += new System.Windows.Forms.PaintEventHandler(this.picVOX_Paint);
            // 
            // ptbVOX
            // 
            resources.ApplyResources(this.ptbVOX, "ptbVOX");
            this.ptbVOX.HeadImage = null;
            this.ptbVOX.LargeChange = 1;
            this.ptbVOX.Maximum = 1000;
            this.ptbVOX.Minimum = 0;
            this.ptbVOX.Name = "ptbVOX";
            this.ptbVOX.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbVOX.SmallChange = 1;
            this.ptbVOX.TabStop = false;
            this.ptbVOX.Value = 200;
            this.ptbVOX.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbVOX_OnWheel);
            this.ptbVOX.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbVOX_Scroll);
            // 
            // udMIC
            // 
            this.udMIC.BackColor = System.Drawing.SystemColors.Window;
            this.udMIC.ForeColor = System.Drawing.SystemColors.ControlText;
            this.udMIC.Increment = new decimal(new int[] {
            1,
            0,
            0,
            0});
            resources.ApplyResources(this.udMIC, "udMIC");
            this.udMIC.Maximum = new decimal(new int[] {
            70,
            0,
            0,
            0});
            this.udMIC.Minimum = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.udMIC.Name = "udMIC";
            this.udMIC.Value = new decimal(new int[] {
            35,
            0,
            0,
            0});
            this.udMIC.ValueChanged += new System.EventHandler(this.udMIC_ValueChanged);
            this.udMIC.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.udMIC.LostFocus += new System.EventHandler(this.udMIC_LostFocus);
            // 
            // lblMIC
            // 
            this.lblMIC.Image = null;
            resources.ApplyResources(this.lblMIC, "lblMIC");
            this.lblMIC.Name = "lblMIC";
            // 
            // lblTransmitProfile
            // 
            this.lblTransmitProfile.Image = null;
            resources.ApplyResources(this.lblTransmitProfile, "lblTransmitProfile");
            this.lblTransmitProfile.Name = "lblTransmitProfile";
            // 
            // grpVFOA
            // 
            this.grpVFOA.BackColor = System.Drawing.SystemColors.Control;
            resources.ApplyResources(this.grpVFOA, "grpVFOA");
            this.grpVFOA.Controls.Add(this.panelVFOAHover);
            this.grpVFOA.Controls.Add(this.txtVFOALSD);
            this.grpVFOA.Controls.Add(this.txtVFOAMSD);
            this.grpVFOA.Controls.Add(this.txtVFOABand);
            this.grpVFOA.Controls.Add(this.txtVFOAFreq);
            this.grpVFOA.Controls.Add(this.btnHidden);
            this.grpVFOA.ForeColor = System.Drawing.Color.Black;
            this.grpVFOA.Name = "grpVFOA";
            this.grpVFOA.TabStop = false;
            // 
            // panelVFOAHover
            // 
            resources.ApplyResources(this.panelVFOAHover, "panelVFOAHover");
            this.panelVFOAHover.BackColor = System.Drawing.Color.Black;
            this.panelVFOAHover.Name = "panelVFOAHover";
            this.panelVFOAHover.Paint += new System.Windows.Forms.PaintEventHandler(this.panelVFOAHover_Paint);
            this.panelVFOAHover.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelVFOAHover_MouseMove);
            // 
            // txtVFOALSD
            // 
            this.txtVFOALSD.BackColor = System.Drawing.Color.Black;
            this.txtVFOALSD.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtVFOALSD.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtVFOALSD, "txtVFOALSD");
            this.txtVFOALSD.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOALSD.Name = "txtVFOALSD";
            this.txtVFOALSD.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOALSD_MouseMove);
            this.txtVFOALSD.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtVFOALSD_MouseDown);
            // 
            // txtVFOAMSD
            // 
            this.txtVFOAMSD.BackColor = System.Drawing.Color.Black;
            this.txtVFOAMSD.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtVFOAMSD, "txtVFOAMSD");
            this.txtVFOAMSD.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOAMSD.Name = "txtVFOAMSD";
            this.txtVFOAMSD.MouseLeave += new System.EventHandler(this.txtVFOAMSD_MouseLeave);
            this.txtVFOAMSD.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOAMSD_MouseMove);
            this.txtVFOAMSD.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtVFOAMSD_MouseDown);
            // 
            // txtVFOABand
            // 
            this.txtVFOABand.BackColor = System.Drawing.Color.Black;
            resources.ApplyResources(this.txtVFOABand, "txtVFOABand");
            this.txtVFOABand.ForeColor = System.Drawing.Color.Green;
            this.txtVFOABand.Name = "txtVFOABand";
            this.txtVFOABand.GotFocus += new System.EventHandler(this.HideFocus);
            // 
            // txtVFOAFreq
            // 
            this.txtVFOAFreq.BackColor = System.Drawing.Color.Black;
            this.txtVFOAFreq.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtVFOAFreq, "txtVFOAFreq");
            this.txtVFOAFreq.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOAFreq.Name = "txtVFOAFreq";
            this.txtVFOAFreq.MouseLeave += new System.EventHandler(this.txtVFOAFreq_MouseLeave);
            this.txtVFOAFreq.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOAFreq_MouseMove);
            this.txtVFOAFreq.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtVFOAFreq_KeyPress);
            this.txtVFOAFreq.LostFocus += new System.EventHandler(this.txtVFOAFreq_LostFocus);
            // 
            // btnHidden
            // 
            this.btnHidden.Image = null;
            resources.ApplyResources(this.btnHidden, "btnHidden");
            this.btnHidden.Name = "btnHidden";
            this.btnHidden.UseVisualStyleBackColor = true;
            // 
            // grpVFOnew
            // 
            resources.ApplyResources(this.grpVFOnew, "grpVFOnew");
            this.grpVFOnew.Controls.Add(this.picAGauge);
            this.grpVFOnew.Controls.Add(this.lblATTNewVFO);
            this.grpVFOnew.Controls.Add(this.lblRFNewVFO);
            this.grpVFOnew.Controls.Add(this.lblAFNewVFO);
            this.grpVFOnew.Controls.Add(this.lblRX2);
            this.grpVFOnew.Controls.Add(this.txtNewVFOBand);
            this.grpVFOnew.Controls.Add(this.lblVFOBTX);
            this.grpVFOnew.Controls.Add(this.lblVFOATX);
            this.grpVFOnew.Controls.Add(this.lblLOSC);
            this.grpVFOnew.Controls.Add(this.lblVFOB);
            this.grpVFOnew.Controls.Add(this.lblVFOA);
            this.grpVFOnew.Controls.Add(this.panelLOSCnewHover);
            this.grpVFOnew.Controls.Add(this.panelVFOBnewHover);
            this.grpVFOnew.Controls.Add(this.panelVFOAnewHover);
            this.grpVFOnew.Controls.Add(this.txtLOSCnew);
            this.grpVFOnew.Controls.Add(this.txtVFOBnew);
            this.grpVFOnew.Controls.Add(this.txtVFOAnew);
            this.grpVFOnew.Controls.Add(this.sMeterDigital1);
            this.grpVFOnew.Controls.Add(this.sMeterDigital2);
            this.grpVFOnew.Name = "grpVFOnew";
            this.grpVFOnew.TabStop = false;
            // 
            // picAGauge
            // 
            this.picAGauge.BackColor = System.Drawing.Color.Black;
            resources.ApplyResources(this.picAGauge, "picAGauge");
            this.picAGauge.ContextMenuStrip = this.contextNewVFOSmeter;
            this.picAGauge.Name = "picAGauge";
            this.picAGauge.TabStop = false;
            this.picAGauge.Paint += new System.Windows.Forms.PaintEventHandler(this.picAGauge_Paint);
            // 
            // lblATTNewVFO
            // 
            resources.ApplyResources(this.lblATTNewVFO, "lblATTNewVFO");
            this.lblATTNewVFO.BackColor = System.Drawing.Color.Black;
            this.lblATTNewVFO.ForeColor = System.Drawing.Color.Olive;
            this.lblATTNewVFO.Image = null;
            this.lblATTNewVFO.Name = "lblATTNewVFO";
            this.lblATTNewVFO.Click += new System.EventHandler(this.lblATTNewVFO_Click);
            // 
            // lblRFNewVFO
            // 
            resources.ApplyResources(this.lblRFNewVFO, "lblRFNewVFO");
            this.lblRFNewVFO.BackColor = System.Drawing.Color.Black;
            this.lblRFNewVFO.ForeColor = System.Drawing.Color.Olive;
            this.lblRFNewVFO.Image = null;
            this.lblRFNewVFO.Name = "lblRFNewVFO";
            this.lblRFNewVFO.Click += new System.EventHandler(this.lblRFNewVFO_Click);
            // 
            // lblAFNewVFO
            // 
            resources.ApplyResources(this.lblAFNewVFO, "lblAFNewVFO");
            this.lblAFNewVFO.BackColor = System.Drawing.Color.Black;
            this.lblAFNewVFO.ForeColor = System.Drawing.Color.Olive;
            this.lblAFNewVFO.Image = null;
            this.lblAFNewVFO.Name = "lblAFNewVFO";
            this.lblAFNewVFO.Click += new System.EventHandler(this.lblAFNewVFO_Click);
            // 
            // txtNewVFOBand
            // 
            this.txtNewVFOBand.BackColor = System.Drawing.Color.Black;
            this.txtNewVFOBand.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtNewVFOBand.Cursor = System.Windows.Forms.Cursors.IBeam;
            resources.ApplyResources(this.txtNewVFOBand, "txtNewVFOBand");
            this.txtNewVFOBand.ForeColor = System.Drawing.Color.Green;
            this.txtNewVFOBand.Name = "txtNewVFOBand";
            // 
            // lblVFOBTX
            // 
            resources.ApplyResources(this.lblVFOBTX, "lblVFOBTX");
            this.lblVFOBTX.BackColor = System.Drawing.Color.Black;
            this.lblVFOBTX.ForeColor = System.Drawing.Color.Olive;
            this.lblVFOBTX.Image = null;
            this.lblVFOBTX.Name = "lblVFOBTX";
            // 
            // lblVFOATX
            // 
            resources.ApplyResources(this.lblVFOATX, "lblVFOATX");
            this.lblVFOATX.BackColor = System.Drawing.Color.Black;
            this.lblVFOATX.ForeColor = System.Drawing.Color.Olive;
            this.lblVFOATX.Image = null;
            this.lblVFOATX.Name = "lblVFOATX";
            // 
            // lblLOSC
            // 
            resources.ApplyResources(this.lblLOSC, "lblLOSC");
            this.lblLOSC.BackColor = System.Drawing.Color.Black;
            this.lblLOSC.ForeColor = System.Drawing.Color.Olive;
            this.lblLOSC.Image = null;
            this.lblLOSC.Name = "lblLOSC";
            // 
            // lblVFOB
            // 
            resources.ApplyResources(this.lblVFOB, "lblVFOB");
            this.lblVFOB.BackColor = System.Drawing.Color.Black;
            this.lblVFOB.ForeColor = System.Drawing.Color.Olive;
            this.lblVFOB.Image = null;
            this.lblVFOB.Name = "lblVFOB";
            // 
            // lblVFOA
            // 
            resources.ApplyResources(this.lblVFOA, "lblVFOA");
            this.lblVFOA.BackColor = System.Drawing.Color.Black;
            this.lblVFOA.ForeColor = System.Drawing.Color.Olive;
            this.lblVFOA.Image = null;
            this.lblVFOA.Name = "lblVFOA";
            // 
            // panelLOSCnewHover
            // 
            resources.ApplyResources(this.panelLOSCnewHover, "panelLOSCnewHover");
            this.panelLOSCnewHover.BackColor = System.Drawing.Color.Black;
            this.panelLOSCnewHover.Name = "panelLOSCnewHover";
            this.panelLOSCnewHover.Paint += new System.Windows.Forms.PaintEventHandler(this.panelLOSCnew_Paint);
            this.panelLOSCnewHover.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelLOSCnewHover_MouseMove);
            // 
            // panelVFOBnewHover
            // 
            resources.ApplyResources(this.panelVFOBnewHover, "panelVFOBnewHover");
            this.panelVFOBnewHover.BackColor = System.Drawing.Color.Black;
            this.panelVFOBnewHover.Name = "panelVFOBnewHover";
            this.panelVFOBnewHover.Paint += new System.Windows.Forms.PaintEventHandler(this.panelVFOBnewHover_Paint);
            this.panelVFOBnewHover.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelVFOBnewHover_MouseMove);
            // 
            // panelVFOAnewHover
            // 
            resources.ApplyResources(this.panelVFOAnewHover, "panelVFOAnewHover");
            this.panelVFOAnewHover.BackColor = System.Drawing.Color.Black;
            this.panelVFOAnewHover.Name = "panelVFOAnewHover";
            this.panelVFOAnewHover.Paint += new System.Windows.Forms.PaintEventHandler(this.panelVFOAnewHover_Paint);
            this.panelVFOAnewHover.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelVFOAnewHover_MouseMove);
            // 
            // txtLOSCnew
            // 
            this.txtLOSCnew.BackColor = System.Drawing.Color.Black;
            this.txtLOSCnew.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtLOSCnew.ContextMenuStrip = this.contextLOSCMenu;
            resources.ApplyResources(this.txtLOSCnew, "txtLOSCnew");
            this.txtLOSCnew.ForeColor = System.Drawing.Color.Olive;
            this.txtLOSCnew.Name = "txtLOSCnew";
            this.txtLOSCnew.MouseLeave += new System.EventHandler(this.txtLOSCnew_MouseLeave);
            this.txtLOSCnew.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtLOSCnew_MouseMove);
            this.txtLOSCnew.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtLOSCnew_MouseDown);
            this.txtLOSCnew.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtLOSCnew_KeyPress);
            this.txtLOSCnew.LostFocus += new System.EventHandler(this.txtLOSCnew_LostFocus);
            // 
            // txtVFOBnew
            // 
            this.txtVFOBnew.BackColor = System.Drawing.Color.Black;
            this.txtVFOBnew.BorderStyle = System.Windows.Forms.BorderStyle.None;
            resources.ApplyResources(this.txtVFOBnew, "txtVFOBnew");
            this.txtVFOBnew.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOBnew.Name = "txtVFOBnew";
            this.txtVFOBnew.MouseLeave += new System.EventHandler(this.txtVFOBnew_MouseLeave);
            this.txtVFOBnew.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOBnew_MouseMove);
            this.txtVFOBnew.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtVFOBnew_MouseDown);
            this.txtVFOBnew.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtVFOBnew_KeyPress);
            this.txtVFOBnew.LostFocus += new System.EventHandler(this.txtVFOBnew_LostFocus);
            // 
            // txtVFOAnew
            // 
            this.txtVFOAnew.BackColor = System.Drawing.Color.Black;
            this.txtVFOAnew.BorderStyle = System.Windows.Forms.BorderStyle.None;
            resources.ApplyResources(this.txtVFOAnew, "txtVFOAnew");
            this.txtVFOAnew.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOAnew.Name = "txtVFOAnew";
            this.txtVFOAnew.MouseLeave += new System.EventHandler(this.txtVFOAnew_MouseLeave);
            this.txtVFOAnew.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOAnew_MouseMove);
            this.txtVFOAnew.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtVFOAnew_MouseDown);
            this.txtVFOAnew.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtVFOAnew_KeyPress);
            this.txtVFOAnew.LostFocus += new System.EventHandler(this.txtVFOAnew_LostFocus);
            // 
            // sMeterDigital1
            // 
            this.sMeterDigital1.BackColor = System.Drawing.Color.Black;
            this.sMeterDigital1.ContextMenuStrip = this.contextNewVFOSmeter;
            resources.ApplyResources(this.sMeterDigital1, "sMeterDigital1");
            this.sMeterDigital1.MaximumSize = new System.Drawing.Size(240, 133);
            this.sMeterDigital1.MinimumSize = new System.Drawing.Size(240, 133);
            this.sMeterDigital1.Name = "sMeterDigital1";
            this.sMeterDigital1.SignalMaxValue = 180F;
            this.sMeterDigital1.SignalMinValue = 0F;
            this.sMeterDigital1.SignalValue = 0F;
            this.sMeterDigital1.swrMaxValue = 180F;
            this.sMeterDigital1.swrMinValue = 0F;
            this.sMeterDigital1.swrValue = 0F;
            // 
            // sMeterDigital2
            // 
            this.sMeterDigital2.BackColor = System.Drawing.Color.Black;
            this.sMeterDigital2.Brightness = 255;
            this.sMeterDigital2.ContextMenuStrip = this.contextNewVFOSmeter;
            resources.ApplyResources(this.sMeterDigital2, "sMeterDigital2");
            this.sMeterDigital2.MaximumSize = new System.Drawing.Size(240, 133);
            this.sMeterDigital2.MinimumSize = new System.Drawing.Size(240, 133);
            this.sMeterDigital2.Name = "sMeterDigital2";
            this.sMeterDigital2.SignalMaxValue = 224F;
            this.sMeterDigital2.SignalMinValue = 0F;
            this.sMeterDigital2.SignalValue = 0F;
            this.sMeterDigital2.swrMaxValue = 180F;
            this.sMeterDigital2.swrMinValue = 0F;
            this.sMeterDigital2.swrValue = 0F;
            // 
            // lblNotchShift
            // 
            resources.ApplyResources(this.lblNotchShift, "lblNotchShift");
            this.lblNotchShift.Image = null;
            this.lblNotchShift.Name = "lblNotchShift";
            // 
            // lblWidth
            // 
            resources.ApplyResources(this.lblWidth, "lblWidth");
            this.lblWidth.Image = null;
            this.lblWidth.Name = "lblWidth";
            // 
            // grpSoundControls
            // 
            resources.ApplyResources(this.grpSoundControls, "grpSoundControls");
            this.grpSoundControls.Controls.Add(this.lblAF);
            this.grpSoundControls.Controls.Add(this.lblPWRValue);
            this.grpSoundControls.Controls.Add(this.lblRFValue);
            this.grpSoundControls.Controls.Add(this.comboAGCSubRX);
            this.grpSoundControls.Controls.Add(this.picSQLSubRX);
            this.grpSoundControls.Controls.Add(this.ptbPWR);
            this.grpSoundControls.Controls.Add(this.comboAGCMainRX);
            this.grpSoundControls.Controls.Add(this.ptbRF);
            this.grpSoundControls.Controls.Add(this.ptbAF);
            this.grpSoundControls.Controls.Add(this.lblRF);
            this.grpSoundControls.Controls.Add(this.lblPWR);
            this.grpSoundControls.Controls.Add(this.lblAGC);
            this.grpSoundControls.Controls.Add(this.lblAFValue);
            this.grpSoundControls.Controls.Add(this.udSQLMainRX);
            this.grpSoundControls.Controls.Add(this.picSQLMainRX);
            this.grpSoundControls.Controls.Add(this.ptbSQLSubRX);
            this.grpSoundControls.Controls.Add(this.chkSQLSubRX);
            this.grpSoundControls.Controls.Add(this.udSQLSubRX);
            this.grpSoundControls.Controls.Add(this.ptbSQLMainRX);
            this.grpSoundControls.Controls.Add(this.chkSQLMainRX);
            this.grpSoundControls.Name = "grpSoundControls";
            this.grpSoundControls.TabStop = false;
            // 
            // lblAF
            // 
            resources.ApplyResources(this.lblAF, "lblAF");
            this.lblAF.Image = null;
            this.lblAF.Name = "lblAF";
            // 
            // lblPWRValue
            // 
            resources.ApplyResources(this.lblPWRValue, "lblPWRValue");
            this.lblPWRValue.BackColor = System.Drawing.Color.Transparent;
            this.lblPWRValue.ForeColor = System.Drawing.Color.Black;
            this.lblPWRValue.Image = null;
            this.lblPWRValue.Name = "lblPWRValue";
            this.lblPWRValue.MouseLeave += new System.EventHandler(this.lblPWRValue_MouseLeave);
            this.lblPWRValue.MouseHover += new System.EventHandler(this.lblPWRValue_MouseHover);
            // 
            // lblRFValue
            // 
            resources.ApplyResources(this.lblRFValue, "lblRFValue");
            this.lblRFValue.BackColor = System.Drawing.Color.Transparent;
            this.lblRFValue.ForeColor = System.Drawing.Color.Black;
            this.lblRFValue.Image = null;
            this.lblRFValue.Name = "lblRFValue";
            this.lblRFValue.MouseLeave += new System.EventHandler(this.lblRFValue_MouseLeave);
            this.lblRFValue.MouseHover += new System.EventHandler(this.lblRFValue_MouseHover);
            // 
            // picSQLSubRX
            // 
            this.picSQLSubRX.BackColor = System.Drawing.SystemColors.ControlText;
            resources.ApplyResources(this.picSQLSubRX, "picSQLSubRX");
            this.picSQLSubRX.Name = "picSQLSubRX";
            this.picSQLSubRX.TabStop = false;
            this.picSQLSubRX.Paint += new System.Windows.Forms.PaintEventHandler(this.picSQLSubRX_Paint);
            // 
            // lblRF
            // 
            resources.ApplyResources(this.lblRF, "lblRF");
            this.lblRF.Image = null;
            this.lblRF.Name = "lblRF";
            // 
            // lblPWR
            // 
            resources.ApplyResources(this.lblPWR, "lblPWR");
            this.lblPWR.Image = null;
            this.lblPWR.Name = "lblPWR";
            // 
            // lblAGC
            // 
            this.lblAGC.Image = null;
            resources.ApplyResources(this.lblAGC, "lblAGC");
            this.lblAGC.Name = "lblAGC";
            // 
            // lblAFValue
            // 
            resources.ApplyResources(this.lblAFValue, "lblAFValue");
            this.lblAFValue.BackColor = System.Drawing.Color.Transparent;
            this.lblAFValue.ForeColor = System.Drawing.Color.Black;
            this.lblAFValue.Image = null;
            this.lblAFValue.Name = "lblAFValue";
            this.lblAFValue.MouseLeave += new System.EventHandler(this.lblAFValue_MouseLeave);
            this.lblAFValue.MouseHover += new System.EventHandler(this.lblAFValue_MouseHover);
            // 
            // picSQLMainRX
            // 
            this.picSQLMainRX.BackColor = System.Drawing.SystemColors.ControlText;
            resources.ApplyResources(this.picSQLMainRX, "picSQLMainRX");
            this.picSQLMainRX.Name = "picSQLMainRX";
            this.picSQLMainRX.TabStop = false;
            this.picSQLMainRX.Paint += new System.Windows.Forms.PaintEventHandler(this.picSQL_Paint);
            // 
            // grpModeSpecificCW
            // 
            resources.ApplyResources(this.grpModeSpecificCW, "grpModeSpecificCW");
            this.grpModeSpecificCW.Controls.Add(this.grpCWX);
            this.grpModeSpecificCW.Controls.Add(this.chkShowTXCWFreq);
            this.grpModeSpecificCW.Controls.Add(this.chkCWVAC);
            this.grpModeSpecificCW.Controls.Add(this.grpCWPitch);
            this.grpModeSpecificCW.Controls.Add(this.chkCWIambic);
            this.grpModeSpecificCW.Controls.Add(this.ptbCWSpeed);
            this.grpModeSpecificCW.Controls.Add(this.chkBreakIn);
            this.grpModeSpecificCW.Controls.Add(this.lblCWSpeed);
            this.grpModeSpecificCW.Controls.Add(this.udCWSpeed);
            this.grpModeSpecificCW.Name = "grpModeSpecificCW";
            this.grpModeSpecificCW.TabStop = false;
            // 
            // grpCWX
            // 
            this.grpCWX.Controls.Add(this.btnCWX4);
            this.grpCWX.Controls.Add(this.btnCWX5);
            this.grpCWX.Controls.Add(this.btnCWX1);
            this.grpCWX.Controls.Add(this.btnCWX6);
            this.grpCWX.Controls.Add(this.btnCWX2);
            this.grpCWX.Controls.Add(this.btnCWX3);
            resources.ApplyResources(this.grpCWX, "grpCWX");
            this.grpCWX.Name = "grpCWX";
            this.grpCWX.TabStop = false;
            // 
            // btnCWX4
            // 
            resources.ApplyResources(this.btnCWX4, "btnCWX4");
            this.btnCWX4.FlatAppearance.BorderSize = 0;
            this.btnCWX4.Image = null;
            this.btnCWX4.Name = "btnCWX4";
            this.btnCWX4.UseVisualStyleBackColor = true;
            this.btnCWX4.Click += new System.EventHandler(this.btnCWX4_Click);
            this.btnCWX4.MouseHover += new System.EventHandler(this.btnCWX4_MouseMove);
            // 
            // btnCWX5
            // 
            resources.ApplyResources(this.btnCWX5, "btnCWX5");
            this.btnCWX5.FlatAppearance.BorderSize = 0;
            this.btnCWX5.Image = null;
            this.btnCWX5.Name = "btnCWX5";
            this.btnCWX5.UseVisualStyleBackColor = true;
            this.btnCWX5.Click += new System.EventHandler(this.btnCWX5_Click);
            this.btnCWX5.MouseHover += new System.EventHandler(this.btnCWX5_MouseMove);
            // 
            // btnCWX1
            // 
            resources.ApplyResources(this.btnCWX1, "btnCWX1");
            this.btnCWX1.FlatAppearance.BorderSize = 0;
            this.btnCWX1.Image = null;
            this.btnCWX1.Name = "btnCWX1";
            this.btnCWX1.UseVisualStyleBackColor = true;
            this.btnCWX1.Click += new System.EventHandler(this.btnCWX1_Click);
            this.btnCWX1.MouseHover += new System.EventHandler(this.btnCWX1_MouseMove);
            // 
            // btnCWX6
            // 
            resources.ApplyResources(this.btnCWX6, "btnCWX6");
            this.btnCWX6.FlatAppearance.BorderSize = 0;
            this.btnCWX6.Image = null;
            this.btnCWX6.Name = "btnCWX6";
            this.btnCWX6.UseVisualStyleBackColor = true;
            this.btnCWX6.Click += new System.EventHandler(this.btnCWX6_Click);
            this.btnCWX6.MouseHover += new System.EventHandler(this.btnCWX6_MouseMove);
            // 
            // btnCWX2
            // 
            resources.ApplyResources(this.btnCWX2, "btnCWX2");
            this.btnCWX2.FlatAppearance.BorderSize = 0;
            this.btnCWX2.Image = null;
            this.btnCWX2.Name = "btnCWX2";
            this.btnCWX2.UseVisualStyleBackColor = true;
            this.btnCWX2.Click += new System.EventHandler(this.btnCWX2_Click);
            this.btnCWX2.MouseHover += new System.EventHandler(this.btnCWX2_MouseMove);
            // 
            // btnCWX3
            // 
            resources.ApplyResources(this.btnCWX3, "btnCWX3");
            this.btnCWX3.FlatAppearance.BorderSize = 0;
            this.btnCWX3.Image = null;
            this.btnCWX3.Name = "btnCWX3";
            this.btnCWX3.UseVisualStyleBackColor = true;
            this.btnCWX3.Click += new System.EventHandler(this.btnCWX3_Click);
            this.btnCWX3.MouseHover += new System.EventHandler(this.btnCWX3_MouseMove);
            // 
            // grpCWPitch
            // 
            this.grpCWPitch.Controls.Add(this.lblCWPitchFreq);
            this.grpCWPitch.Controls.Add(this.udCWPitch);
            resources.ApplyResources(this.grpCWPitch, "grpCWPitch");
            this.grpCWPitch.Name = "grpCWPitch";
            this.grpCWPitch.TabStop = false;
            // 
            // lblCWPitchFreq
            // 
            this.lblCWPitchFreq.Image = null;
            resources.ApplyResources(this.lblCWPitchFreq, "lblCWPitchFreq");
            this.lblCWPitchFreq.Name = "lblCWPitchFreq";
            // 
            // ptbCWSpeed
            // 
            resources.ApplyResources(this.ptbCWSpeed, "ptbCWSpeed");
            this.ptbCWSpeed.HeadImage = null;
            this.ptbCWSpeed.LargeChange = 5;
            this.ptbCWSpeed.Maximum = 60;
            this.ptbCWSpeed.Minimum = 7;
            this.ptbCWSpeed.Name = "ptbCWSpeed";
            this.ptbCWSpeed.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbCWSpeed.SmallChange = 1;
            this.ptbCWSpeed.TabStop = false;
            this.ptbCWSpeed.Value = 7;
            this.ptbCWSpeed.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbCWSpeed_Wheel);
            this.ptbCWSpeed.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbCWSpeed_Scroll);
            // 
            // lblCWSpeed
            // 
            this.lblCWSpeed.Image = null;
            resources.ApplyResources(this.lblCWSpeed, "lblCWSpeed");
            this.lblCWSpeed.Name = "lblCWSpeed";
            // 
            // grpVFOB
            // 
            this.grpVFOB.BackColor = System.Drawing.SystemColors.Control;
            resources.ApplyResources(this.grpVFOB, "grpVFOB");
            this.grpVFOB.Controls.Add(this.txtVFOBLSD);
            this.grpVFOB.Controls.Add(this.panelVFOBHover);
            this.grpVFOB.Controls.Add(this.txtVFOBMSD);
            this.grpVFOB.Controls.Add(this.lblVFOBLSD);
            this.grpVFOB.Controls.Add(this.txtVFOBBand);
            this.grpVFOB.Controls.Add(this.txtVFOBFreq);
            this.grpVFOB.Name = "grpVFOB";
            this.grpVFOB.TabStop = false;
            // 
            // txtVFOBLSD
            // 
            this.txtVFOBLSD.BackColor = System.Drawing.Color.Black;
            this.txtVFOBLSD.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtVFOBLSD.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtVFOBLSD, "txtVFOBLSD");
            this.txtVFOBLSD.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOBLSD.Name = "txtVFOBLSD";
            this.txtVFOBLSD.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOBLSD_MouseMove);
            this.txtVFOBLSD.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtVFOBLSD_MouseDown);
            // 
            // panelVFOBHover
            // 
            resources.ApplyResources(this.panelVFOBHover, "panelVFOBHover");
            this.panelVFOBHover.BackColor = System.Drawing.Color.Black;
            this.panelVFOBHover.Name = "panelVFOBHover";
            this.panelVFOBHover.Paint += new System.Windows.Forms.PaintEventHandler(this.panelVFOBHover_Paint);
            this.panelVFOBHover.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelVFOBHover_MouseMove);
            // 
            // txtVFOBMSD
            // 
            this.txtVFOBMSD.BackColor = System.Drawing.Color.Black;
            this.txtVFOBMSD.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtVFOBMSD, "txtVFOBMSD");
            this.txtVFOBMSD.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOBMSD.Name = "txtVFOBMSD";
            this.txtVFOBMSD.MouseLeave += new System.EventHandler(this.txtVFOBMSD_MouseLeave);
            this.txtVFOBMSD.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOBMSD_MouseMove);
            this.txtVFOBMSD.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtVFOBMSD_MouseDown);
            // 
            // lblVFOBLSD
            // 
            this.lblVFOBLSD.BackColor = System.Drawing.Color.Cyan;
            resources.ApplyResources(this.lblVFOBLSD, "lblVFOBLSD");
            this.lblVFOBLSD.ForeColor = System.Drawing.Color.OrangeRed;
            this.lblVFOBLSD.Image = null;
            this.lblVFOBLSD.Name = "lblVFOBLSD";
            // 
            // txtVFOBBand
            // 
            this.txtVFOBBand.BackColor = System.Drawing.Color.Black;
            resources.ApplyResources(this.txtVFOBBand, "txtVFOBBand");
            this.txtVFOBBand.ForeColor = System.Drawing.Color.Green;
            this.txtVFOBBand.Name = "txtVFOBBand";
            this.txtVFOBBand.ReadOnly = true;
            this.txtVFOBBand.GotFocus += new System.EventHandler(this.HideFocus);
            // 
            // txtVFOBFreq
            // 
            this.txtVFOBFreq.BackColor = System.Drawing.Color.Black;
            this.txtVFOBFreq.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtVFOBFreq, "txtVFOBFreq");
            this.txtVFOBFreq.ForeColor = System.Drawing.Color.Olive;
            this.txtVFOBFreq.Name = "txtVFOBFreq";
            this.txtVFOBFreq.MouseLeave += new System.EventHandler(this.txtVFOBFreq_MouseLeave);
            this.txtVFOBFreq.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtVFOBFreq_MouseMove);
            this.txtVFOBFreq.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtVFOBFreq_KeyPress);
            this.txtVFOBFreq.LostFocus += new System.EventHandler(this.txtVFOBFreq_LostFocus);
            // 
            // grpLOSC
            // 
            this.grpLOSC.BackColor = System.Drawing.SystemColors.Control;
            resources.ApplyResources(this.grpLOSC, "grpLOSC");
            this.grpLOSC.Controls.Add(this.panelLOSCHover);
            this.grpLOSC.Controls.Add(this.txtLOSCLSD);
            this.grpLOSC.Controls.Add(this.txtLOSCMSD);
            this.grpLOSC.Controls.Add(this.txtLOSCFreq);
            this.grpLOSC.ForeColor = System.Drawing.Color.Black;
            this.grpLOSC.Name = "grpLOSC";
            this.grpLOSC.TabStop = false;
            // 
            // panelLOSCHover
            // 
            resources.ApplyResources(this.panelLOSCHover, "panelLOSCHover");
            this.panelLOSCHover.BackColor = System.Drawing.Color.Black;
            this.panelLOSCHover.Name = "panelLOSCHover";
            this.panelLOSCHover.Paint += new System.Windows.Forms.PaintEventHandler(this.panelLOSCHover_Paint);
            this.panelLOSCHover.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelLOSCHover_MouseMove);
            // 
            // txtLOSCLSD
            // 
            this.txtLOSCLSD.BackColor = System.Drawing.Color.Black;
            this.txtLOSCLSD.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtLOSCLSD.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtLOSCLSD, "txtLOSCLSD");
            this.txtLOSCLSD.ForeColor = System.Drawing.Color.Olive;
            this.txtLOSCLSD.Name = "txtLOSCLSD";
            this.txtLOSCLSD.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtLOSCLSD_MouseMove);
            this.txtLOSCLSD.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtLOSCLSD_MouseDown);
            // 
            // txtLOSCMSD
            // 
            this.txtLOSCMSD.BackColor = System.Drawing.Color.Black;
            this.txtLOSCMSD.ContextMenuStrip = this.contextLOSCMenu;
            this.txtLOSCMSD.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtLOSCMSD, "txtLOSCMSD");
            this.txtLOSCMSD.ForeColor = System.Drawing.Color.Olive;
            this.txtLOSCMSD.Name = "txtLOSCMSD";
            this.txtLOSCMSD.MouseLeave += new System.EventHandler(this.txtLOSCMSD_MouseLeave);
            this.txtLOSCMSD.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtLOSCMSD_MouseMove);
            this.txtLOSCMSD.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtLOSCMSD_MouseDown);
            // 
            // txtLOSCFreq
            // 
            this.txtLOSCFreq.BackColor = System.Drawing.Color.Black;
            this.txtLOSCFreq.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtLOSCFreq, "txtLOSCFreq");
            this.txtLOSCFreq.ForeColor = System.Drawing.Color.Green;
            this.txtLOSCFreq.Name = "txtLOSCFreq";
            this.txtLOSCFreq.MouseLeave += new System.EventHandler(this.txtLOSCFreq_MouseLeave);
            this.txtLOSCFreq.MouseMove += new System.Windows.Forms.MouseEventHandler(this.txtLOSCFreq_MouseMove);
            this.txtLOSCFreq.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtLOSCFreq_KeyPress);
            this.txtLOSCFreq.LostFocus += new System.EventHandler(this.txtLOSCFreq_LostFocus);
            // 
            // grpG160
            // 
            this.grpG160.Controls.Add(this.btnG160_X2);
            this.grpG160.Controls.Add(this.btnG160_X1);
            resources.ApplyResources(this.grpG160, "grpG160");
            this.grpG160.Name = "grpG160";
            this.grpG160.TabStop = false;
            // 
            // grpG3020
            // 
            resources.ApplyResources(this.grpG3020, "grpG3020");
            this.grpG3020.Controls.Add(this.btnG3020_X4);
            this.grpG3020.Controls.Add(this.btnG3020_X3);
            this.grpG3020.Controls.Add(this.btnG3020_X2);
            this.grpG3020.Controls.Add(this.btnG3020_X1);
            this.grpG3020.Name = "grpG3020";
            this.grpG3020.TabStop = false;
            // 
            // btnG3020_X4
            // 
            resources.ApplyResources(this.btnG3020_X4, "btnG3020_X4");
            this.btnG3020_X4.Image = null;
            this.btnG3020_X4.Name = "btnG3020_X4";
            this.btnG3020_X4.UseVisualStyleBackColor = true;
            this.btnG3020_X4.Click += new System.EventHandler(this.btnG3020_X4_Click);
            // 
            // btnG3020_X3
            // 
            resources.ApplyResources(this.btnG3020_X3, "btnG3020_X3");
            this.btnG3020_X3.Image = null;
            this.btnG3020_X3.Name = "btnG3020_X3";
            this.btnG3020_X3.UseVisualStyleBackColor = true;
            this.btnG3020_X3.Click += new System.EventHandler(this.btnG3020_X3_Click);
            // 
            // btnG3020_X2
            // 
            resources.ApplyResources(this.btnG3020_X2, "btnG3020_X2");
            this.btnG3020_X2.Image = null;
            this.btnG3020_X2.Name = "btnG3020_X2";
            this.btnG3020_X2.UseVisualStyleBackColor = true;
            this.btnG3020_X2.Click += new System.EventHandler(this.btnG3020_X2_Click);
            // 
            // btnG3020_X1
            // 
            resources.ApplyResources(this.btnG3020_X1, "btnG3020_X1");
            this.btnG3020_X1.Image = null;
            this.btnG3020_X1.Name = "btnG3020_X1";
            this.btnG3020_X1.UseVisualStyleBackColor = true;
            this.btnG3020_X1.Click += new System.EventHandler(this.btnG3020_X1_Click);
            // 
            // grpG80
            // 
            this.grpG80.BackColor = System.Drawing.SystemColors.Control;
            this.grpG80.Controls.Add(this.btnG80_X4);
            this.grpG80.Controls.Add(this.btnG80_X3);
            this.grpG80.Controls.Add(this.btnG80_X2);
            this.grpG80.Controls.Add(this.btnG80_X1);
            resources.ApplyResources(this.grpG80, "grpG80");
            this.grpG80.Name = "grpG80";
            this.grpG80.TabStop = false;
            // 
            // btnG80_X4
            // 
            resources.ApplyResources(this.btnG80_X4, "btnG80_X4");
            this.btnG80_X4.BackColor = System.Drawing.SystemColors.Control;
            this.btnG80_X4.FlatAppearance.BorderSize = 0;
            this.btnG80_X4.Image = null;
            this.btnG80_X4.Name = "btnG80_X4";
            this.btnG80_X4.UseVisualStyleBackColor = false;
            this.btnG80_X4.Click += new System.EventHandler(this.btnG80_X4_Click);
            // 
            // btnG80_X3
            // 
            resources.ApplyResources(this.btnG80_X3, "btnG80_X3");
            this.btnG80_X3.BackColor = System.Drawing.SystemColors.Control;
            this.btnG80_X3.FlatAppearance.BorderSize = 0;
            this.btnG80_X3.Image = null;
            this.btnG80_X3.Name = "btnG80_X3";
            this.btnG80_X3.UseVisualStyleBackColor = false;
            this.btnG80_X3.Click += new System.EventHandler(this.btnG80_X3_Click);
            // 
            // btnG80_X2
            // 
            resources.ApplyResources(this.btnG80_X2, "btnG80_X2");
            this.btnG80_X2.BackColor = System.Drawing.SystemColors.Control;
            this.btnG80_X2.FlatAppearance.BorderSize = 0;
            this.btnG80_X2.Image = null;
            this.btnG80_X2.Name = "btnG80_X2";
            this.btnG80_X2.UseVisualStyleBackColor = false;
            this.btnG80_X2.Click += new System.EventHandler(this.btnG80_X2_Click);
            // 
            // btnG80_X1
            // 
            resources.ApplyResources(this.btnG80_X1, "btnG80_X1");
            this.btnG80_X1.BackColor = System.Drawing.SystemColors.Control;
            this.btnG80_X1.FlatAppearance.BorderSize = 0;
            this.btnG80_X1.Image = null;
            this.btnG80_X1.Name = "btnG80_X1";
            this.btnG80_X1.UseVisualStyleBackColor = false;
            this.btnG80_X1.Click += new System.EventHandler(this.btnG80_X1_Click);
            // 
            // grpG59
            // 
            this.grpG59.Controls.Add(this.btnATT);
            this.grpG59.Controls.Add(this.btnHIGH_AF);
            this.grpG59.Controls.Add(this.btnHIGH_RF);
            resources.ApplyResources(this.grpG59, "grpG59");
            this.grpG59.Name = "grpG59";
            this.grpG59.TabStop = false;
            // 
            // grpZoom
            // 
            resources.ApplyResources(this.grpZoom, "grpZoom");
            this.grpZoom.Controls.Add(this.label2);
            this.grpZoom.Controls.Add(this.ptbDisplayZoom);
            this.grpZoom.Controls.Add(this.ptbDisplayPan);
            this.grpZoom.Controls.Add(this.label1);
            this.grpZoom.Controls.Add(this.radDisplayZoom32x);
            this.grpZoom.Controls.Add(this.radDisplayZoom1x);
            this.grpZoom.Controls.Add(this.radDisplayZoom2x);
            this.grpZoom.Controls.Add(this.radDisplayZoom16x);
            this.grpZoom.Controls.Add(this.radDisplayZoom4x);
            this.grpZoom.Controls.Add(this.radDisplayZoom8x);
            this.grpZoom.Name = "grpZoom";
            this.grpZoom.TabStop = false;
            // 
            // label2
            // 
            this.label2.BackColor = System.Drawing.SystemColors.Control;
            this.label2.Image = null;
            resources.ApplyResources(this.label2, "label2");
            this.label2.Name = "label2";
            // 
            // ptbDisplayZoom
            // 
            resources.ApplyResources(this.ptbDisplayZoom, "ptbDisplayZoom");
            this.ptbDisplayZoom.HeadImage = null;
            this.ptbDisplayZoom.LargeChange = 4;
            this.ptbDisplayZoom.Maximum = 128;
            this.ptbDisplayZoom.Minimum = 4;
            this.ptbDisplayZoom.Name = "ptbDisplayZoom";
            this.ptbDisplayZoom.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbDisplayZoom.SmallChange = 1;
            this.ptbDisplayZoom.TabStop = false;
            this.ptbDisplayZoom.Value = 4;
            this.ptbDisplayZoom.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbDisplayZoom_Wheel);
            this.ptbDisplayZoom.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbDisplayZoom_Scroll);
            // 
            // ptbDisplayPan
            // 
            resources.ApplyResources(this.ptbDisplayPan, "ptbDisplayPan");
            this.ptbDisplayPan.HeadImage = null;
            this.ptbDisplayPan.LargeChange = 10;
            this.ptbDisplayPan.Maximum = 1000;
            this.ptbDisplayPan.Minimum = -1000;
            this.ptbDisplayPan.Name = "ptbDisplayPan";
            this.ptbDisplayPan.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbDisplayPan.SmallChange = 10;
            this.ptbDisplayPan.TabStop = false;
            this.ptbDisplayPan.Value = 0;
            this.ptbDisplayPan.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbDisplayPan_Wheel);
            this.ptbDisplayPan.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbDisplayPan_Scroll);
            // 
            // label1
            // 
            this.label1.Image = null;
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            // 
            // radDisplayZoom32x
            // 
            resources.ApplyResources(this.radDisplayZoom32x, "radDisplayZoom32x");
            this.radDisplayZoom32x.FlatAppearance.BorderSize = 0;
            this.radDisplayZoom32x.Image = null;
            this.radDisplayZoom32x.Name = "radDisplayZoom32x";
            this.radDisplayZoom32x.UseVisualStyleBackColor = true;
            this.radDisplayZoom32x.Click += new System.EventHandler(this.radDisplayZoom32x_Click);
            // 
            // radDisplayZoom1x
            // 
            resources.ApplyResources(this.radDisplayZoom1x, "radDisplayZoom1x");
            this.radDisplayZoom1x.FlatAppearance.BorderSize = 0;
            this.radDisplayZoom1x.Image = null;
            this.radDisplayZoom1x.Name = "radDisplayZoom1x";
            this.radDisplayZoom1x.UseVisualStyleBackColor = true;
            this.radDisplayZoom1x.Click += new System.EventHandler(this.radDisplayZoom1x_Click);
            // 
            // radDisplayZoom2x
            // 
            resources.ApplyResources(this.radDisplayZoom2x, "radDisplayZoom2x");
            this.radDisplayZoom2x.FlatAppearance.BorderSize = 0;
            this.radDisplayZoom2x.Image = null;
            this.radDisplayZoom2x.Name = "radDisplayZoom2x";
            this.radDisplayZoom2x.UseVisualStyleBackColor = true;
            this.radDisplayZoom2x.Click += new System.EventHandler(this.radDisplayZoom2x_Click);
            // 
            // radDisplayZoom16x
            // 
            resources.ApplyResources(this.radDisplayZoom16x, "radDisplayZoom16x");
            this.radDisplayZoom16x.FlatAppearance.BorderSize = 0;
            this.radDisplayZoom16x.Image = null;
            this.radDisplayZoom16x.Name = "radDisplayZoom16x";
            this.radDisplayZoom16x.UseVisualStyleBackColor = true;
            this.radDisplayZoom16x.Click += new System.EventHandler(this.radDisplayZoom16x_Click);
            // 
            // radDisplayZoom4x
            // 
            resources.ApplyResources(this.radDisplayZoom4x, "radDisplayZoom4x");
            this.radDisplayZoom4x.FlatAppearance.BorderSize = 0;
            this.radDisplayZoom4x.Image = null;
            this.radDisplayZoom4x.Name = "radDisplayZoom4x";
            this.radDisplayZoom4x.UseVisualStyleBackColor = true;
            this.radDisplayZoom4x.Click += new System.EventHandler(this.radDisplayZoom4x_Click);
            // 
            // radDisplayZoom8x
            // 
            resources.ApplyResources(this.radDisplayZoom8x, "radDisplayZoom8x");
            this.radDisplayZoom8x.FlatAppearance.BorderSize = 0;
            this.radDisplayZoom8x.Image = null;
            this.radDisplayZoom8x.Name = "radDisplayZoom8x";
            this.radDisplayZoom8x.UseVisualStyleBackColor = true;
            this.radDisplayZoom8x.Click += new System.EventHandler(this.radDisplayZoom8x_Click);
            // 
            // grpSubRX
            // 
            resources.ApplyResources(this.grpSubRX, "grpSubRX");
            this.grpSubRX.Controls.Add(this.chkVACMute);
            this.grpSubRX.Controls.Add(this.ptbRX0Gain);
            this.grpSubRX.Controls.Add(this.chkEnableSubRX);
            this.grpSubRX.Controls.Add(this.ptbPanSubRX);
            this.grpSubRX.Controls.Add(this.ptbPanMainRX);
            this.grpSubRX.Controls.Add(this.ptbRX1Gain);
            this.grpSubRX.Name = "grpSubRX";
            this.grpSubRX.TabStop = false;
            // 
            // grpBandHF
            // 
            resources.ApplyResources(this.grpBandHF, "grpBandHF");
            this.grpBandHF.Controls.Add(this.radBandGEN);
            this.grpBandHF.Controls.Add(this.radBandWWV);
            this.grpBandHF.Controls.Add(this.radMoreBands);
            this.grpBandHF.Controls.Add(this.radBand2);
            this.grpBandHF.Controls.Add(this.radBand6);
            this.grpBandHF.Controls.Add(this.radBand10);
            this.grpBandHF.Controls.Add(this.radBand12);
            this.grpBandHF.Controls.Add(this.radBand15);
            this.grpBandHF.Controls.Add(this.radBand17);
            this.grpBandHF.Controls.Add(this.radBand20);
            this.grpBandHF.Controls.Add(this.radBand30);
            this.grpBandHF.Controls.Add(this.radBand40);
            this.grpBandHF.Controls.Add(this.radBand60);
            this.grpBandHF.Controls.Add(this.radBand80);
            this.grpBandHF.Controls.Add(this.radBand160);
            this.grpBandHF.Name = "grpBandHF";
            this.grpBandHF.TabStop = false;
            // 
            // grpVFOBetween
            // 
            resources.ApplyResources(this.grpVFOBetween, "grpVFOBetween");
            this.grpVFOBetween.Controls.Add(this.btnZAP);
            this.grpVFOBetween.Controls.Add(this.btnVFOA);
            this.grpVFOBetween.Controls.Add(this.txtMemory);
            this.grpVFOBetween.Controls.Add(this.lblMemoryNumber);
            this.grpVFOBetween.Controls.Add(this.chkVFOsinc);
            this.grpVFOBetween.Controls.Add(this.btnEraseMemory);
            this.grpVFOBetween.Controls.Add(this.chkVFOLock);
            this.grpVFOBetween.Controls.Add(this.btnMemoryQuickRecall);
            this.grpVFOBetween.Controls.Add(this.btnMemoryQuickSave);
            this.grpVFOBetween.Name = "grpVFOBetween";
            this.grpVFOBetween.TabStop = false;
            // 
            // txtMemory
            // 
            resources.ApplyResources(this.txtMemory, "txtMemory");
            this.txtMemory.Name = "txtMemory";
            // 
            // grpDisplay2
            // 
            resources.ApplyResources(this.grpDisplay2, "grpDisplay2");
            this.grpDisplay2.Controls.Add(this.chkDisplayPeak);
            this.grpDisplay2.Controls.Add(this.comboDisplayMode);
            this.grpDisplay2.Controls.Add(this.chkDisplayAVG);
            this.grpDisplay2.Name = "grpDisplay2";
            this.grpDisplay2.TabStop = false;
            // 
            // grpOptions
            // 
            resources.ApplyResources(this.grpOptions, "grpOptions");
            this.grpOptions.Controls.Add(this.chkRecordWav);
            this.grpOptions.Controls.Add(this.chkMUT);
            this.grpOptions.Controls.Add(this.chkMON);
            this.grpOptions.Controls.Add(this.chkTUN);
            this.grpOptions.Controls.Add(this.chkMOX);
            this.grpOptions.Controls.Add(this.chkPlayWav);
            this.grpOptions.Name = "grpOptions";
            this.grpOptions.TabStop = false;
            // 
            // btnChangeTuneStepLarger
            // 
            this.btnChangeTuneStepLarger.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnChangeTuneStepLarger, "btnChangeTuneStepLarger");
            this.btnChangeTuneStepLarger.Image = null;
            this.btnChangeTuneStepLarger.Name = "btnChangeTuneStepLarger";
            this.btnChangeTuneStepLarger.Click += new System.EventHandler(this.btnChangeTuneStepLarger_Click);
            // 
            // btnTuneStepChangeSmaller
            // 
            this.btnTuneStepChangeSmaller.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnTuneStepChangeSmaller, "btnTuneStepChangeSmaller");
            this.btnTuneStepChangeSmaller.Image = null;
            this.btnTuneStepChangeSmaller.Name = "btnTuneStepChangeSmaller";
            this.btnTuneStepChangeSmaller.Click += new System.EventHandler(this.btnChangeTuneStepSmaller_Click);
            // 
            // btnChangeTuneStepLargerSubRX
            // 
            this.btnChangeTuneStepLargerSubRX.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnChangeTuneStepLargerSubRX, "btnChangeTuneStepLargerSubRX");
            this.btnChangeTuneStepLargerSubRX.Image = null;
            this.btnChangeTuneStepLargerSubRX.Name = "btnChangeTuneStepLargerSubRX";
            this.btnChangeTuneStepLargerSubRX.Click += new System.EventHandler(this.btnChangeTuneStepLargerSubRX_Click);
            // 
            // btnTuneStepChangeSmallerSubRX
            // 
            this.btnTuneStepChangeSmallerSubRX.FlatAppearance.BorderSize = 0;
            resources.ApplyResources(this.btnTuneStepChangeSmallerSubRX, "btnTuneStepChangeSmallerSubRX");
            this.btnTuneStepChangeSmallerSubRX.Image = null;
            this.btnTuneStepChangeSmallerSubRX.Name = "btnTuneStepChangeSmallerSubRX";
            this.btnTuneStepChangeSmallerSubRX.Click += new System.EventHandler(this.btnTuneStepChangeSmallerSubRX_Click);
            // 
            // grpModeSpecificDigital
            // 
            resources.ApplyResources(this.grpModeSpecificDigital, "grpModeSpecificDigital");
            this.grpModeSpecificDigital.Controls.Add(this.grpDIGSampleRate);
            this.grpModeSpecificDigital.Controls.Add(this.ptbVACTXGain);
            this.grpModeSpecificDigital.Controls.Add(this.ptbVACRXGain);
            this.grpModeSpecificDigital.Controls.Add(this.udVACTXGain);
            this.grpModeSpecificDigital.Controls.Add(this.udVACRXGain);
            this.grpModeSpecificDigital.Controls.Add(this.lblTXGain);
            this.grpModeSpecificDigital.Controls.Add(this.lblRXGain);
            this.grpModeSpecificDigital.Controls.Add(this.chkVACEnabled);
            this.grpModeSpecificDigital.Name = "grpModeSpecificDigital";
            this.grpModeSpecificDigital.TabStop = false;
            // 
            // grpDIGSampleRate
            // 
            resources.ApplyResources(this.grpDIGSampleRate, "grpDIGSampleRate");
            this.grpDIGSampleRate.Controls.Add(this.comboVACSampleRate);
            this.grpDIGSampleRate.Name = "grpDIGSampleRate";
            this.grpDIGSampleRate.TabStop = false;
            // 
            // ptbVACTXGain
            // 
            resources.ApplyResources(this.ptbVACTXGain, "ptbVACTXGain");
            this.ptbVACTXGain.HeadImage = null;
            this.ptbVACTXGain.LargeChange = 5;
            this.ptbVACTXGain.Maximum = 20;
            this.ptbVACTXGain.Minimum = -40;
            this.ptbVACTXGain.Name = "ptbVACTXGain";
            this.ptbVACTXGain.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbVACTXGain.SmallChange = 1;
            this.ptbVACTXGain.TabStop = false;
            this.ptbVACTXGain.Value = 0;
            this.ptbVACTXGain.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbVACTXGain_Wheel);
            this.ptbVACTXGain.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbVACTXGain_Scroll);
            // 
            // ptbVACRXGain
            // 
            resources.ApplyResources(this.ptbVACRXGain, "ptbVACRXGain");
            this.ptbVACRXGain.HeadImage = null;
            this.ptbVACRXGain.LargeChange = 5;
            this.ptbVACRXGain.Maximum = 20;
            this.ptbVACRXGain.Minimum = -40;
            this.ptbVACRXGain.Name = "ptbVACRXGain";
            this.ptbVACRXGain.Orientation = System.Windows.Forms.Orientation.Horizontal;
            this.ptbVACRXGain.SmallChange = 1;
            this.ptbVACRXGain.TabStop = false;
            this.ptbVACRXGain.Value = 0;
            this.ptbVACRXGain.OnWheel += new PowerSDR.PrettyTrackBar.WheelHandler(this.tbVACRXGain_Wheel);
            this.ptbVACRXGain.Scroll += new PowerSDR.PrettyTrackBar.ScrollHandler(this.tbVACRXGain_Scroll);
            // 
            // lblTXGain
            // 
            this.lblTXGain.Image = null;
            resources.ApplyResources(this.lblTXGain, "lblTXGain");
            this.lblTXGain.Name = "lblTXGain";
            // 
            // lblRXGain
            // 
            this.lblRXGain.Image = null;
            resources.ApplyResources(this.lblRXGain, "lblRXGain");
            this.lblRXGain.Name = "lblRXGain";
            // 
            // lblTuneStep
            // 
            this.lblTuneStep.Image = null;
            resources.ApplyResources(this.lblTuneStep, "lblTuneStep");
            this.lblTuneStep.Name = "lblTuneStep";
            // 
            // grpDisplay
            // 
            resources.ApplyResources(this.grpDisplay, "grpDisplay");
            this.grpDisplay.Controls.Add(this.picWaterfall);
            this.grpDisplay.Controls.Add(this.txtDisplayPeakFreq);
            this.grpDisplay.Controls.Add(this.txtDisplayCursorFreq);
            this.grpDisplay.Controls.Add(this.txtDisplayCursorPower);
            this.grpDisplay.Controls.Add(this.txtDisplayPeakPower);
            this.grpDisplay.Controls.Add(this.txtDisplayCursorOffset);
            this.grpDisplay.Controls.Add(this.txtDisplayPeakOffset);
            this.grpDisplay.Controls.Add(this.picDisplay);
            this.grpDisplay.Name = "grpDisplay";
            this.grpDisplay.TabStop = false;
            // 
            // picWaterfall
            // 
            this.picWaterfall.BackColor = System.Drawing.Color.Black;
            resources.ApplyResources(this.picWaterfall, "picWaterfall");
            this.picWaterfall.Cursor = System.Windows.Forms.Cursors.Cross;
            this.picWaterfall.Name = "picWaterfall";
            this.picWaterfall.TabStop = false;
            this.picWaterfall.MouseLeave += new System.EventHandler(this.picWaterfall_MouseLeave);
            this.picWaterfall.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picWaterfall_MouseMove);
            this.picWaterfall.Resize += new System.EventHandler(this.picWaterfall_Resize);
            this.picWaterfall.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picWaterfall_MouseDown);
            this.picWaterfall.Paint += new System.Windows.Forms.PaintEventHandler(this.picWaterfall_Paint);
            this.picWaterfall.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picWaterfall_MouseUp);
            // 
            // txtDisplayPeakFreq
            // 
            this.txtDisplayPeakFreq.BackColor = System.Drawing.Color.Black;
            this.txtDisplayPeakFreq.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtDisplayPeakFreq.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtDisplayPeakFreq, "txtDisplayPeakFreq");
            this.txtDisplayPeakFreq.ForeColor = System.Drawing.Color.DodgerBlue;
            this.txtDisplayPeakFreq.Name = "txtDisplayPeakFreq";
            this.txtDisplayPeakFreq.ReadOnly = true;
            this.txtDisplayPeakFreq.Click += new System.EventHandler(this.txtDisplayPeakFreq_Click);
            // 
            // txtDisplayCursorFreq
            // 
            this.txtDisplayCursorFreq.BackColor = System.Drawing.Color.Black;
            this.txtDisplayCursorFreq.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtDisplayCursorFreq.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtDisplayCursorFreq, "txtDisplayCursorFreq");
            this.txtDisplayCursorFreq.ForeColor = System.Drawing.Color.DodgerBlue;
            this.txtDisplayCursorFreq.Name = "txtDisplayCursorFreq";
            this.txtDisplayCursorFreq.ReadOnly = true;
            // 
            // txtDisplayCursorPower
            // 
            this.txtDisplayCursorPower.BackColor = System.Drawing.Color.Black;
            this.txtDisplayCursorPower.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtDisplayCursorPower.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtDisplayCursorPower, "txtDisplayCursorPower");
            this.txtDisplayCursorPower.ForeColor = System.Drawing.Color.DodgerBlue;
            this.txtDisplayCursorPower.Name = "txtDisplayCursorPower";
            this.txtDisplayCursorPower.ReadOnly = true;
            // 
            // txtDisplayPeakPower
            // 
            this.txtDisplayPeakPower.BackColor = System.Drawing.Color.Black;
            this.txtDisplayPeakPower.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtDisplayPeakPower.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtDisplayPeakPower, "txtDisplayPeakPower");
            this.txtDisplayPeakPower.ForeColor = System.Drawing.Color.DodgerBlue;
            this.txtDisplayPeakPower.Name = "txtDisplayPeakPower";
            this.txtDisplayPeakPower.ReadOnly = true;
            // 
            // txtDisplayCursorOffset
            // 
            this.txtDisplayCursorOffset.BackColor = System.Drawing.Color.Black;
            this.txtDisplayCursorOffset.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtDisplayCursorOffset.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtDisplayCursorOffset, "txtDisplayCursorOffset");
            this.txtDisplayCursorOffset.ForeColor = System.Drawing.Color.DodgerBlue;
            this.txtDisplayCursorOffset.Name = "txtDisplayCursorOffset";
            this.txtDisplayCursorOffset.ReadOnly = true;
            this.txtDisplayCursorOffset.GotFocus += new System.EventHandler(this.HideFocus);
            // 
            // txtDisplayPeakOffset
            // 
            this.txtDisplayPeakOffset.BackColor = System.Drawing.Color.Black;
            this.txtDisplayPeakOffset.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.txtDisplayPeakOffset.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtDisplayPeakOffset, "txtDisplayPeakOffset");
            this.txtDisplayPeakOffset.ForeColor = System.Drawing.Color.DodgerBlue;
            this.txtDisplayPeakOffset.Name = "txtDisplayPeakOffset";
            this.txtDisplayPeakOffset.ReadOnly = true;
            this.txtDisplayPeakOffset.GotFocus += new System.EventHandler(this.HideFocus);
            // 
            // picDisplay
            // 
            this.picDisplay.BackColor = System.Drawing.Color.Black;
            resources.ApplyResources(this.picDisplay, "picDisplay");
            this.picDisplay.Cursor = System.Windows.Forms.Cursors.Cross;
            this.picDisplay.Name = "picDisplay";
            this.picDisplay.TabStop = false;
            this.picDisplay.MouseLeave += new System.EventHandler(this.picDisplay_MouseLeave);
            this.picDisplay.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picDisplay_MouseMove);
            this.picDisplay.Resize += new System.EventHandler(this.picDisplay_Resize);
            this.picDisplay.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picDisplay_MouseDown);
            this.picDisplay.Paint += new System.Windows.Forms.PaintEventHandler(this.picDisplay_Paint);
            this.picDisplay.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picDisplay_MouseUp);
            // 
            // grpMainRXFilter
            // 
            resources.ApplyResources(this.grpMainRXFilter, "grpMainRXFilter");
            this.grpMainRXFilter.ContextMenu = this.contextMenuFilter;
            this.grpMainRXFilter.Controls.Add(this.udFilterHigh);
            this.grpMainRXFilter.Controls.Add(this.udFilterLow);
            this.grpMainRXFilter.Controls.Add(this.ptbFilterWidth);
            this.grpMainRXFilter.Controls.Add(this.lblFilterWidth);
            this.grpMainRXFilter.Controls.Add(this.btnFilterShiftReset);
            this.grpMainRXFilter.Controls.Add(this.ptbFilterShift);
            this.grpMainRXFilter.Controls.Add(this.lblFilterShift);
            this.grpMainRXFilter.Controls.Add(this.radFilter1);
            this.grpMainRXFilter.Controls.Add(this.radFilter2);
            this.grpMainRXFilter.Controls.Add(this.radFilter3);
            this.grpMainRXFilter.Controls.Add(this.radFilter4);
            this.grpMainRXFilter.Controls.Add(this.radFilter5);
            this.grpMainRXFilter.Controls.Add(this.radFilter6);
            this.grpMainRXFilter.Controls.Add(this.radFilter7);
            this.grpMainRXFilter.Controls.Add(this.radFilter8);
            this.grpMainRXFilter.Controls.Add(this.radFilter9);
            this.grpMainRXFilter.Controls.Add(this.radFilter10);
            this.grpMainRXFilter.Controls.Add(this.radFilterVar1);
            this.grpMainRXFilter.Controls.Add(this.radFilterVar2);
            this.grpMainRXFilter.Controls.Add(this.lblFilterLow);
            this.grpMainRXFilter.Controls.Add(this.lblFilterHigh);
            this.grpMainRXFilter.Name = "grpMainRXFilter";
            this.grpMainRXFilter.TabStop = false;
            // 
            // lblFilterWidth
            // 
            this.lblFilterWidth.Image = null;
            resources.ApplyResources(this.lblFilterWidth, "lblFilterWidth");
            this.lblFilterWidth.Name = "lblFilterWidth";
            // 
            // lblFilterShift
            // 
            this.lblFilterShift.Image = null;
            resources.ApplyResources(this.lblFilterShift, "lblFilterShift");
            this.lblFilterShift.Name = "lblFilterShift";
            // 
            // radFilter1
            // 
            resources.ApplyResources(this.radFilter1, "radFilter1");
            this.radFilter1.FlatAppearance.BorderSize = 0;
            this.radFilter1.Image = null;
            this.radFilter1.Name = "radFilter1";
            this.radFilter1.CheckedChanged += new System.EventHandler(this.radFilter1_CheckedChanged);
            // 
            // radFilter2
            // 
            resources.ApplyResources(this.radFilter2, "radFilter2");
            this.radFilter2.FlatAppearance.BorderSize = 0;
            this.radFilter2.Image = null;
            this.radFilter2.Name = "radFilter2";
            this.radFilter2.CheckedChanged += new System.EventHandler(this.radFilter2_CheckedChanged);
            // 
            // radFilter3
            // 
            resources.ApplyResources(this.radFilter3, "radFilter3");
            this.radFilter3.FlatAppearance.BorderSize = 0;
            this.radFilter3.Image = null;
            this.radFilter3.Name = "radFilter3";
            this.radFilter3.CheckedChanged += new System.EventHandler(this.radFilter3_CheckedChanged);
            // 
            // radFilter4
            // 
            resources.ApplyResources(this.radFilter4, "radFilter4");
            this.radFilter4.FlatAppearance.BorderSize = 0;
            this.radFilter4.Image = null;
            this.radFilter4.Name = "radFilter4";
            this.radFilter4.CheckedChanged += new System.EventHandler(this.radFilter4_CheckedChanged);
            // 
            // radFilter5
            // 
            resources.ApplyResources(this.radFilter5, "radFilter5");
            this.radFilter5.FlatAppearance.BorderSize = 0;
            this.radFilter5.Image = null;
            this.radFilter5.Name = "radFilter5";
            this.radFilter5.CheckedChanged += new System.EventHandler(this.radFilter5_CheckedChanged);
            // 
            // radFilter6
            // 
            resources.ApplyResources(this.radFilter6, "radFilter6");
            this.radFilter6.FlatAppearance.BorderSize = 0;
            this.radFilter6.Image = null;
            this.radFilter6.Name = "radFilter6";
            this.radFilter6.CheckedChanged += new System.EventHandler(this.radFilter6_CheckedChanged);
            // 
            // radFilter7
            // 
            resources.ApplyResources(this.radFilter7, "radFilter7");
            this.radFilter7.FlatAppearance.BorderSize = 0;
            this.radFilter7.Image = null;
            this.radFilter7.Name = "radFilter7";
            this.radFilter7.CheckedChanged += new System.EventHandler(this.radFilter7_CheckedChanged);
            // 
            // radFilter8
            // 
            resources.ApplyResources(this.radFilter8, "radFilter8");
            this.radFilter8.FlatAppearance.BorderSize = 0;
            this.radFilter8.Image = null;
            this.radFilter8.Name = "radFilter8";
            this.radFilter8.CheckedChanged += new System.EventHandler(this.radFilter8_CheckedChanged);
            // 
            // radFilter9
            // 
            resources.ApplyResources(this.radFilter9, "radFilter9");
            this.radFilter9.FlatAppearance.BorderSize = 0;
            this.radFilter9.Image = null;
            this.radFilter9.Name = "radFilter9";
            this.radFilter9.CheckedChanged += new System.EventHandler(this.radFilter9_CheckedChanged);
            // 
            // radFilter10
            // 
            resources.ApplyResources(this.radFilter10, "radFilter10");
            this.radFilter10.FlatAppearance.BorderSize = 0;
            this.radFilter10.Image = null;
            this.radFilter10.Name = "radFilter10";
            this.radFilter10.CheckedChanged += new System.EventHandler(this.radFilter10_CheckedChanged);
            // 
            // radFilterVar1
            // 
            resources.ApplyResources(this.radFilterVar1, "radFilterVar1");
            this.radFilterVar1.FlatAppearance.BorderSize = 0;
            this.radFilterVar1.Image = null;
            this.radFilterVar1.Name = "radFilterVar1";
            this.radFilterVar1.CheckedChanged += new System.EventHandler(this.radFilterVar1_CheckedChanged);
            // 
            // radFilterVar2
            // 
            resources.ApplyResources(this.radFilterVar2, "radFilterVar2");
            this.radFilterVar2.FlatAppearance.BorderSize = 0;
            this.radFilterVar2.Image = null;
            this.radFilterVar2.Name = "radFilterVar2";
            this.radFilterVar2.CheckedChanged += new System.EventHandler(this.radFilterVar2_CheckedChanged);
            // 
            // lblFilterLow
            // 
            this.lblFilterLow.Image = null;
            resources.ApplyResources(this.lblFilterLow, "lblFilterLow");
            this.lblFilterLow.Name = "lblFilterLow";
            // 
            // lblFilterHigh
            // 
            this.lblFilterHigh.Image = null;
            resources.ApplyResources(this.lblFilterHigh, "lblFilterHigh");
            this.lblFilterHigh.Name = "lblFilterHigh";
            // 
            // lblCPUMeter
            // 
            this.lblCPUMeter.Image = null;
            resources.ApplyResources(this.lblCPUMeter, "lblCPUMeter");
            this.lblCPUMeter.Name = "lblCPUMeter";
            // 
            // grpDSPMainRX
            // 
            resources.ApplyResources(this.grpDSPMainRX, "grpDSPMainRX");
            this.grpDSPMainRX.Controls.Add(this.chkDSPNB2);
            this.grpDSPMainRX.Controls.Add(this.chkNB);
            this.grpDSPMainRX.Controls.Add(this.chkANF);
            this.grpDSPMainRX.Controls.Add(this.chkNR);
            this.grpDSPMainRX.Controls.Add(this.chkBIN);
            this.grpDSPMainRX.Name = "grpDSPMainRX";
            this.grpDSPMainRX.TabStop = false;
            // 
            // grpMultimeter
            // 
            resources.ApplyResources(this.grpMultimeter, "grpMultimeter");
            this.grpMultimeter.Controls.Add(this.comboMeterTXMode);
            this.grpMultimeter.Controls.Add(this.picMultiMeterDigital);
            this.grpMultimeter.Controls.Add(this.lblMultiSMeter);
            this.grpMultimeter.Controls.Add(this.comboMeterRXMode);
            this.grpMultimeter.Controls.Add(this.txtMultiText);
            this.grpMultimeter.Controls.Add(this.picMultimeterAnalog);
            this.grpMultimeter.Name = "grpMultimeter";
            this.grpMultimeter.TabStop = false;
            // 
            // picMultiMeterDigital
            // 
            this.picMultiMeterDigital.BackColor = System.Drawing.Color.Black;
            this.picMultiMeterDigital.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            resources.ApplyResources(this.picMultiMeterDigital, "picMultiMeterDigital");
            this.picMultiMeterDigital.Name = "picMultiMeterDigital";
            this.picMultiMeterDigital.TabStop = false;
            this.picMultiMeterDigital.Paint += new System.Windows.Forms.PaintEventHandler(this.picMultiMeterDigital_Paint);
            // 
            // lblMultiSMeter
            // 
            this.lblMultiSMeter.Image = null;
            resources.ApplyResources(this.lblMultiSMeter, "lblMultiSMeter");
            this.lblMultiSMeter.Name = "lblMultiSMeter";
            // 
            // txtMultiText
            // 
            this.txtMultiText.BackColor = System.Drawing.Color.Black;
            this.txtMultiText.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this.txtMultiText, "txtMultiText");
            this.txtMultiText.ForeColor = System.Drawing.Color.Yellow;
            this.txtMultiText.Name = "txtMultiText";
            this.txtMultiText.ReadOnly = true;
            this.txtMultiText.GotFocus += new System.EventHandler(this.HideFocus);
            // 
            // picMultimeterAnalog
            // 
            this.picMultimeterAnalog.BackColor = System.Drawing.Color.Black;
            resources.ApplyResources(this.picMultimeterAnalog, "picMultimeterAnalog");
            this.picMultimeterAnalog.Name = "picMultimeterAnalog";
            this.picMultimeterAnalog.TabStop = false;
            // 
            // grpVFO
            // 
            resources.ApplyResources(this.grpVFO, "grpVFO");
            this.grpVFO.Controls.Add(this.btnChangeTuneStepLargerSubRX);
            this.grpVFO.Controls.Add(this.btnRITReset);
            this.grpVFO.Controls.Add(this.btnTuneStepChangeSmallerSubRX);
            this.grpVFO.Controls.Add(this.btnXITReset);
            this.grpVFO.Controls.Add(this.txtWheelTuneSubRX);
            this.grpVFO.Controls.Add(this.btnVFOSwap);
            this.grpVFO.Controls.Add(this.btnVFOBtoA);
            this.grpVFO.Controls.Add(this.btnVFOAtoB);
            this.grpVFO.Controls.Add(this.udXIT);
            this.grpVFO.Controls.Add(this.btnChangeTuneStepLarger);
            this.grpVFO.Controls.Add(this.chkXIT);
            this.grpVFO.Controls.Add(this.lblTuneStep);
            this.grpVFO.Controls.Add(this.chkRIT);
            this.grpVFO.Controls.Add(this.btnTuneStepChangeSmaller);
            this.grpVFO.Controls.Add(this.udRIT);
            this.grpVFO.Controls.Add(this.chkVFOSplit);
            this.grpVFO.Controls.Add(this.txtWheelTune);
            this.grpVFO.Name = "grpVFO";
            this.grpVFO.TabStop = false;
            // 
            // grpManualNotch
            // 
            resources.ApplyResources(this.grpManualNotch, "grpManualNotch");
            this.grpManualNotch.Controls.Add(this.labelTS6);
            this.grpManualNotch.Controls.Add(this.labelTS5);
            this.grpManualNotch.Controls.Add(this.btnNotchReset);
            this.grpManualNotch.Controls.Add(this.lblNotchLow);
            this.grpManualNotch.Controls.Add(this.lblNotchHigh);
            this.grpManualNotch.Controls.Add(this.chkManualNotchFilter);
            this.grpManualNotch.Controls.Add(this.lblNotchShift);
            this.grpManualNotch.Controls.Add(this.lblWidth);
            this.grpManualNotch.Controls.Add(this.ptbNotchWidth);
            this.grpManualNotch.Controls.Add(this.ptbNotchShift);
            this.grpManualNotch.Name = "grpManualNotch";
            this.grpManualNotch.TabStop = false;
            // 
            // labelTS6
            // 
            resources.ApplyResources(this.labelTS6, "labelTS6");
            this.labelTS6.Image = null;
            this.labelTS6.Name = "labelTS6";
            // 
            // labelTS5
            // 
            resources.ApplyResources(this.labelTS5, "labelTS5");
            this.labelTS5.Image = null;
            this.labelTS5.Name = "labelTS5";
            // 
            // lblNotchLow
            // 
            resources.ApplyResources(this.lblNotchLow, "lblNotchLow");
            this.lblNotchLow.BackColor = System.Drawing.Color.Transparent;
            this.lblNotchLow.Image = null;
            this.lblNotchLow.Name = "lblNotchLow";
            // 
            // lblNotchHigh
            // 
            resources.ApplyResources(this.lblNotchHigh, "lblNotchHigh");
            this.lblNotchHigh.BackColor = System.Drawing.Color.Transparent;
            this.lblNotchHigh.Image = null;
            this.lblNotchHigh.Name = "lblNotchHigh";
            // 
            // picSmallAGauge
            // 
            resources.ApplyResources(this.picSmallAGauge, "picSmallAGauge");
            this.picSmallAGauge.ContextMenuStrip = this.contextNewVFOSmeter;
            this.picSmallAGauge.Name = "picSmallAGauge";
            this.picSmallAGauge.TabStop = false;
            this.picSmallAGauge.Paint += new System.Windows.Forms.PaintEventHandler(this.picSmallAGauge_Paint);
            // 
            // grpSubRXFilter
            // 
            resources.ApplyResources(this.grpSubRXFilter, "grpSubRXFilter");
            this.grpSubRXFilter.ContextMenu = this.contextMenuFilter;
            this.grpSubRXFilter.Controls.Add(this.udSubRXFilterHigh);
            this.grpSubRXFilter.Controls.Add(this.udSubRXFilterLow);
            this.grpSubRXFilter.Controls.Add(this.ptbSubRXFilterWidth);
            this.grpSubRXFilter.Controls.Add(this.labelTS1);
            this.grpSubRXFilter.Controls.Add(this.btnSubRXFilterShiftReset);
            this.grpSubRXFilter.Controls.Add(this.ptbSubRXFilterShift);
            this.grpSubRXFilter.Controls.Add(this.labelTS2);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter1);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter2);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter3);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter4);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter5);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter6);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter7);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter8);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter9);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilter10);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilterVar1);
            this.grpSubRXFilter.Controls.Add(this.radSubRXFilterVar2);
            this.grpSubRXFilter.Controls.Add(this.labelTS3);
            this.grpSubRXFilter.Controls.Add(this.labelTS4);
            this.grpSubRXFilter.Name = "grpSubRXFilter";
            this.grpSubRXFilter.TabStop = false;
            // 
            // labelTS1
            // 
            this.labelTS1.Image = null;
            resources.ApplyResources(this.labelTS1, "labelTS1");
            this.labelTS1.Name = "labelTS1";
            // 
            // labelTS2
            // 
            this.labelTS2.Image = null;
            resources.ApplyResources(this.labelTS2, "labelTS2");
            this.labelTS2.Name = "labelTS2";
            // 
            // radSubRXFilter1
            // 
            resources.ApplyResources(this.radSubRXFilter1, "radSubRXFilter1");
            this.radSubRXFilter1.Checked = true;
            this.radSubRXFilter1.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter1.Image = null;
            this.radSubRXFilter1.Name = "radSubRXFilter1";
            this.radSubRXFilter1.TabStop = true;
            this.radSubRXFilter1.CheckedChanged += new System.EventHandler(this.radSubRXFilter1_CheckedChanged);
            // 
            // radSubRXFilter2
            // 
            resources.ApplyResources(this.radSubRXFilter2, "radSubRXFilter2");
            this.radSubRXFilter2.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter2.Image = null;
            this.radSubRXFilter2.Name = "radSubRXFilter2";
            this.radSubRXFilter2.CheckedChanged += new System.EventHandler(this.radSubRXFilter2_CheckedChanged);
            // 
            // radSubRXFilter3
            // 
            resources.ApplyResources(this.radSubRXFilter3, "radSubRXFilter3");
            this.radSubRXFilter3.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter3.Image = null;
            this.radSubRXFilter3.Name = "radSubRXFilter3";
            this.radSubRXFilter3.CheckedChanged += new System.EventHandler(this.radSubRXFilter3_CheckedChanged);
            // 
            // radSubRXFilter4
            // 
            resources.ApplyResources(this.radSubRXFilter4, "radSubRXFilter4");
            this.radSubRXFilter4.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter4.Image = null;
            this.radSubRXFilter4.Name = "radSubRXFilter4";
            this.radSubRXFilter4.CheckedChanged += new System.EventHandler(this.radSubRXFilter4_CheckedChanged);
            // 
            // radSubRXFilter5
            // 
            resources.ApplyResources(this.radSubRXFilter5, "radSubRXFilter5");
            this.radSubRXFilter5.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter5.Image = null;
            this.radSubRXFilter5.Name = "radSubRXFilter5";
            this.radSubRXFilter5.CheckedChanged += new System.EventHandler(this.radSubRXFilter5_CheckedChanged);
            // 
            // radSubRXFilter6
            // 
            resources.ApplyResources(this.radSubRXFilter6, "radSubRXFilter6");
            this.radSubRXFilter6.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter6.Image = null;
            this.radSubRXFilter6.Name = "radSubRXFilter6";
            this.radSubRXFilter6.CheckedChanged += new System.EventHandler(this.radSubRXFilter6_CheckedChanged);
            // 
            // radSubRXFilter7
            // 
            resources.ApplyResources(this.radSubRXFilter7, "radSubRXFilter7");
            this.radSubRXFilter7.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter7.Image = null;
            this.radSubRXFilter7.Name = "radSubRXFilter7";
            this.radSubRXFilter7.CheckedChanged += new System.EventHandler(this.radSubRXFilter7_CheckedChanged);
            // 
            // radSubRXFilter8
            // 
            resources.ApplyResources(this.radSubRXFilter8, "radSubRXFilter8");
            this.radSubRXFilter8.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter8.Image = null;
            this.radSubRXFilter8.Name = "radSubRXFilter8";
            this.radSubRXFilter8.CheckedChanged += new System.EventHandler(this.radSubRXFilter8_CheckedChanged);
            // 
            // radSubRXFilter9
            // 
            resources.ApplyResources(this.radSubRXFilter9, "radSubRXFilter9");
            this.radSubRXFilter9.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter9.Image = null;
            this.radSubRXFilter9.Name = "radSubRXFilter9";
            this.radSubRXFilter9.CheckedChanged += new System.EventHandler(this.radSubRXFilter9_CheckedChanged);
            // 
            // radSubRXFilter10
            // 
            resources.ApplyResources(this.radSubRXFilter10, "radSubRXFilter10");
            this.radSubRXFilter10.FlatAppearance.BorderSize = 0;
            this.radSubRXFilter10.Image = null;
            this.radSubRXFilter10.Name = "radSubRXFilter10";
            this.radSubRXFilter10.CheckedChanged += new System.EventHandler(this.radSubRXFilter10_CheckedChanged);
            // 
            // radSubRXFilterVar1
            // 
            resources.ApplyResources(this.radSubRXFilterVar1, "radSubRXFilterVar1");
            this.radSubRXFilterVar1.FlatAppearance.BorderSize = 0;
            this.radSubRXFilterVar1.Image = null;
            this.radSubRXFilterVar1.Name = "radSubRXFilterVar1";
            this.radSubRXFilterVar1.CheckedChanged += new System.EventHandler(this.radSubRXFilterVar1_CheckedChanged);
            // 
            // radSubRXFilterVar2
            // 
            resources.ApplyResources(this.radSubRXFilterVar2, "radSubRXFilterVar2");
            this.radSubRXFilterVar2.FlatAppearance.BorderSize = 0;
            this.radSubRXFilterVar2.Image = null;
            this.radSubRXFilterVar2.Name = "radSubRXFilterVar2";
            this.radSubRXFilterVar2.CheckedChanged += new System.EventHandler(this.radSubRXFilterVar2_CheckedChanged);
            // 
            // labelTS3
            // 
            this.labelTS3.Image = null;
            resources.ApplyResources(this.labelTS3, "labelTS3");
            this.labelTS3.Name = "labelTS3";
            // 
            // labelTS4
            // 
            this.labelTS4.Image = null;
            resources.ApplyResources(this.labelTS4, "labelTS4");
            this.labelTS4.Name = "labelTS4";
            // 
            // grpDSPSubRX
            // 
            resources.ApplyResources(this.grpDSPSubRX, "grpDSPSubRX");
            this.grpDSPSubRX.Controls.Add(this.chkNB2SubRX);
            this.grpDSPSubRX.Controls.Add(this.chkNBSubRX);
            this.grpDSPSubRX.Controls.Add(this.chkANFSubRX);
            this.grpDSPSubRX.Controls.Add(this.chkNRSubRX);
            this.grpDSPSubRX.Controls.Add(this.chkBINSubRX);
            this.grpDSPSubRX.Name = "grpDSPSubRX";
            this.grpDSPSubRX.TabStop = false;
            // 
            // grpSoundControls1
            // 
            resources.ApplyResources(this.grpSoundControls1, "grpSoundControls1");
            this.grpSoundControls1.Controls.Add(this.ptbPWR1);
            this.grpSoundControls1.Controls.Add(this.ptbRF1);
            this.grpSoundControls1.Controls.Add(this.ptbAF1);
            this.grpSoundControls1.Controls.Add(this.udRF1);
            this.grpSoundControls1.Controls.Add(this.lblRF1);
            this.grpSoundControls1.Controls.Add(this.lblPWR1);
            this.grpSoundControls1.Controls.Add(this.udPWR1);
            this.grpSoundControls1.Controls.Add(this.lblAF1);
            this.grpSoundControls1.Controls.Add(this.udAF1);
            this.grpSoundControls1.Name = "grpSoundControls1";
            this.grpSoundControls1.TabStop = false;
            // 
            // lblRF1
            // 
            this.lblRF1.Image = null;
            resources.ApplyResources(this.lblRF1, "lblRF1");
            this.lblRF1.Name = "lblRF1";
            // 
            // lblPWR1
            // 
            this.lblPWR1.Image = null;
            resources.ApplyResources(this.lblPWR1, "lblPWR1");
            this.lblPWR1.Name = "lblPWR1";
            // 
            // lblAF1
            // 
            this.lblAF1.Image = null;
            resources.ApplyResources(this.lblAF1, "lblAF1");
            this.lblAF1.Name = "lblAF1";
            // 
            // grpSubRXMode
            // 
            resources.ApplyResources(this.grpSubRXMode, "grpSubRXMode");
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeAM);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeSAM);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeDSB);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeCWU);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeDIGU);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeDIGL);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeLSB);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeSPEC);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeDRM);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeFMN);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeUSB);
            this.grpSubRXMode.Controls.Add(this.radSUBRxModeCWL);
            this.grpSubRXMode.Name = "grpSubRXMode";
            this.grpSubRXMode.TabStop = false;
            // 
            // grpMainRXMode
            // 
            resources.ApplyResources(this.grpMainRXMode, "grpMainRXMode");
            this.grpMainRXMode.Controls.Add(this.radModeAM);
            this.grpMainRXMode.Controls.Add(this.radModeSAM);
            this.grpMainRXMode.Controls.Add(this.radModeDSB);
            this.grpMainRXMode.Controls.Add(this.radModeCWU);
            this.grpMainRXMode.Controls.Add(this.radModeDIGU);
            this.grpMainRXMode.Controls.Add(this.radModeDIGL);
            this.grpMainRXMode.Controls.Add(this.radModeLSB);
            this.grpMainRXMode.Controls.Add(this.radModeSPEC);
            this.grpMainRXMode.Controls.Add(this.radModeDRM);
            this.grpMainRXMode.Controls.Add(this.radModeFMN);
            this.grpMainRXMode.Controls.Add(this.radModeUSB);
            this.grpMainRXMode.Controls.Add(this.radModeWFM);
            this.grpMainRXMode.Name = "grpMainRXMode";
            this.grpMainRXMode.TabStop = false;
            // 
            // grpG11
            // 
            this.grpG11.Controls.Add(this.chkG11ATTbtn);
            this.grpG11.Controls.Add(this.chkG11AFbtn);
            this.grpG11.Controls.Add(this.chkG11RFbtn);
            resources.ApplyResources(this.grpG11, "grpG11");
            this.grpG11.Name = "grpG11";
            this.grpG11.TabStop = false;
            // 
            // grpMoreBands
            // 
            resources.ApplyResources(this.grpMoreBands, "grpMoreBands");
            this.grpMoreBands.Controls.Add(this.radBandX12);
            this.grpMoreBands.Controls.Add(this.radBandX11);
            this.grpMoreBands.Controls.Add(this.radBandHF);
            this.grpMoreBands.Controls.Add(this.radBandX10);
            this.grpMoreBands.Controls.Add(this.radBandX9);
            this.grpMoreBands.Controls.Add(this.radBandX8);
            this.grpMoreBands.Controls.Add(this.radBandX7);
            this.grpMoreBands.Controls.Add(this.radBandX6);
            this.grpMoreBands.Controls.Add(this.radBandX5);
            this.grpMoreBands.Controls.Add(this.radBandX4);
            this.grpMoreBands.Controls.Add(this.radBandX3);
            this.grpMoreBands.Controls.Add(this.radBandX2);
            this.grpMoreBands.Controls.Add(this.radBandX1);
            this.grpMoreBands.Controls.Add(this.radBand600);
            this.grpMoreBands.Controls.Add(this.radBand2190);
            this.grpMoreBands.Name = "grpMoreBands";
            this.grpMoreBands.TabStop = false;
            // 
            // radBandX12
            // 
            resources.ApplyResources(this.radBandX12, "radBandX12");
            this.radBandX12.FlatAppearance.BorderSize = 0;
            this.radBandX12.Image = null;
            this.radBandX12.Name = "radBandX12";
            this.radBandX12.Click += new System.EventHandler(this.radBandX12_Click);
            this.radBandX12.CheckedChanged += new System.EventHandler(this.radBandX12_CheckedChanged);
            // 
            // radBandX11
            // 
            resources.ApplyResources(this.radBandX11, "radBandX11");
            this.radBandX11.FlatAppearance.BorderSize = 0;
            this.radBandX11.Image = null;
            this.radBandX11.Name = "radBandX11";
            this.radBandX11.Click += new System.EventHandler(this.radBandX11_Click);
            this.radBandX11.CheckedChanged += new System.EventHandler(this.radBandX11_CheckedChanged);
            // 
            // radBandX10
            // 
            resources.ApplyResources(this.radBandX10, "radBandX10");
            this.radBandX10.FlatAppearance.BorderSize = 0;
            this.radBandX10.Image = null;
            this.radBandX10.Name = "radBandX10";
            this.radBandX10.Click += new System.EventHandler(this.radBandX10_Click);
            this.radBandX10.CheckedChanged += new System.EventHandler(this.radBandX10_CheckedChanged);
            // 
            // radBandX9
            // 
            resources.ApplyResources(this.radBandX9, "radBandX9");
            this.radBandX9.FlatAppearance.BorderSize = 0;
            this.radBandX9.Image = null;
            this.radBandX9.Name = "radBandX9";
            this.radBandX9.Click += new System.EventHandler(this.radBandX9_Click);
            this.radBandX9.CheckedChanged += new System.EventHandler(this.radBandX9_CheckedChanged);
            // 
            // radBandX8
            // 
            resources.ApplyResources(this.radBandX8, "radBandX8");
            this.radBandX8.FlatAppearance.BorderSize = 0;
            this.radBandX8.Image = null;
            this.radBandX8.Name = "radBandX8";
            this.radBandX8.Click += new System.EventHandler(this.radBandX8_Click);
            this.radBandX8.CheckedChanged += new System.EventHandler(this.radBandX8_CheckedChanged);
            // 
            // radBandX7
            // 
            resources.ApplyResources(this.radBandX7, "radBandX7");
            this.radBandX7.FlatAppearance.BorderSize = 0;
            this.radBandX7.Image = null;
            this.radBandX7.Name = "radBandX7";
            this.radBandX7.Click += new System.EventHandler(this.radBandX7_Click);
            this.radBandX7.CheckedChanged += new System.EventHandler(this.radBandX7_CheckedChanged);
            // 
            // radBandX6
            // 
            resources.ApplyResources(this.radBandX6, "radBandX6");
            this.radBandX6.FlatAppearance.BorderSize = 0;
            this.radBandX6.Image = null;
            this.radBandX6.Name = "radBandX6";
            this.radBandX6.Click += new System.EventHandler(this.radBandX6_Click);
            this.radBandX6.CheckedChanged += new System.EventHandler(this.radBandX6_CheckedChanged);
            // 
            // radBandX5
            // 
            resources.ApplyResources(this.radBandX5, "radBandX5");
            this.radBandX5.FlatAppearance.BorderSize = 0;
            this.radBandX5.Image = null;
            this.radBandX5.Name = "radBandX5";
            this.radBandX5.Click += new System.EventHandler(this.radBandX5_Click);
            this.radBandX5.CheckedChanged += new System.EventHandler(this.radBandX5_CheckedChanged);
            // 
            // radBandX4
            // 
            resources.ApplyResources(this.radBandX4, "radBandX4");
            this.radBandX4.FlatAppearance.BorderSize = 0;
            this.radBandX4.Image = null;
            this.radBandX4.Name = "radBandX4";
            this.radBandX4.Click += new System.EventHandler(this.radBandX4_Click);
            this.radBandX4.CheckedChanged += new System.EventHandler(this.radBandX4_CheckedChanged);
            // 
            // radBandX3
            // 
            resources.ApplyResources(this.radBandX3, "radBandX3");
            this.radBandX3.FlatAppearance.BorderSize = 0;
            this.radBandX3.Image = null;
            this.radBandX3.Name = "radBandX3";
            this.radBandX3.Click += new System.EventHandler(this.radBandX3_Click);
            this.radBandX3.CheckedChanged += new System.EventHandler(this.radBandX3_CheckedChanged);
            // 
            // radBandX2
            // 
            resources.ApplyResources(this.radBandX2, "radBandX2");
            this.radBandX2.FlatAppearance.BorderSize = 0;
            this.radBandX2.Image = null;
            this.radBandX2.Name = "radBandX2";
            this.radBandX2.Click += new System.EventHandler(this.radBandX2_Click);
            this.radBandX2.CheckedChanged += new System.EventHandler(this.radBandX2_CheckedChanged);
            // 
            // radBandX1
            // 
            resources.ApplyResources(this.radBandX1, "radBandX1");
            this.radBandX1.FlatAppearance.BorderSize = 0;
            this.radBandX1.Image = null;
            this.radBandX1.Name = "radBandX1";
            this.radBandX1.Click += new System.EventHandler(this.radBandX1_Click);
            this.radBandX1.CheckedChanged += new System.EventHandler(this.radBandX1_CheckedChanged);
            // 
            // grpModeSpecificFM
            // 
            resources.ApplyResources(this.grpModeSpecificFM, "grpModeSpecificFM");
            this.grpModeSpecificFM.Controls.Add(this.chkWFMstereo);
            this.grpModeSpecificFM.Controls.Add(this.udFMOffset);
            this.grpModeSpecificFM.Controls.Add(this.labelTS7);
            this.grpModeSpecificFM.Controls.Add(this.radFMModeHigh);
            this.grpModeSpecificFM.Controls.Add(this.radFMModeSimplex);
            this.grpModeSpecificFM.Controls.Add(this.radFMModeLow);
            this.grpModeSpecificFM.Controls.Add(this.chkCTCSS);
            this.grpModeSpecificFM.Controls.Add(this.comboFMCTCSSFreq);
            this.grpModeSpecificFM.Controls.Add(this.grpFMVoiceMsg);
            this.grpModeSpecificFM.Controls.Add(this.ptbFMMicGain);
            this.grpModeSpecificFM.Controls.Add(this.labelTS8);
            this.grpModeSpecificFM.Controls.Add(this.txtFMmemory);
            this.grpModeSpecificFM.Controls.Add(this.lblFMMemory);
            this.grpModeSpecificFM.Controls.Add(this.btnFMMC);
            this.grpModeSpecificFM.Controls.Add(this.btnFMMR);
            this.grpModeSpecificFM.Controls.Add(this.btnFMMS);
            this.grpModeSpecificFM.Name = "grpModeSpecificFM";
            this.grpModeSpecificFM.TabStop = false;
            // 
            // labelTS7
            // 
            resources.ApplyResources(this.labelTS7, "labelTS7");
            this.labelTS7.Image = null;
            this.labelTS7.Name = "labelTS7";
            // 
            // grpFMVoiceMsg
            // 
            this.grpFMVoiceMsg.Controls.Add(this.chkFMMsg6);
            this.grpFMVoiceMsg.Controls.Add(this.chkFMMsg5);
            this.grpFMVoiceMsg.Controls.Add(this.chkFMMsg4);
            this.grpFMVoiceMsg.Controls.Add(this.chkFMMsg3);
            this.grpFMVoiceMsg.Controls.Add(this.chkFMMsg2);
            this.grpFMVoiceMsg.Controls.Add(this.chkFMMsg1);
            resources.ApplyResources(this.grpFMVoiceMsg, "grpFMVoiceMsg");
            this.grpFMVoiceMsg.Name = "grpFMVoiceMsg";
            this.grpFMVoiceMsg.TabStop = false;
            // 
            // chkFMMsg6
            // 
            resources.ApplyResources(this.chkFMMsg6, "chkFMMsg6");
            this.chkFMMsg6.FlatAppearance.BorderSize = 0;
            this.chkFMMsg6.Image = null;
            this.chkFMMsg6.Name = "chkFMMsg6";
            this.chkFMMsg6.UseVisualStyleBackColor = true;
            this.chkFMMsg6.CheckedChanged += new System.EventHandler(this.chkFMMsg6_CheckedChanged);
            this.chkFMMsg6.MouseHover += new System.EventHandler(this.chkFMMsg6_MouseHover);
            // 
            // chkFMMsg5
            // 
            resources.ApplyResources(this.chkFMMsg5, "chkFMMsg5");
            this.chkFMMsg5.FlatAppearance.BorderSize = 0;
            this.chkFMMsg5.Image = null;
            this.chkFMMsg5.Name = "chkFMMsg5";
            this.chkFMMsg5.UseVisualStyleBackColor = true;
            this.chkFMMsg5.CheckedChanged += new System.EventHandler(this.chkFMMsg5_CheckedChanged);
            this.chkFMMsg5.MouseHover += new System.EventHandler(this.chkFMMsg5_MouseHover);
            // 
            // chkFMMsg4
            // 
            resources.ApplyResources(this.chkFMMsg4, "chkFMMsg4");
            this.chkFMMsg4.FlatAppearance.BorderSize = 0;
            this.chkFMMsg4.Image = null;
            this.chkFMMsg4.Name = "chkFMMsg4";
            this.chkFMMsg4.UseVisualStyleBackColor = true;
            this.chkFMMsg4.CheckedChanged += new System.EventHandler(this.chkFMMsg4_CheckedChanged);
            this.chkFMMsg4.MouseHover += new System.EventHandler(this.chkFMMsg4_MouseHover);
            // 
            // chkFMMsg3
            // 
            resources.ApplyResources(this.chkFMMsg3, "chkFMMsg3");
            this.chkFMMsg3.FlatAppearance.BorderSize = 0;
            this.chkFMMsg3.Image = null;
            this.chkFMMsg3.Name = "chkFMMsg3";
            this.chkFMMsg3.UseVisualStyleBackColor = true;
            this.chkFMMsg3.CheckedChanged += new System.EventHandler(this.chkFMMsg3_CheckedChanged);
            this.chkFMMsg3.MouseHover += new System.EventHandler(this.chkFMMsg3_MouseHover);
            // 
            // chkFMMsg2
            // 
            resources.ApplyResources(this.chkFMMsg2, "chkFMMsg2");
            this.chkFMMsg2.FlatAppearance.BorderSize = 0;
            this.chkFMMsg2.Image = null;
            this.chkFMMsg2.Name = "chkFMMsg2";
            this.chkFMMsg2.UseVisualStyleBackColor = true;
            this.chkFMMsg2.CheckedChanged += new System.EventHandler(this.chkFMMsg2_CheckedChanged);
            this.chkFMMsg2.MouseHover += new System.EventHandler(this.chkFMMsg2_MouseHover);
            // 
            // chkFMMsg1
            // 
            resources.ApplyResources(this.chkFMMsg1, "chkFMMsg1");
            this.chkFMMsg1.FlatAppearance.BorderSize = 0;
            this.chkFMMsg1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.chkFMMsg1.Image = null;
            this.chkFMMsg1.Name = "chkFMMsg1";
            this.chkFMMsg1.UseVisualStyleBackColor = false;
            this.chkFMMsg1.CheckedChanged += new System.EventHandler(this.chkFMMsg1_CheckedChanged);
            this.chkFMMsg1.MouseHover += new System.EventHandler(this.chkFMMsg1_MouseHover);
            // 
            // labelTS8
            // 
            this.labelTS8.Image = null;
            resources.ApplyResources(this.labelTS8, "labelTS8");
            this.labelTS8.Name = "labelTS8";
            // 
            // txtFMmemory
            // 
            resources.ApplyResources(this.txtFMmemory, "txtFMmemory");
            this.txtFMmemory.Name = "txtFMmemory";
            // 
            // grpG6
            // 
            this.grpG6.Controls.Add(this.chkG6ATT_18dB);
            this.grpG6.Controls.Add(this.chkG6ATT_12dB);
            this.grpG6.Controls.Add(this.chkG6ATT_6dB);
            this.grpG6.Controls.Add(this.chkG6AF);
            this.grpG6.Controls.Add(this.chkG6RF);
            resources.ApplyResources(this.grpG6, "grpG6");
            this.grpG6.Name = "grpG6";
            this.grpG6.TabStop = false;
            // 
            // Console
            // 
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
            this.BackColor = System.Drawing.SystemColors.Control;
            resources.ApplyResources(this, "$this");
            this.Controls.Add(this.grpG11);
            this.Controls.Add(this.grpModeSpecificPhone);
            this.Controls.Add(this.grpG6);
            this.Controls.Add(this.grpG59);
            this.Controls.Add(this.grpModeSpecificFM);
            this.Controls.Add(this.grpModeSpecificDigital);
            this.Controls.Add(this.grpMainRXMode);
            this.Controls.Add(this.grpSubRXMode);
            this.Controls.Add(this.grpVFOnew);
            this.Controls.Add(this.grpSoundControls);
            this.Controls.Add(this.grpSoundControls1);
            this.Controls.Add(this.grpVFOB);
            this.Controls.Add(this.menuStrip1);
            this.Controls.Add(this.btnUSB);
            this.Controls.Add(this.grpZoom);
            this.Controls.Add(this.grpSubRX);
            this.Controls.Add(this.grpVFOBetween);
            this.Controls.Add(this.grpDisplay2);
            this.Controls.Add(this.grpOptions);
            this.Controls.Add(this.grpVFO);
            this.Controls.Add(this.lblCPUMeter);
            this.Controls.Add(this.grpDisplay);
            this.Controls.Add(this.chkPower);
            this.Controls.Add(this.grpLOSC);
            this.Controls.Add(this.grpVFOA);
            this.Controls.Add(this.grpDSPMainRX);
            this.Controls.Add(this.grpDSPSubRX);
            this.Controls.Add(this.btnNetwork);
            this.Controls.Add(this.grpG500);
            this.Controls.Add(this.grpG137);
            this.Controls.Add(this.grpG40);
            this.Controls.Add(this.grpG160);
            this.Controls.Add(this.grpG3020);
            this.Controls.Add(this.grpG80);
            this.Controls.Add(this.grpMainRXFilter);
            this.Controls.Add(this.grpSubRXFilter);
            this.Controls.Add(this.grpBandHF);
            this.Controls.Add(this.grpModeSpecificCW);
            this.Controls.Add(this.grpManualNotch);
            this.Controls.Add(this.picSmallAGauge);
            this.Controls.Add(this.grpMultimeter);
            this.Controls.Add(this.grpMoreBands);
            this.DoubleBuffered = true;
            this.KeyPreview = true;
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "Console";
            this.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.Console_MouseWheel);
            this.SizeChanged += new System.EventHandler(this.Console_Resize);
            this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Console_KeyPress);
            this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Console_KeyUp);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Console_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ptbPWR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRF)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbAF)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCWPitch)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCWSpeed)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRX0Gain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbPanSubRX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbPanMainRX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRX1Gain)).EndInit();
            this.contextMenuMUTE.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.udFilterHigh)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udFilterLow)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbFilterWidth)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbFilterShift)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udXIT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udRIT)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udVACTXGain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udVACRXGain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSubRXFilterHigh)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSubRXFilterLow)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSubRXFilterWidth)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSubRXFilterShift)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSQLMainRX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSQLSubRX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbSQLSubRX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udSQLMainRX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbPWR1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbRF1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbAF1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udRF1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udPWR1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udAF1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbNotchWidth)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbNotchShift)).EndInit();
            this.contextMemoryMenu.ResumeLayout(false);
            this.contextMenuFMMemory.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.udFMOffset)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbFMMicGain)).EndInit();
            this.contextLOSCMenu.ResumeLayout(false);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.contextNewVFOSmeter.ResumeLayout(false);
            this.contextNewVFOSmeter.PerformLayout();
            this.grpG500.ResumeLayout(false);
            this.grpG137.ResumeLayout(false);
            this.grpG40.ResumeLayout(false);
            this.grpModeSpecificPhone.ResumeLayout(false);
            this.groupBoxTS1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.udNoiseGate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udVOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbMIC)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCPDR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbCPDR)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udCOMP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbCOMP)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picNoiseGate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbNoiseGate)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picVOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbVOX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.udMIC)).EndInit();
            this.grpVFOA.ResumeLayout(false);
            this.grpVFOA.PerformLayout();
            this.grpVFOnew.ResumeLayout(false);
            this.grpVFOnew.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picAGauge)).EndInit();
            this.grpSoundControls.ResumeLayout(false);
            this.grpSoundControls.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picSQLSubRX)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picSQLMainRX)).EndInit();
            this.grpModeSpecificCW.ResumeLayout(false);
            this.grpCWX.ResumeLayout(false);
            this.grpCWPitch.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ptbCWSpeed)).EndInit();
            this.grpVFOB.ResumeLayout(false);
            this.grpVFOB.PerformLayout();
            this.grpLOSC.ResumeLayout(false);
            this.grpLOSC.PerformLayout();
            this.grpG160.ResumeLayout(false);
            this.grpG3020.ResumeLayout(false);
            this.grpG80.ResumeLayout(false);
            this.grpG59.ResumeLayout(false);
            this.grpZoom.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ptbDisplayZoom)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbDisplayPan)).EndInit();
            this.grpSubRX.ResumeLayout(false);
            this.grpSubRX.PerformLayout();
            this.grpBandHF.ResumeLayout(false);
            this.grpVFOBetween.ResumeLayout(false);
            this.grpVFOBetween.PerformLayout();
            this.grpDisplay2.ResumeLayout(false);
            this.grpOptions.ResumeLayout(false);
            this.grpModeSpecificDigital.ResumeLayout(false);
            this.grpDIGSampleRate.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.ptbVACTXGain)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.ptbVACRXGain)).EndInit();
            this.grpDisplay.ResumeLayout(false);
            this.grpDisplay.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picWaterfall)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picDisplay)).EndInit();
            this.grpMainRXFilter.ResumeLayout(false);
            this.grpDSPMainRX.ResumeLayout(false);
            this.grpMultimeter.ResumeLayout(false);
            this.grpMultimeter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picMultiMeterDigital)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picMultimeterAnalog)).EndInit();
            this.grpVFO.ResumeLayout(false);
            this.grpVFO.PerformLayout();
            this.grpManualNotch.ResumeLayout(false);
            this.grpManualNotch.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picSmallAGauge)).EndInit();
            this.grpSubRXFilter.ResumeLayout(false);
            this.grpDSPSubRX.ResumeLayout(false);
            this.grpSoundControls1.ResumeLayout(false);
            this.grpSubRXMode.ResumeLayout(false);
            this.grpMainRXMode.ResumeLayout(false);
            this.grpG11.ResumeLayout(false);
            this.grpMoreBands.ResumeLayout(false);
            this.grpModeSpecificFM.ResumeLayout(false);
            this.grpModeSpecificFM.PerformLayout();
            this.grpFMVoiceMsg.ResumeLayout(false);
            this.grpG6.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }