public ColorPanel(Point pt, ColorButton button) { colorButton = button; FormBorderStyle = FormBorderStyle.FixedDialog; MinimizeBox = false; MaximizeBox = false; ControlBox = false; ShowInTaskbar = false; TopMost = true; SetStyle(ControlStyles.DoubleBuffer, true); SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); Width = 156; Height = 100; if (colorButton.autoButton != "") { Height += 23; } if (colorButton.moreButton != "") { Height += 23; } CenterToScreen(); Location = pt; Capture = true; }
public static void RestoreForm(Form form, string tablename, bool restore_size) { ArrayList temp = new ArrayList(); // list of all first level controls //int VUskip = 0; ControlList(form, ref temp); ArrayList checkbox_list = new ArrayList(); ArrayList combobox_list = new ArrayList(); ArrayList numericupdown_list = new ArrayList(); ArrayList radiobutton_list = new ArrayList(); ArrayList textbox_list = new ArrayList(); ArrayList trackbar_list = new ArrayList(); ArrayList colorbutton_list = new ArrayList(); //ArrayList controls = new ArrayList(); // list of controls to restore foreach (Control c in temp) { if (c.GetType() == typeof(CheckBoxTS)) // the control is a CheckBoxTS { checkbox_list.Add(c); } else if (c.GetType() == typeof(ComboBoxTS)) // the control is a ComboBox { combobox_list.Add(c); } else if (c.GetType() == typeof(NumericUpDownTS))// the control is a NumericUpDown { numericupdown_list.Add(c); } else if (c.GetType() == typeof(RadioButtonTS)) // the control is a RadioButton { radiobutton_list.Add(c); } else if (c.GetType() == typeof(TextBoxTS)) // the control is a TextBox { textbox_list.Add(c); } else if (c.GetType() == typeof(TrackBarTS)) // the control is a TrackBar (slider) { trackbar_list.Add(c); } else if (c.GetType() == typeof(ColorButton)) { colorbutton_list.Add(c); } } temp.Clear(); // now that we have the controls we want, delete first list ArrayList a = DB.GetVars(tablename); // Get the saved list of controls a.Sort(); // restore saved values to the controls foreach (string s in a) // string is in the format "name,value" { string[] vals = s.Split('/'); if (vals.Length > 2) { for (int i = 2; i < vals.Length; i++) { vals[1] += "/" + vals[i]; } } string name = vals[0]; string val = vals[1]; switch (name) { case "Top": form.StartPosition = FormStartPosition.Manual; int top = int.Parse(val); /*if(top < 0) top = 0; * if(top > Screen.PrimaryScreen.Bounds.Height-form.Height && Screen.AllScreens.Length == 1) * top = Screen.PrimaryScreen.Bounds.Height-form.Height;*/ form.Top = top; break; case "Left": form.StartPosition = FormStartPosition.Manual; int left = int.Parse(val); /*if(left < 0) left = 0; * if(left > Screen.PrimaryScreen.Bounds.Width-form.Width && Screen.AllScreens.Length == 1) * left = Screen.PrimaryScreen.Bounds.Width-form.Width;*/ form.Left = left; break; case "Width": if (restore_size) { int width = int.Parse(val); /*if(width + form.Left > Screen.PrimaryScreen.Bounds.Width && Screen.AllScreens.Length == 1) * form.Left -= (width+form.Left-Screen.PrimaryScreen.Bounds.Width);*/ form.Width = width; } break; case "Height": if (restore_size) { int height = int.Parse(val); /*if(height + form.Top > Screen.PrimaryScreen.Bounds.Height && Screen.AllScreens.Length == 1) * form.Top -= (height+form.Top-Screen.PrimaryScreen.Bounds.Height);*/ form.Height = height; } break; } if (s.StartsWith("chk")) // control is a CheckBoxTS { for (int i = 0; i < checkbox_list.Count; i++) { // look through each control to find the matching name CheckBoxTS c = (CheckBoxTS)checkbox_list[i]; if (c.Name.Equals(name)) // name found { c.Checked = bool.Parse(val); // restore value i = checkbox_list.Count + 1; } if (i == checkbox_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("combo")) // control is a ComboBox { for (int i = 0; i < combobox_list.Count; i++) { // look through each control to find the matching name ComboBoxTS c = (ComboBoxTS)combobox_list[i]; if (c.Name.Equals(name)) // name found { c.Text = val; // restore value i = combobox_list.Count + 1; if (c.Text != val) { Debug.WriteLine("Warning: " + form.Name + "." + name + " did not set to " + val); } } if (i == combobox_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("ud")) { for (int i = 0; i < numericupdown_list.Count; i++) { // look through each control to find the matching name NumericUpDownTS c = (NumericUpDownTS)numericupdown_list[i]; if (c.Name.Equals(name)) // name found { decimal num = decimal.Parse(val); if (num > c.Maximum) { num = c.Maximum; // check endpoints } else if (num < c.Minimum) { num = c.Minimum; } c.Value = num; // restore value i = numericupdown_list.Count + 1; } if (i == numericupdown_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("rad")) { // look through each control to find the matching name for (int i = 0; i < radiobutton_list.Count; i++) { RadioButtonTS c = (RadioButtonTS)radiobutton_list[i]; if (c.Name.Equals(name)) // name found { if (!val.ToLower().Equals("true") && !val.ToLower().Equals("false")) { val = "True"; } c.Checked = bool.Parse(val); // restore value i = radiobutton_list.Count + 1; } if (i == radiobutton_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("txt")) { // look through each control to find the matching name for (int i = 0; i < textbox_list.Count; i++) { TextBoxTS c = (TextBoxTS)textbox_list[i]; if (c.Name.Equals(name)) // name found { c.Text = val; // restore value i = textbox_list.Count + 1; } if (i == textbox_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("tb")) { // look through each control to find the matching name for (int i = 0; i < trackbar_list.Count; i++) { TrackBarTS c = (TrackBarTS)trackbar_list[i]; if (c.Name.Equals(name)) // name found { int num = int.Parse(val); if (num > c.Maximum) { num = c.Maximum; } if (num < c.Minimum) { num = c.Minimum; } c.Value = num; i = trackbar_list.Count + 1; } if (i == trackbar_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("clrbtn")) { string[] colors = val.Split('.'); if (colors.Length == 4) { int R, G, B, A; R = Int32.Parse(colors[0]); G = Int32.Parse(colors[1]); B = Int32.Parse(colors[2]); A = Int32.Parse(colors[3]); for (int i = 0; i < colorbutton_list.Count; i++) { ColorButton c = (ColorButton)colorbutton_list[i]; if (c.Name.Equals(name)) // name found { c.Color = Color.FromArgb(A, R, G, B); i = colorbutton_list.Count + 1; } if (i == colorbutton_list.Count) { MessageBox.Show("Control not found: " + name); } } } } } ForceFormOnScreen(form); }
public void RestoreSettings() { ArrayList temp = new ArrayList(); // list of all first level controls ControlList(this, ref temp); ArrayList checkbox_list = new ArrayList(); ArrayList combobox_list = new ArrayList(); ArrayList numericupdown_list = new ArrayList(); ArrayList radiobutton_list = new ArrayList(); ArrayList textbox_list = new ArrayList(); ArrayList trackbar_list = new ArrayList(); ArrayList colorbutton_list = new ArrayList(); //ArrayList controls = new ArrayList(); // list of controls to restore foreach (Control c in temp) { if (c.GetType() == typeof(CheckBoxTS)) // the control is a CheckBoxTS { checkbox_list.Add(c); } else if (c.GetType() == typeof(ComboBoxTS)) // the control is a ComboBox { combobox_list.Add(c); } else if (c.GetType() == typeof(NumericUpDownTS)) // the control is a NumericUpDown { numericupdown_list.Add(c); } else if (c.GetType() == typeof(RadioButtonTS)) // the control is a RadioButton { radiobutton_list.Add(c); } else if (c.GetType() == typeof(TextBoxTS)) // the control is a TextBox { textbox_list.Add(c); } else if (c.GetType() == typeof(TrackBarTS)) // the control is a TrackBar (slider) { trackbar_list.Add(c); } else if (c.GetType() == typeof(ColorButton)) { colorbutton_list.Add(c); } } temp.Clear(); // now that we have the controls we want, delete first list ArrayList a = DB.GetVars("EQForm"); // Get the saved list of controls a.Sort(); // restore saved values to the controls foreach (string s in a) // string is in the format "name,value" { string[] vals = s.Split('/'); if (vals.Length > 2) { for (int i = 2; i < vals.Length; i++) { vals[1] += "/" + vals[i]; } } string name = vals[0]; string val = vals[1]; if (s.StartsWith("chk")) // control is a CheckBoxTS { for (int i = 0; i < checkbox_list.Count; i++) { // look through each control to find the matching name CheckBoxTS c = (CheckBoxTS)checkbox_list[i]; if (c.Name.Equals(name)) // name found { c.Checked = bool.Parse(val); // restore value i = checkbox_list.Count + 1; } if (i == checkbox_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("combo")) // control is a ComboBox { for (int i = 0; i < combobox_list.Count; i++) { // look through each control to find the matching name ComboBoxTS c = (ComboBoxTS)combobox_list[i]; if (c.Name.Equals(name)) // name found { c.Text = val; // restore value i = combobox_list.Count + 1; } if (i == combobox_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("ud")) { for (int i = 0; i < numericupdown_list.Count; i++) { // look through each control to find the matching name NumericUpDownTS c = (NumericUpDownTS)numericupdown_list[i]; if (c.Name.Equals(name)) // name found { decimal num = decimal.Parse(val); if (num > c.Maximum) { num = c.Maximum; // check endpoints } else if (num < c.Minimum) { num = c.Minimum; } c.Value = num; // restore value i = numericupdown_list.Count + 1; } if (i == numericupdown_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("rad")) { // look through each control to find the matching name for (int i = 0; i < radiobutton_list.Count; i++) { RadioButtonTS c = (RadioButtonTS)radiobutton_list[i]; if (c.Name.Equals(name)) // name found { if (!val.ToLower().Equals("true") && !val.ToLower().Equals("false")) { val = "True"; } c.Checked = bool.Parse(val); // restore value i = radiobutton_list.Count + 1; } if (i == radiobutton_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("txt")) { // look through each control to find the matching name for (int i = 0; i < textbox_list.Count; i++) { TextBoxTS c = (TextBoxTS)textbox_list[i]; if (c.Name.Equals(name)) // name found { c.Text = val; // restore value i = textbox_list.Count + 1; } if (i == textbox_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("tb")) { // look through each control to find the matching name for (int i = 0; i < trackbar_list.Count; i++) { TrackBarTS c = (TrackBarTS)trackbar_list[i]; if (c.Name.Equals(name)) // name found { c.Value = Int32.Parse(val); i = trackbar_list.Count + 1; } if (i == trackbar_list.Count) { MessageBox.Show("Control not found: " + name); } } } else if (s.StartsWith("clrbtn")) { string[] colors = val.Split('.'); if (colors.Length == 4) { int R, G, B, A; R = Int32.Parse(colors[0]); G = Int32.Parse(colors[1]); B = Int32.Parse(colors[2]); A = Int32.Parse(colors[3]); for (int i = 0; i < colorbutton_list.Count; i++) { ColorButton c = (ColorButton)colorbutton_list[i]; if (c.Name.Equals(name)) // name found { c.Color = Color.FromArgb(A, R, G, B); i = colorbutton_list.Count + 1; } if (i == colorbutton_list.Count) { MessageBox.Show("Control not found: " + name); } } } } } }
public ColorPanel(Point pt, ColorButton button) { colorButton = button; FormBorderStyle = FormBorderStyle.FixedDialog; MinimizeBox = false; MaximizeBox = false; ControlBox = false; ShowInTaskbar = false; TopMost = true; SetStyle(ControlStyles.DoubleBuffer, true); SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); Width = 156; Height = 100; if(colorButton.autoButton != "") Height += 23; if(colorButton.moreButton != "") Height += 23; CenterToScreen(); Location = pt; Capture = true; }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Setup)); this.tcSetup = new System.Windows.Forms.TabControl(); this.tpGeneral = new System.Windows.Forms.TabPage(); this.tcGeneral = new System.Windows.Forms.TabControl(); this.tpGeneralHardware = new System.Windows.Forms.TabPage(); this.grpHWSoftRock = new System.Windows.Forms.GroupBoxTS(); this.lblGenSoftRockCenterFreq = new System.Windows.Forms.LabelTS(); this.udSoftRockCenterFreq = new System.Windows.Forms.NumericUpDownTS(); this.grpGeneralDDS = new System.Windows.Forms.GroupBoxTS(); this.chkGenDDSExpert = new System.Windows.Forms.CheckBox(); this.udDDSCorrection = new System.Windows.Forms.NumericUpDownTS(); this.lblClockCorrection = new System.Windows.Forms.LabelTS(); this.udDDSIFFreq = new System.Windows.Forms.NumericUpDownTS(); this.lblIFFrequency = new System.Windows.Forms.LabelTS(); this.udDDSPLLMult = new System.Windows.Forms.NumericUpDownTS(); this.lblPLLMult = new System.Windows.Forms.LabelTS(); this.grpGeneralModel = new System.Windows.Forms.GroupBoxTS(); this.radGenModelFLEX1500 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelFLEX5000 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelDemoNone = new System.Windows.Forms.RadioButtonTS(); this.radGenModelSoftRock40 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelSDR1000 = new System.Windows.Forms.RadioButtonTS(); this.btnWizard = new System.Windows.Forms.ButtonTS(); this.chkGeneralRXOnly = new System.Windows.Forms.CheckBoxTS(); this.grpGeneralHardwareFLEX5000 = new System.Windows.Forms.GroupBoxTS(); this.lblFlexControlRev = new System.Windows.Forms.LabelTS(); this.lblVURev = new System.Windows.Forms.LabelTS(); this.udF3KFanTempThresh = new System.Windows.Forms.NumericUpDownTS(); this.lblF3KFanTempThresh = new System.Windows.Forms.LabelTS(); this.chkGenFLEX5000ExtRef = new System.Windows.Forms.CheckBoxTS(); this.lblFirmwareRev = new System.Windows.Forms.LabelTS(); this.lblRX2Rev = new System.Windows.Forms.LabelTS(); this.lblATURev = new System.Windows.Forms.LabelTS(); this.lblRFIORev = new System.Windows.Forms.LabelTS(); this.lblPARev = new System.Windows.Forms.LabelTS(); this.lblTRXRev = new System.Windows.Forms.LabelTS(); this.lblSerialNum = new System.Windows.Forms.LabelTS(); this.lblModel = new System.Windows.Forms.LabelTS(); this.grpGeneralHardwareSDR1000 = new System.Windows.Forms.GroupBoxTS(); this.lblFlexControlRev1K = new System.Windows.Forms.LabelTS(); this.chkEnableRFEPATR = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralUSBPresent = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralATUPresent = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralPAPresent = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralXVTRPresent = new System.Windows.Forms.CheckBoxTS(); this.lblGeneralLPTDelay = new System.Windows.Forms.LabelTS(); this.udGeneralLPTDelay = new System.Windows.Forms.NumericUpDownTS(); this.lblGeneralLPTAddr = new System.Windows.Forms.LabelTS(); this.comboGeneralLPTAddr = new System.Windows.Forms.ComboBoxTS(); this.comboGeneralXVTR = new System.Windows.Forms.ComboBoxTS(); this.grpGeneralHardwareFLEX1500 = new System.Windows.Forms.GroupBoxTS(); this.lblFlexControlRev1500 = new System.Windows.Forms.LabelTS(); this.chkGenFLEX1500Xref = new System.Windows.Forms.CheckBoxTS(); this.lbl1500FWRev = new System.Windows.Forms.LabelTS(); this.lbl1500PARev = new System.Windows.Forms.LabelTS(); this.lbl1500TRXRev = new System.Windows.Forms.LabelTS(); this.lbl1500SN = new System.Windows.Forms.LabelTS(); this.tpGeneralOptions = new System.Windows.Forms.TabPage(); this.chkGenOptionsShowATUPopup = new System.Windows.Forms.CheckBoxTS(); this.chkImportDBRestrict = new System.Windows.Forms.CheckBoxTS(); this.grpOptUSBBuf = new System.Windows.Forms.GroupBoxTS(); this.lblOptUSBBufConservative = new System.Windows.Forms.LabelTS(); this.lblOptUSBBufAggressive = new System.Windows.Forms.LabelTS(); this.tbOptUSBBuf = new System.Windows.Forms.TrackBarTS(); this.grpGenCustomTitleText = new System.Windows.Forms.GroupBoxTS(); this.txtGenCustomTitle = new System.Windows.Forms.TextBoxTS(); this.grpOptMisc = new System.Windows.Forms.GroupBoxTS(); this.chkWheelTuneVFOB = new System.Windows.Forms.CheckBoxTS(); this.chkMouseTuneStep = new System.Windows.Forms.CheckBoxTS(); this.chkZeroBeatRIT = new System.Windows.Forms.CheckBoxTS(); this.chkSnapClickTune = new System.Windows.Forms.CheckBoxTS(); this.chkDisableToolTips = new System.Windows.Forms.CheckBoxTS(); this.chkOptAlwaysOnTop = new System.Windows.Forms.CheckBoxTS(); this.grpOptQuickQSY = new System.Windows.Forms.GroupBoxTS(); this.chkOptEnableKBShortcuts = new System.Windows.Forms.CheckBoxTS(); this.chkOptQuickQSY = new System.Windows.Forms.CheckBoxTS(); this.grpGenAutoMute = new System.Windows.Forms.GroupBoxTS(); this.chkGenAutoMute = new System.Windows.Forms.CheckBoxTS(); this.grpGenTuningOptions = new System.Windows.Forms.GroupBoxTS(); this.udOptClickTuneOffsetDIGU = new System.Windows.Forms.NumericUpDownTS(); this.lblOptClickTuneDIGL = new System.Windows.Forms.LabelTS(); this.udOptClickTuneOffsetDIGL = new System.Windows.Forms.NumericUpDownTS(); this.lblOptClickTuneDIGU = new System.Windows.Forms.LabelTS(); this.grpGeneralOptions = new System.Windows.Forms.GroupBoxTS(); this.udGenTX1Delay = new System.Windows.Forms.NumericUpDownTS(); this.chkSplitOffOnModeChange = new System.Windows.Forms.CheckBoxTS(); this.lblGenTX1Delay = new System.Windows.Forms.LabelTS(); this.chkGenTX1Delay = new System.Windows.Forms.CheckBoxTS(); this.chkSplitOff = new System.Windows.Forms.CheckBoxTS(); this.chkGenAllModeMicPTT = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralCustomFilter = new System.Windows.Forms.CheckBoxTS(); this.lblGeneralX2Delay = new System.Windows.Forms.LabelTS(); this.udGeneralX2Delay = new System.Windows.Forms.NumericUpDownTS(); this.chkGeneralEnableX2 = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralSoftwareGainCorr = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralDisablePTT = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralSpurRed = new System.Windows.Forms.CheckBoxTS(); this.grpGeneralProcessPriority = new System.Windows.Forms.GroupBoxTS(); this.comboGeneralProcessPriority = new System.Windows.Forms.ComboBoxTS(); this.tpGeneralCalibration = new System.Windows.Forms.TabPage(); this.chkCalExpert = new System.Windows.Forms.CheckBox(); this.grpGenCalRXImage = new System.Windows.Forms.GroupBoxTS(); this.udGeneralCalFreq3 = new System.Windows.Forms.NumericUpDownTS(); this.lblGenCalRXImageFreq = new System.Windows.Forms.LabelTS(); this.btnGeneralCalImageStart = new System.Windows.Forms.ButtonTS(); this.grpGenCalLevel = new System.Windows.Forms.GroupBoxTS(); this.udGeneralCalLevel = new System.Windows.Forms.NumericUpDownTS(); this.udGeneralCalFreq2 = new System.Windows.Forms.NumericUpDownTS(); this.lblGenCalLevelFreq = new System.Windows.Forms.LabelTS(); this.lblGeneralCalLevel = new System.Windows.Forms.LabelTS(); this.btnGeneralCalLevelStart = new System.Windows.Forms.ButtonTS(); this.grpGeneralCalibration = new System.Windows.Forms.GroupBoxTS(); this.btnGeneralCalFreqUseVFOA = new System.Windows.Forms.ButtonTS(); this.btnGeneralCalFreqStart = new System.Windows.Forms.ButtonTS(); this.udGeneralCalFreq1 = new System.Windows.Forms.NumericUpDownTS(); this.lblGeneralCalFrequency = new System.Windows.Forms.LabelTS(); this.tpFilters = new System.Windows.Forms.TabPage(); this.grpOptFilterControls = new System.Windows.Forms.GroupBoxTS(); this.udFilterDefaultLowCut = new System.Windows.Forms.NumericUpDownTS(); this.lblDefaultLowCut = new System.Windows.Forms.LabelTS(); this.udOptMaxFilterShift = new System.Windows.Forms.NumericUpDownTS(); this.lblOptMaxFilterShift = new System.Windows.Forms.LabelTS(); this.comboOptFilterWidthMode = new System.Windows.Forms.ComboBoxTS(); this.lblOptWidthSliderMode = new System.Windows.Forms.LabelTS(); this.udOptMaxFilterWidth = new System.Windows.Forms.NumericUpDownTS(); this.lblOptMaxFilter = new System.Windows.Forms.LabelTS(); this.chkOptFilterSaveChanges = new System.Windows.Forms.CheckBoxTS(); this.tpRX2 = new System.Windows.Forms.TabPage(); this.chkRX2DisconnectOnTX = new System.Windows.Forms.CheckBoxTS(); this.chkRX2AutoMuteRX1OnVFOBTX = new System.Windows.Forms.CheckBoxTS(); this.chkRX2AutoMuteRX2OnVFOATX = new System.Windows.Forms.CheckBoxTS(); this.tpGeneralNavigation = new System.Windows.Forms.TabPage(); this.grpOptSpaceNav = new System.Windows.Forms.GroupBoxTS(); this.chkSpaceNavFlyPanadapter = new System.Windows.Forms.CheckBoxTS(); this.chkSpaceNavControlVFOs = new System.Windows.Forms.CheckBoxTS(); this.tpAudio = new System.Windows.Forms.TabPage(); this.tcAudio = new System.Windows.Forms.TabControl(); this.tpAudioCard1 = new System.Windows.Forms.TabPage(); this.chkAudioExpert = new System.Windows.Forms.CheckBoxTS(); this.grpAudioMicBoost = new System.Windows.Forms.GroupBoxTS(); this.grpAudioChannels = new System.Windows.Forms.GroupBoxTS(); this.comboAudioChannels1 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioMicInGain1 = new System.Windows.Forms.GroupBoxTS(); this.udAudioMicGain1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioLineInGain1 = new System.Windows.Forms.GroupBoxTS(); this.udAudioLineIn1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioVolts1 = new System.Windows.Forms.GroupBoxTS(); this.btnAudioVoltTest1 = new System.Windows.Forms.ButtonTS(); this.udAudioVoltage1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioDetails1 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioTransmit1 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioMixer1 = new System.Windows.Forms.LabelTS(); this.lblAudioOutput1 = new System.Windows.Forms.LabelTS(); this.comboAudioOutput1 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioInput1 = new System.Windows.Forms.LabelTS(); this.lblAudioDriver1 = new System.Windows.Forms.LabelTS(); this.comboAudioInput1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioDriver1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioMixer1 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioTransmit1 = new System.Windows.Forms.LabelTS(); this.lblAudioReceive1 = new System.Windows.Forms.LabelTS(); this.comboAudioReceive1 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioLatency1 = new System.Windows.Forms.GroupBoxTS(); this.chkAudioLatencyManual1 = new System.Windows.Forms.CheckBoxTS(); this.udAudioLatency1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioCard = new System.Windows.Forms.GroupBoxTS(); this.comboAudioSoundCard = new System.Windows.Forms.ComboBoxTS(); this.grpAudioBufferSize1 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioBuffer1 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioSampleRate1 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioSampleRate1 = new System.Windows.Forms.ComboBoxTS(); this.tpVAC = new System.Windows.Forms.TabPage(); this.grpDirectIQOutput = new System.Windows.Forms.GroupBoxTS(); this.chkAudioRX2toVAC = new System.Windows.Forms.CheckBoxTS(); this.chkAudioCorrectIQ = new System.Windows.Forms.CheckBoxTS(); this.chkAudioIQtoVAC = new System.Windows.Forms.CheckBoxTS(); this.chkVACCombine = new System.Windows.Forms.CheckBoxTS(); this.chkVACAllowBypass = new System.Windows.Forms.CheckBoxTS(); this.grpAudioVACAutoEnable = new System.Windows.Forms.GroupBoxTS(); this.chkAudioVACAutoEnable = new System.Windows.Forms.CheckBoxTS(); this.grpAudioVACGain = new System.Windows.Forms.GroupBoxTS(); this.lblAudioVACGainTX = new System.Windows.Forms.LabelTS(); this.udAudioVACGainTX = new System.Windows.Forms.NumericUpDownTS(); this.lblAudioVACGainRX = new System.Windows.Forms.LabelTS(); this.udAudioVACGainRX = new System.Windows.Forms.NumericUpDownTS(); this.grpAudio2Stereo = new System.Windows.Forms.GroupBoxTS(); this.chkAudio2Stereo = new System.Windows.Forms.CheckBoxTS(); this.grpAudioLatency2 = new System.Windows.Forms.GroupBoxTS(); this.chkAudioLatencyManual2 = new System.Windows.Forms.CheckBoxTS(); this.udAudioLatency2 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioSampleRate2 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioSampleRate2 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioBuffer2 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioBuffer2 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioDetails2 = new System.Windows.Forms.GroupBoxTS(); this.lblAudioOutput2 = new System.Windows.Forms.LabelTS(); this.comboAudioOutput2 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioInput2 = new System.Windows.Forms.LabelTS(); this.lblAudioDriver2 = new System.Windows.Forms.LabelTS(); this.comboAudioInput2 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioDriver2 = new System.Windows.Forms.ComboBoxTS(); this.chkAudioEnableVAC = new System.Windows.Forms.CheckBoxTS(); this.tpVAC2 = new System.Windows.Forms.TabPage(); this.chkVAC2UseRX2 = new System.Windows.Forms.CheckBoxTS(); this.grpVAC2DirectIQ = new System.Windows.Forms.GroupBoxTS(); this.chkVAC2DirectIQCal = new System.Windows.Forms.CheckBoxTS(); this.chkVAC2DirectIQ = new System.Windows.Forms.CheckBoxTS(); this.chkVAC2Combine = new System.Windows.Forms.CheckBoxTS(); this.grpVAC2AutoEnable = new System.Windows.Forms.GroupBoxTS(); this.chkVAC2AutoEnable = new System.Windows.Forms.CheckBoxTS(); this.grpVAC2Gain = new System.Windows.Forms.GroupBoxTS(); this.lblVAC2GainTX = new System.Windows.Forms.LabelTS(); this.udVAC2GainTX = new System.Windows.Forms.NumericUpDownTS(); this.lblVAC2GainRX = new System.Windows.Forms.LabelTS(); this.udVAC2GainRX = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioStereo3 = new System.Windows.Forms.GroupBoxTS(); this.chkAudioStereo3 = new System.Windows.Forms.CheckBoxTS(); this.grpVAC2Latency = new System.Windows.Forms.GroupBoxTS(); this.chkVAC2LatencyManual = new System.Windows.Forms.CheckBoxTS(); this.udVAC2Latency = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioSampleRate3 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioSampleRate3 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioBuffer3 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioBuffer3 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioDetails3 = new System.Windows.Forms.GroupBoxTS(); this.lblAudioOutput3 = new System.Windows.Forms.LabelTS(); this.comboAudioOutput3 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioInput3 = new System.Windows.Forms.LabelTS(); this.lblAudioDriver3 = new System.Windows.Forms.LabelTS(); this.comboAudioInput3 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioDriver3 = new System.Windows.Forms.ComboBoxTS(); this.chkVAC2Enable = new System.Windows.Forms.CheckBoxTS(); this.tpDisplay = new System.Windows.Forms.TabPage(); this.grpDisplayMultimeter = new System.Windows.Forms.GroupBoxTS(); this.chkDisplayMeterShowDecimal = new System.Windows.Forms.CheckBoxTS(); this.udMeterDigitalDelay = new System.Windows.Forms.NumericUpDownTS(); this.lblMultimeterDigitalDelay = new System.Windows.Forms.LabelTS(); this.udDisplayMeterAvg = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMeterAvg = new System.Windows.Forms.LabelTS(); this.udDisplayMultiTextHoldTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMeterTextHoldTime = new System.Windows.Forms.LabelTS(); this.udDisplayMultiPeakHoldTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMultiPeakHoldTime = new System.Windows.Forms.LabelTS(); this.udDisplayMeterDelay = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMeterDelay = new System.Windows.Forms.LabelTS(); this.grpDisplayDriverEngine = new System.Windows.Forms.GroupBoxTS(); this.comboDisplayDriver = new System.Windows.Forms.ComboBoxTS(); this.grpDisplayPolyPhase = new System.Windows.Forms.GroupBoxTS(); this.chkSpectrumPolyphase = new System.Windows.Forms.CheckBoxTS(); this.grpDisplayScopeMode = new System.Windows.Forms.GroupBoxTS(); this.udDisplayScopeTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayScopeTime = new System.Windows.Forms.LabelTS(); this.grpDisplayWaterfall = new System.Windows.Forms.GroupBoxTS(); this.chkWeakSignalWaterfallSettings = new System.Windows.Forms.CheckBoxTS(); this.lblWaterfallLevels = new System.Windows.Forms.Label(); this.txtWaterFallBandLevel = new System.Windows.Forms.TextBox(); this.udDisplayWaterfallUpdatePeriod = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayWaterfallUpdatePeriod = new System.Windows.Forms.LabelTS(); this.udDisplayWaterfallAvgTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayWaterfallAverageTime = new System.Windows.Forms.LabelTS(); this.clrbtnWaterfallLow = new PowerSDR.ColorButton(); this.lblDisplayWaterfallLowColor = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallLowLevel = new System.Windows.Forms.LabelTS(); this.udDisplayWaterfallLowLevel = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayWaterfallHighLevel = new System.Windows.Forms.LabelTS(); this.udDisplayWaterfallHighLevel = new System.Windows.Forms.NumericUpDownTS(); this.grpDisplayRefreshRates = new System.Windows.Forms.GroupBoxTS(); this.chkDisplayPanFill = new System.Windows.Forms.CheckBoxTS(); this.udDisplayCPUMeter = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayCPUMeter = new System.Windows.Forms.LabelTS(); this.udDisplayPeakText = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayPeakText = new System.Windows.Forms.LabelTS(); this.udDisplayFPS = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayFPS = new System.Windows.Forms.LabelTS(); this.grpDisplayAverage = new System.Windows.Forms.GroupBoxTS(); this.udDisplayAVGTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayAVGTime = new System.Windows.Forms.LabelTS(); this.grpDisplayPhase = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayPhasePts = new System.Windows.Forms.LabelTS(); this.udDisplayPhasePts = new System.Windows.Forms.NumericUpDownTS(); this.grpDisplaySpectrumGrid = new System.Windows.Forms.GroupBoxTS(); this.comboDisplayLabelAlign = new System.Windows.Forms.ComboBoxTS(); this.lblDisplayAlign = new System.Windows.Forms.LabelTS(); this.udDisplayGridStep = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayGridMin = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayGridMax = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayGridStep = new System.Windows.Forms.LabelTS(); this.lblDisplayGridMin = new System.Windows.Forms.LabelTS(); this.lblDisplayGridMax = new System.Windows.Forms.LabelTS(); this.tpDSP = new System.Windows.Forms.TabPage(); this.tcDSP = new System.Windows.Forms.TabControl(); this.tpDSPOptions = new System.Windows.Forms.TabPage(); this.chkDSPTXMeterPeak = new System.Windows.Forms.CheckBoxTS(); this.grpDSPBufferSize = new System.Windows.Forms.GroupBoxTS(); this.grpDSPBufDig = new System.Windows.Forms.GroupBoxTS(); this.comboDSPDigTXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPDigBufferRX = new System.Windows.Forms.LabelTS(); this.comboDSPDigRXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPDigBufferTX = new System.Windows.Forms.LabelTS(); this.grpDSPBufCW = new System.Windows.Forms.GroupBoxTS(); this.comboDSPCWTXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPCWBufferRX = new System.Windows.Forms.LabelTS(); this.comboDSPCWRXBuf = new System.Windows.Forms.ComboBoxTS(); this.grpDSPBufPhone = new System.Windows.Forms.GroupBoxTS(); this.comboDSPPhoneTXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPPhoneBufferRX = new System.Windows.Forms.LabelTS(); this.comboDSPPhoneRXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPPhoneBufferTX = new System.Windows.Forms.LabelTS(); this.grpDSPNB = new System.Windows.Forms.GroupBoxTS(); this.udDSPNB = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPNBThreshold = new System.Windows.Forms.LabelTS(); this.grpDSPLMSNR = new System.Windows.Forms.GroupBoxTS(); this.udLMSNRLeak = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSNRLeak = new System.Windows.Forms.LabelTS(); this.lblLMSNRgain = new System.Windows.Forms.LabelTS(); this.udLMSNRgain = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSNRdelay = new System.Windows.Forms.LabelTS(); this.udLMSNRtaps = new System.Windows.Forms.NumericUpDownTS(); this.udLMSNRdelay = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSNRtaps = new System.Windows.Forms.LabelTS(); this.grpDSPLMSANF = new System.Windows.Forms.GroupBoxTS(); this.udLMSANFLeak = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSANFLeak = new System.Windows.Forms.LabelTS(); this.lblLMSANFgain = new System.Windows.Forms.LabelTS(); this.udLMSANFgain = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSANFdelay = new System.Windows.Forms.LabelTS(); this.udLMSANFdelay = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSANFTaps = new System.Windows.Forms.LabelTS(); this.udLMSANFtaps = new System.Windows.Forms.NumericUpDownTS(); this.grpDSPWindow = new System.Windows.Forms.GroupBoxTS(); this.comboDSPWindow = new System.Windows.Forms.ComboBoxTS(); this.grpDSPNB2 = new System.Windows.Forms.GroupBoxTS(); this.udDSPNB2 = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPNB2Threshold = new System.Windows.Forms.LabelTS(); this.tpDSPImageReject = new System.Windows.Forms.TabPage(); this.chkDSPImageExpert = new System.Windows.Forms.CheckBox(); this.grpDSPImageRejectTX = new System.Windows.Forms.GroupBoxTS(); this.checkboxTXImagCal = new System.Windows.Forms.CheckBoxTS(); this.lblDSPGainValTX = new System.Windows.Forms.LabelTS(); this.lblDSPPhaseValTX = new System.Windows.Forms.LabelTS(); this.udDSPImageGainTX = new System.Windows.Forms.NumericUpDownTS(); this.udDSPImagePhaseTX = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPImageGainTX = new System.Windows.Forms.LabelTS(); this.tbDSPImagePhaseTX = new System.Windows.Forms.TrackBarTS(); this.lblDSPImagePhaseTX = new System.Windows.Forms.LabelTS(); this.tbDSPImageGainTX = new System.Windows.Forms.TrackBarTS(); this.tpDSPKeyer = new System.Windows.Forms.TabPage(); this.chkCWDisableUI = new System.Windows.Forms.CheckBoxTS(); this.grpKeyerConnections = new System.Windows.Forms.GroupBoxTS(); this.comboKeyerConnKeyLine = new System.Windows.Forms.ComboBoxTS(); this.comboKeyerConnSecondary = new System.Windows.Forms.ComboBoxTS(); this.lblKeyerConnSecondary = new System.Windows.Forms.LabelTS(); this.lblKeyerConnKeyLine = new System.Windows.Forms.LabelTS(); this.comboKeyerConnPTTLine = new System.Windows.Forms.ComboBoxTS(); this.lblKeyerConnPrimary = new System.Windows.Forms.LabelTS(); this.lblKeyerConnPTTLine = new System.Windows.Forms.LabelTS(); this.comboKeyerConnPrimary = new System.Windows.Forms.ComboBoxTS(); this.grpDSPCWPitch = new System.Windows.Forms.GroupBoxTS(); this.lblDSPCWPitchFreq = new System.Windows.Forms.LabelTS(); this.udDSPCWPitch = new System.Windows.Forms.NumericUpDownTS(); this.grpDSPKeyerOptions = new System.Windows.Forms.GroupBoxTS(); this.chkModeBStrict = new System.Windows.Forms.CheckBoxTS(); this.chkStrictCharSpacing = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerMonoCable = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerMode = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerRevPdl = new System.Windows.Forms.CheckBoxTS(); this.chkDSPKeyerSidetone = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerIambic = new System.Windows.Forms.CheckBoxTS(); this.chkCWAutoSwitchMode = new System.Windows.Forms.CheckBoxTS(); this.grpDSPKeyerSignalShaping = new System.Windows.Forms.GroupBoxTS(); this.udCWKeyerWeight = new System.Windows.Forms.NumericUpDownTS(); this.lblCWWeight = new System.Windows.Forms.LabelTS(); this.udCWKeyerRamp = new System.Windows.Forms.NumericUpDownTS(); this.lblCWRamp = new System.Windows.Forms.LabelTS(); this.grpDSPKeyerSemiBreakIn = new System.Windows.Forms.GroupBoxTS(); this.chkCWBreakInEnabled = new System.Windows.Forms.CheckBoxTS(); this.lblCWBreakInDelay = new System.Windows.Forms.LabelTS(); this.udCWBreakInDelay = new System.Windows.Forms.NumericUpDownTS(); this.tpDSPAGCALC = new System.Windows.Forms.TabPage(); this.grpDSPLeveler = new System.Windows.Forms.GroupBoxTS(); this.chkDSPLevelerEnabled = new System.Windows.Forms.CheckBoxTS(); this.lblDSPLevelerHangThreshold = new System.Windows.Forms.LabelTS(); this.udDSPLevelerHangTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerHangTime = new System.Windows.Forms.LabelTS(); this.udDSPLevelerThreshold = new System.Windows.Forms.NumericUpDownTS(); this.udDSPLevelerSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPLevelerDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerSlope = new System.Windows.Forms.LabelTS(); this.udDSPLevelerAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerDecay = new System.Windows.Forms.LabelTS(); this.lblDSPLevelerAttack = new System.Windows.Forms.LabelTS(); this.lblDSPLevelerThreshold = new System.Windows.Forms.LabelTS(); this.tbDSPLevelerHangThreshold = new System.Windows.Forms.TrackBarTS(); this.grpDSPALC = new System.Windows.Forms.GroupBoxTS(); this.lblDSPALCHangThreshold = new System.Windows.Forms.LabelTS(); this.tbDSPALCHangThreshold = new System.Windows.Forms.TrackBarTS(); this.udDSPALCHangTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCHangTime = new System.Windows.Forms.LabelTS(); this.udDSPALCThreshold = new System.Windows.Forms.NumericUpDownTS(); this.udDSPALCSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPALCDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCSlope = new System.Windows.Forms.LabelTS(); this.udDSPALCAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCDecay = new System.Windows.Forms.LabelTS(); this.lblDSPALCAttack = new System.Windows.Forms.LabelTS(); this.lblDSPALCThreshold = new System.Windows.Forms.LabelTS(); this.grpDSPAGC = new System.Windows.Forms.GroupBoxTS(); this.tbDSPAGCHangThreshold = new System.Windows.Forms.TrackBarTS(); this.lblDSPAGCHangThreshold = new System.Windows.Forms.LabelTS(); this.lblDSPAGCHangTime = new System.Windows.Forms.LabelTS(); this.udDSPAGCHangTime = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCMaxGaindB = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCSlope = new System.Windows.Forms.LabelTS(); this.udDSPAGCAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCDecay = new System.Windows.Forms.LabelTS(); this.lblDSPAGCAttack = new System.Windows.Forms.LabelTS(); this.lblDSPAGCMaxGain = new System.Windows.Forms.LabelTS(); this.udDSPAGCFixedGaindB = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCFixed = new System.Windows.Forms.LabelTS(); this.tpTransmit = new System.Windows.Forms.TabPage(); this.chkRememberTXProfileOnModeChange = new System.Windows.Forms.CheckBoxTS(); this.chkAudioMicBoost = new System.Windows.Forms.CheckBoxTS(); this.chkSaveTXProfileOnExit = new System.Windows.Forms.CheckBoxTS(); this.chkAutoSaveTXProfile = new System.Windows.Forms.CheckBoxTS(); this.chkTXLimitSlew = new System.Windows.Forms.CheckBoxTS(); this.chkTXExpert = new System.Windows.Forms.CheckBoxTS(); this.grpTXProfileDef = new System.Windows.Forms.GroupBoxTS(); this.btnTXProfileDefImport = new System.Windows.Forms.ButtonTS(); this.lstTXProfileDef = new System.Windows.Forms.ListBox(); this.grpTXAM = new System.Windows.Forms.GroupBoxTS(); this.lblTXAMCarrierLevel = new System.Windows.Forms.LabelTS(); this.udTXAMCarrierLevel = new System.Windows.Forms.NumericUpDownTS(); this.grpTXMonitor = new System.Windows.Forms.GroupBoxTS(); this.lblTXAF = new System.Windows.Forms.LabelTS(); this.udTXAF = new System.Windows.Forms.NumericUpDownTS(); this.grpTXNoiseGate = new System.Windows.Forms.GroupBoxTS(); this.udTXNoiseGateAttenuate = new System.Windows.Forms.NumericUpDownTS(); this.lblTXNoiseGateAttenuate = new System.Windows.Forms.LabelTS(); this.chkTXNoiseGateEnabled = new System.Windows.Forms.CheckBoxTS(); this.udTXNoiseGate = new System.Windows.Forms.NumericUpDownTS(); this.lblTXNoiseGateThreshold = new System.Windows.Forms.LabelTS(); this.grpTXProfile = new System.Windows.Forms.GroupBoxTS(); this.btnTXProfileDelete = new System.Windows.Forms.ButtonTS(); this.btnTXProfileSave = new System.Windows.Forms.ButtonTS(); this.comboTXProfileName = new System.Windows.Forms.ComboBoxTS(); this.grpPATune = new System.Windows.Forms.GroupBoxTS(); this.comboTXTUNMeter = new System.Windows.Forms.ComboBoxTS(); this.lblTXTUNMeter = new System.Windows.Forms.LabelTS(); this.lblTransmitTunePower = new System.Windows.Forms.LabelTS(); this.udTXTunePower = new System.Windows.Forms.NumericUpDownTS(); this.grpTXFilter = new System.Windows.Forms.GroupBoxTS(); this.lblTXFilterHigh = new System.Windows.Forms.LabelTS(); this.udTXFilterLow = new System.Windows.Forms.NumericUpDownTS(); this.lblTXFilterLow = new System.Windows.Forms.LabelTS(); this.udTXFilterHigh = new System.Windows.Forms.NumericUpDownTS(); this.chkDCBlock = new System.Windows.Forms.CheckBoxTS(); this.grpTXVOX = new System.Windows.Forms.GroupBoxTS(); this.lblTXVOXHangTime = new System.Windows.Forms.LabelTS(); this.udTXVOXHangTime = new System.Windows.Forms.NumericUpDownTS(); this.chkTXVOXEnabled = new System.Windows.Forms.CheckBoxTS(); this.lblTXVOXThreshold = new System.Windows.Forms.LabelTS(); this.udTXVOXThreshold = new System.Windows.Forms.NumericUpDownTS(); this.grpTX1500 = new System.Windows.Forms.GroupBoxTS(); this.lblTX1500Blanking = new System.Windows.Forms.LabelTS(); this.udTX1500PhoneBlanking = new System.Windows.Forms.NumericUpDownTS(); this.tpPowerAmplifier = new System.Windows.Forms.TabPage(); this.rtxtPACalReq = new System.Windows.Forms.RichTextBox(); this.grpPABandOffset = new System.Windows.Forms.GroupBoxTS(); this.lblPABandOffset10 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset12 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset15 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset17 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset20 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset30 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset40 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset60 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset80 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset160 = new System.Windows.Forms.LabelTS(); this.udPAADC17 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC15 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC20 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC12 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC10 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC160 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC80 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC60 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC40 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC30 = new System.Windows.Forms.NumericUpDownTS(); this.chkPANewCal = new System.Windows.Forms.CheckBoxTS(); this.grpPAGainByBand = new System.Windows.Forms.GroupBoxTS(); this.udPACalPower = new System.Windows.Forms.NumericUpDownTS(); this.lblPACalTarget = new System.Windows.Forms.LabelTS(); this.chkPA10 = new System.Windows.Forms.CheckBoxTS(); this.chkPA12 = new System.Windows.Forms.CheckBoxTS(); this.chkPA15 = new System.Windows.Forms.CheckBoxTS(); this.chkPA17 = new System.Windows.Forms.CheckBoxTS(); this.chkPA20 = new System.Windows.Forms.CheckBoxTS(); this.chkPA30 = new System.Windows.Forms.CheckBoxTS(); this.chkPA40 = new System.Windows.Forms.CheckBoxTS(); this.chkPA60 = new System.Windows.Forms.CheckBoxTS(); this.chkPA80 = new System.Windows.Forms.CheckBoxTS(); this.chkPA160 = new System.Windows.Forms.CheckBoxTS(); this.radPACalSelBands = new System.Windows.Forms.RadioButtonTS(); this.radPACalAllBands = new System.Windows.Forms.RadioButtonTS(); this.btnPAGainReset = new System.Windows.Forms.ButtonTS(); this.btnPAGainCalibration = new System.Windows.Forms.ButtonTS(); this.lblPAGainByBand10 = new System.Windows.Forms.LabelTS(); this.udPAGain10 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand12 = new System.Windows.Forms.LabelTS(); this.udPAGain12 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand15 = new System.Windows.Forms.LabelTS(); this.udPAGain15 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand17 = new System.Windows.Forms.LabelTS(); this.udPAGain17 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand20 = new System.Windows.Forms.LabelTS(); this.udPAGain20 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand30 = new System.Windows.Forms.LabelTS(); this.udPAGain30 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand40 = new System.Windows.Forms.LabelTS(); this.udPAGain40 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand60 = new System.Windows.Forms.LabelTS(); this.udPAGain60 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand80 = new System.Windows.Forms.LabelTS(); this.udPAGain80 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand160 = new System.Windows.Forms.LabelTS(); this.udPAGain160 = new System.Windows.Forms.NumericUpDownTS(); this.chkPA6 = new System.Windows.Forms.CheckBoxTS(); this.tpAppearance = new System.Windows.Forms.TabPage(); this.tcAppearance = new System.Windows.Forms.TabControl(); this.tpAppearanceGeneral = new System.Windows.Forms.TabPage(); this.btnSkinExport = new System.Windows.Forms.ButtonTS(); this.grpAppSkins = new System.Windows.Forms.GroupBoxTS(); this.comboAppSkin = new System.Windows.Forms.ComboBoxTS(); this.lblGenBackground = new System.Windows.Forms.LabelTS(); this.clrbtnGenBackground = new PowerSDR.ColorButton(); this.grpAppearanceBand = new System.Windows.Forms.GroupBoxTS(); this.clrbtnBandBackground = new PowerSDR.ColorButton(); this.lblBandBackground = new System.Windows.Forms.LabelTS(); this.clrbtnBandLight = new PowerSDR.ColorButton(); this.clrbtnBandDark = new PowerSDR.ColorButton(); this.lblBandLight = new System.Windows.Forms.LabelTS(); this.lblBandDark = new System.Windows.Forms.LabelTS(); this.clrbtnOutOfBand = new PowerSDR.ColorButton(); this.lblOutOfBand = new System.Windows.Forms.LabelTS(); this.grpAppearanceVFO = new System.Windows.Forms.GroupBoxTS(); this.clrbtnVFOBackground = new PowerSDR.ColorButton(); this.lblVFOBackground = new System.Windows.Forms.LabelTS(); this.clrbtnVFOSmallColor = new PowerSDR.ColorButton(); this.lblVFOSmallColor = new System.Windows.Forms.LabelTS(); this.chkVFOSmallLSD = new System.Windows.Forms.CheckBoxTS(); this.clrbtnVFOLight = new PowerSDR.ColorButton(); this.clrbtnVFODark = new PowerSDR.ColorButton(); this.lblVFOPowerOn = new System.Windows.Forms.LabelTS(); this.lblVFOPowerOff = new System.Windows.Forms.LabelTS(); this.clrbtnBtnSel = new PowerSDR.ColorButton(); this.lblAppearanceGenBtnSel = new System.Windows.Forms.LabelTS(); this.tpAppearanceDisplay = new System.Windows.Forms.TabPage(); this.grpMainDisplay = new System.Windows.Forms.GroupBoxTS(); this.clrbtnText = new PowerSDR.ColorButton(); this.lblDisplayBackgroundColor = new System.Windows.Forms.LabelTS(); this.udDisplayLineWidth = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayDataLineColor = new System.Windows.Forms.LabelTS(); this.lblDisplayTextColor = new System.Windows.Forms.LabelTS(); this.lblDisplayLineWidth = new System.Windows.Forms.LabelTS(); this.clrbtnBackground = new PowerSDR.ColorButton(); this.clrbtnGrid = new PowerSDR.ColorButton(); this.lblDisplayZeroLineColor = new System.Windows.Forms.LabelTS(); this.clrbtnZeroLine = new PowerSDR.ColorButton(); this.lblDisplayGridColor = new System.Windows.Forms.LabelTS(); this.clrbtnDataLine = new PowerSDR.ColorButton(); this.grpAppPanadapter = new System.Windows.Forms.GroupBoxTS(); this.lblBandSegmentBoxLineWidth = new System.Windows.Forms.LabelTS(); this.udBandSegmentBoxLineWidth = new System.Windows.Forms.NumericUpDownTS(); this.lblBandSegmentBox = new System.Windows.Forms.LabelTS(); this.clrbtnBandSegmentBox = new PowerSDR.ColorButton(); this.lblMultiRXFilterAlpha = new System.Windows.Forms.LabelTS(); this.chkShowFreqOffset = new System.Windows.Forms.CheckBoxTS(); this.tbMultiRXFilterAlpha = new System.Windows.Forms.TrackBarTS(); this.clrbtnTXFilter = new PowerSDR.ColorButton(); this.lblRX1FilterAlpha = new System.Windows.Forms.LabelTS(); this.lblTXFilterColor = new System.Windows.Forms.LabelTS(); this.clrbtnSubRXZero = new PowerSDR.ColorButton(); this.tbRX1FilterAlpha = new System.Windows.Forms.TrackBarTS(); this.lblSubRXZeroLine = new System.Windows.Forms.LabelTS(); this.clrbtnSubRXFilter = new PowerSDR.ColorButton(); this.lblSubRXFilterColor = new System.Windows.Forms.LabelTS(); this.clrbtnBandEdge = new PowerSDR.ColorButton(); this.lblBandEdge = new System.Windows.Forms.LabelTS(); this.lblDisplayFilterColor = new System.Windows.Forms.LabelTS(); this.clrbtnFilter = new PowerSDR.ColorButton(); this.grpDisplayPeakCursor = new System.Windows.Forms.GroupBoxTS(); this.clrbtnPeakBackground = new PowerSDR.ColorButton(); this.lblPeakBackground = new System.Windows.Forms.LabelTS(); this.clrbtnPeakText = new PowerSDR.ColorButton(); this.lblPeakText = new System.Windows.Forms.LabelTS(); this.tpAppearanceMeter = new System.Windows.Forms.TabPage(); this.labelTS2 = new System.Windows.Forms.LabelTS(); this.clrbtnMeterDigBackground = new PowerSDR.ColorButton(); this.lblMeterDigitalText = new System.Windows.Forms.LabelTS(); this.clrbtnMeterDigText = new PowerSDR.ColorButton(); this.grpMeterEdge = new System.Windows.Forms.GroupBoxTS(); this.clrbtnEdgeIndicator = new PowerSDR.ColorButton(); this.labelTS1 = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeBackground = new PowerSDR.ColorButton(); this.lblMeterEdgeBackground = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeHigh = new PowerSDR.ColorButton(); this.lblMeterEdgeHigh = new System.Windows.Forms.LabelTS(); this.lblMeterEdgeLow = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeLow = new PowerSDR.ColorButton(); this.grpAppearanceMeter = new System.Windows.Forms.GroupBoxTS(); this.clrbtnMeterBackground = new PowerSDR.ColorButton(); this.lblMeterBackground = new System.Windows.Forms.LabelTS(); this.clrbtnMeterRight = new PowerSDR.ColorButton(); this.lblAppearanceMeterRight = new System.Windows.Forms.LabelTS(); this.lblAppearanceMeterLeft = new System.Windows.Forms.LabelTS(); this.clrbtnMeterLeft = new PowerSDR.ColorButton(); this.lblMeterType = new System.Windows.Forms.LabelTS(); this.comboMeterType = new System.Windows.Forms.ComboBoxTS(); this.tpKeyboard = new System.Windows.Forms.TabPage(); this.grpKBXIT = new System.Windows.Forms.GroupBoxTS(); this.lblKBXITUp = new System.Windows.Forms.LabelTS(); this.lblKBXITDown = new System.Windows.Forms.LabelTS(); this.comboKBXITUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBXITDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBRIT = new System.Windows.Forms.GroupBoxTS(); this.lblKBRitUp = new System.Windows.Forms.LabelTS(); this.lblKBRITDown = new System.Windows.Forms.LabelTS(); this.comboKBRITUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBRITDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBMode = new System.Windows.Forms.GroupBoxTS(); this.lblKBModeUp = new System.Windows.Forms.LabelTS(); this.lblKBModeDown = new System.Windows.Forms.LabelTS(); this.comboKBModeUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBModeDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBBand = new System.Windows.Forms.GroupBoxTS(); this.lblKBBandUp = new System.Windows.Forms.LabelTS(); this.lblKBBandDown = new System.Windows.Forms.LabelTS(); this.comboKBBandUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBBandDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBTune = new System.Windows.Forms.GroupBoxTS(); this.lblKBTuneDigit = new System.Windows.Forms.LabelTS(); this.lblKBTune7 = new System.Windows.Forms.LabelTS(); this.lblKBTune6 = new System.Windows.Forms.LabelTS(); this.lblKBTune5 = new System.Windows.Forms.LabelTS(); this.lblKBTune4 = new System.Windows.Forms.LabelTS(); this.lblKBTune3 = new System.Windows.Forms.LabelTS(); this.lblKBTune2 = new System.Windows.Forms.LabelTS(); this.comboKBTuneUp7 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown7 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp6 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown6 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp5 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown5 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp4 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown4 = new System.Windows.Forms.ComboBoxTS(); this.lblKBTune1 = new System.Windows.Forms.LabelTS(); this.lblKBTuneUp = new System.Windows.Forms.LabelTS(); this.lblKBTuneDown = new System.Windows.Forms.LabelTS(); this.comboKBTuneUp3 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown3 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp1 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp2 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown1 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown2 = new System.Windows.Forms.ComboBoxTS(); this.grpKBFilter = new System.Windows.Forms.GroupBoxTS(); this.lblKBFilterUp = new System.Windows.Forms.LabelTS(); this.lblKBFilterDown = new System.Windows.Forms.LabelTS(); this.comboKBFilterUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBFilterDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBCW = new System.Windows.Forms.GroupBoxTS(); this.lblKBCWDot = new System.Windows.Forms.LabelTS(); this.lblKBCWDash = new System.Windows.Forms.LabelTS(); this.comboKBCWDot = new System.Windows.Forms.ComboBoxTS(); this.comboKBCWDash = new System.Windows.Forms.ComboBoxTS(); this.tpExtCtrl = new System.Windows.Forms.TabPage(); this.chkExtEnable = new System.Windows.Forms.CheckBoxTS(); this.grpExtTX = new System.Windows.Forms.GroupBoxTS(); this.lblExtTXX26 = new System.Windows.Forms.LabelTS(); this.chkExtTX26 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX66 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX106 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX126 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX156 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX176 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX206 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX306 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX406 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX606 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX806 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1606 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTXX25 = new System.Windows.Forms.LabelTS(); this.lblExtTXX24 = new System.Windows.Forms.LabelTS(); this.lblExtTXX23 = new System.Windows.Forms.LabelTS(); this.lblExtTXX22 = new System.Windows.Forms.LabelTS(); this.lblExtTX2 = new System.Windows.Forms.LabelTS(); this.chkExtTX23 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX22 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX21 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX25 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX24 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX6 = new System.Windows.Forms.LabelTS(); this.chkExtTX63 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX62 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX61 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX65 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX64 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX10 = new System.Windows.Forms.LabelTS(); this.chkExtTX103 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX102 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX101 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX105 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX104 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX12 = new System.Windows.Forms.LabelTS(); this.chkExtTX123 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX122 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX121 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX125 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX124 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX15 = new System.Windows.Forms.LabelTS(); this.chkExtTX153 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX152 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX151 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX155 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX154 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX17 = new System.Windows.Forms.LabelTS(); this.chkExtTX173 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX172 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX171 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX175 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX174 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX20 = new System.Windows.Forms.LabelTS(); this.chkExtTX203 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX202 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX201 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX205 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX204 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX30 = new System.Windows.Forms.LabelTS(); this.chkExtTX303 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX302 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX301 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX305 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX304 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX40 = new System.Windows.Forms.LabelTS(); this.chkExtTX403 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX402 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX401 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX405 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX404 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX60 = new System.Windows.Forms.LabelTS(); this.chkExtTX603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX601 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX604 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX80 = new System.Windows.Forms.LabelTS(); this.chkExtTX803 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX802 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX801 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX805 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX804 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTXX2Pins = new System.Windows.Forms.LabelTS(); this.lblExtTXBand = new System.Windows.Forms.LabelTS(); this.lblExtTX160 = new System.Windows.Forms.LabelTS(); this.chkExtTX1603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1601 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTXX21 = new System.Windows.Forms.LabelTS(); this.chkExtTX1605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1604 = new System.Windows.Forms.CheckBoxTS(); this.grpExtRX = new System.Windows.Forms.GroupBoxTS(); this.lblExtRXX26 = new System.Windows.Forms.LabelTS(); this.chkExtRX26 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX66 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX106 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX126 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX156 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX176 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX206 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX306 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX406 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX606 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX806 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1606 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRXX25 = new System.Windows.Forms.LabelTS(); this.lblExtRXX24 = new System.Windows.Forms.LabelTS(); this.lblExtRXX23 = new System.Windows.Forms.LabelTS(); this.lblExtRXX22 = new System.Windows.Forms.LabelTS(); this.lblExtRX2 = new System.Windows.Forms.LabelTS(); this.chkExtRX23 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX22 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX21 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX25 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX24 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX6 = new System.Windows.Forms.LabelTS(); this.chkExtRX63 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX62 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX61 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX65 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX64 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX10 = new System.Windows.Forms.LabelTS(); this.chkExtRX103 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX102 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX101 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX105 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX104 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX12 = new System.Windows.Forms.LabelTS(); this.chkExtRX123 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX122 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX121 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX125 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX124 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX15 = new System.Windows.Forms.LabelTS(); this.chkExtRX153 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX152 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX151 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX155 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX154 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX17 = new System.Windows.Forms.LabelTS(); this.chkExtRX173 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX172 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX171 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX175 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX174 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX20 = new System.Windows.Forms.LabelTS(); this.chkExtRX203 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX202 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX201 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX205 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX204 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX30 = new System.Windows.Forms.LabelTS(); this.chkExtRX303 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX302 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX301 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX305 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX304 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX40 = new System.Windows.Forms.LabelTS(); this.chkExtRX403 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX402 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX401 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX405 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX404 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX60 = new System.Windows.Forms.LabelTS(); this.chkExtRX603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX601 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX604 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX80 = new System.Windows.Forms.LabelTS(); this.chkExtRX803 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX802 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX801 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX805 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX804 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRXX2Pins = new System.Windows.Forms.LabelTS(); this.lblExtRXBand = new System.Windows.Forms.LabelTS(); this.lblExtRX160 = new System.Windows.Forms.LabelTS(); this.chkExtRX1603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1601 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRXX21 = new System.Windows.Forms.LabelTS(); this.chkExtRX1605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1604 = new System.Windows.Forms.CheckBoxTS(); this.tpCAT = new System.Windows.Forms.TabPage(); this.chkKWAI = new System.Windows.Forms.CheckBoxTS(); this.chkFPInstalled = new System.Windows.Forms.CheckBoxTS(); this.chkDigUIsUSB = new System.Windows.Forms.CheckBoxTS(); this.lblCATRigType = new System.Windows.Forms.LabelTS(); this.comboCATRigType = new System.Windows.Forms.ComboBoxTS(); this.btnCATTest = new System.Windows.Forms.ButtonTS(); this.grpPTTBitBang = new System.Windows.Forms.GroupBoxTS(); this.comboCATPTTPort = new System.Windows.Forms.ComboBoxTS(); this.lblCATPTTPort = new System.Windows.Forms.LabelTS(); this.chkCATPTT_RTS = new System.Windows.Forms.CheckBoxTS(); this.chkCATPTT_DTR = new System.Windows.Forms.CheckBoxTS(); this.chkCATPTTEnabled = new System.Windows.Forms.CheckBoxTS(); this.grpCatControlBox = new System.Windows.Forms.GroupBoxTS(); this.comboCATPort = new System.Windows.Forms.ComboBoxTS(); this.comboCATbaud = new System.Windows.Forms.ComboBoxTS(); this.lblCATBaud = new System.Windows.Forms.LabelTS(); this.lblCATPort = new System.Windows.Forms.LabelTS(); this.chkCATEnable = new System.Windows.Forms.CheckBoxTS(); this.lblCATParity = new System.Windows.Forms.LabelTS(); this.lblCATData = new System.Windows.Forms.LabelTS(); this.lblCATStop = new System.Windows.Forms.LabelTS(); this.comboCATparity = new System.Windows.Forms.ComboBoxTS(); this.comboCATdatabits = new System.Windows.Forms.ComboBoxTS(); this.comboCATstopbits = new System.Windows.Forms.ComboBoxTS(); this.grpRTTYOffset = new System.Windows.Forms.GroupBoxTS(); this.labelTS4 = new System.Windows.Forms.LabelTS(); this.labelTS3 = new System.Windows.Forms.LabelTS(); this.udRTTYU = new System.Windows.Forms.NumericUpDownTS(); this.udRTTYL = new System.Windows.Forms.NumericUpDownTS(); this.chkRTTYOffsetEnableB = new System.Windows.Forms.CheckBoxTS(); this.chkRTTYOffsetEnableA = new System.Windows.Forms.CheckBoxTS(); this.tpTests = new System.Windows.Forms.TabPage(); this.grpBoxTS1 = new System.Windows.Forms.GroupBoxTS(); this.udPulsePeriod = new System.Windows.Forms.NumericUpDownTS(); this.lblPulsePeriod = new System.Windows.Forms.LabelTS(); this.udPulseDuty = new System.Windows.Forms.NumericUpDownTS(); this.lblPulseDuty = new System.Windows.Forms.LabelTS(); this.grpSigGenTransmit = new System.Windows.Forms.GroupBoxTS(); this.lblSigGenTXMode = new System.Windows.Forms.LabelTS(); this.cmboSigGenTXMode = new System.Windows.Forms.ComboBoxTS(); this.rdSigGenTXInput = new System.Windows.Forms.RadioButtonTS(); this.rdSigGenTXOutput = new System.Windows.Forms.RadioButtonTS(); this.grpSigGenReceive = new System.Windows.Forms.GroupBoxTS(); this.chkSigGenRX2 = new System.Windows.Forms.CheckBox(); this.lblSigGenRXMode = new System.Windows.Forms.LabelTS(); this.cmboSigGenRXMode = new System.Windows.Forms.ComboBoxTS(); this.rdSigGenRXInput = new System.Windows.Forms.RadioButtonTS(); this.rdSigGenRXOutput = new System.Windows.Forms.RadioButtonTS(); this.lblTestGenScale = new System.Windows.Forms.LabelTS(); this.udTestGenScale = new System.Windows.Forms.NumericUpDownTS(); this.lblTestSigGenFreqCallout = new System.Windows.Forms.LabelTS(); this.tkbarTestGenFreq = new System.Windows.Forms.TrackBarTS(); this.lblTestGenHzSec = new System.Windows.Forms.LabelTS(); this.udTestGenHzSec = new System.Windows.Forms.NumericUpDownTS(); this.lblTestGenHigh = new System.Windows.Forms.LabelTS(); this.udTestGenHigh = new System.Windows.Forms.NumericUpDownTS(); this.lblTestGenLow = new System.Windows.Forms.LabelTS(); this.udTestGenLow = new System.Windows.Forms.NumericUpDownTS(); this.btnTestGenSweep = new System.Windows.Forms.ButtonTS(); this.ckEnableSigGen = new System.Windows.Forms.CheckBoxTS(); this.grpTestX2 = new System.Windows.Forms.GroupBoxTS(); this.lblTestX2 = new System.Windows.Forms.LabelTS(); this.chkTestX2Pin6 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin5 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin4 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin3 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin2 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin1 = new System.Windows.Forms.CheckBoxTS(); this.grpTestAudioBalance = new System.Windows.Forms.GroupBoxTS(); this.btnTestAudioBalStart = new System.Windows.Forms.ButtonTS(); this.grpTestTXIMD = new System.Windows.Forms.GroupBoxTS(); this.lblTestToneFreq2 = new System.Windows.Forms.LabelTS(); this.udTestIMDFreq2 = new System.Windows.Forms.NumericUpDownTS(); this.lblTestIMDPower = new System.Windows.Forms.LabelTS(); this.udTestIMDPower = new System.Windows.Forms.NumericUpDownTS(); this.chekTestIMD = new System.Windows.Forms.CheckBoxTS(); this.lblTestToneFreq1 = new System.Windows.Forms.LabelTS(); this.udTestIMDFreq1 = new System.Windows.Forms.NumericUpDownTS(); this.grpImpulseTest = new System.Windows.Forms.GroupBoxTS(); this.udImpulseNum = new System.Windows.Forms.NumericUpDownTS(); this.btnImpulse = new System.Windows.Forms.ButtonTS(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.btnExportDB = new System.Windows.Forms.ButtonTS(); this.btnImportDB = new System.Windows.Forms.ButtonTS(); this.btnResetDB = new System.Windows.Forms.ButtonTS(); this.btnApply = new System.Windows.Forms.ButtonTS(); this.btnCancel = new System.Windows.Forms.ButtonTS(); this.btnOK = new System.Windows.Forms.ButtonTS(); this.timer_sweep = new System.Windows.Forms.Timer(this.components); this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components); this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog(); this.tcSetup.SuspendLayout(); this.tpGeneral.SuspendLayout(); this.tcGeneral.SuspendLayout(); this.tpGeneralHardware.SuspendLayout(); this.grpHWSoftRock.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udSoftRockCenterFreq)).BeginInit(); this.grpGeneralDDS.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDDSCorrection)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSIFFreq)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSPLLMult)).BeginInit(); this.grpGeneralModel.SuspendLayout(); this.grpGeneralHardwareFLEX5000.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udF3KFanTempThresh)).BeginInit(); this.grpGeneralHardwareSDR1000.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralLPTDelay)).BeginInit(); this.grpGeneralHardwareFLEX1500.SuspendLayout(); this.tpGeneralOptions.SuspendLayout(); this.grpOptUSBBuf.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbOptUSBBuf)).BeginInit(); this.grpGenCustomTitleText.SuspendLayout(); this.grpOptMisc.SuspendLayout(); this.grpOptQuickQSY.SuspendLayout(); this.grpGenAutoMute.SuspendLayout(); this.grpGenTuningOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGU)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGL)).BeginInit(); this.grpGeneralOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGenTX1Delay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralX2Delay)).BeginInit(); this.grpGeneralProcessPriority.SuspendLayout(); this.tpGeneralCalibration.SuspendLayout(); this.grpGenCalRXImage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq3)).BeginInit(); this.grpGenCalLevel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq2)).BeginInit(); this.grpGeneralCalibration.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq1)).BeginInit(); this.tpFilters.SuspendLayout(); this.grpOptFilterControls.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udFilterDefaultLowCut)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterShift)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterWidth)).BeginInit(); this.tpRX2.SuspendLayout(); this.tpGeneralNavigation.SuspendLayout(); this.grpOptSpaceNav.SuspendLayout(); this.tpAudio.SuspendLayout(); this.tcAudio.SuspendLayout(); this.tpAudioCard1.SuspendLayout(); this.grpAudioChannels.SuspendLayout(); this.grpAudioMicInGain1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioMicGain1)).BeginInit(); this.grpAudioLineInGain1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLineIn1)).BeginInit(); this.grpAudioVolts1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVoltage1)).BeginInit(); this.grpAudioDetails1.SuspendLayout(); this.grpAudioLatency1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency1)).BeginInit(); this.grpAudioCard.SuspendLayout(); this.grpAudioBufferSize1.SuspendLayout(); this.grpAudioSampleRate1.SuspendLayout(); this.tpVAC.SuspendLayout(); this.grpDirectIQOutput.SuspendLayout(); this.grpAudioVACAutoEnable.SuspendLayout(); this.grpAudioVACGain.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainRX)).BeginInit(); this.grpAudio2Stereo.SuspendLayout(); this.grpAudioLatency2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency2)).BeginInit(); this.grpAudioSampleRate2.SuspendLayout(); this.grpAudioBuffer2.SuspendLayout(); this.grpAudioDetails2.SuspendLayout(); this.tpVAC2.SuspendLayout(); this.grpVAC2DirectIQ.SuspendLayout(); this.grpVAC2AutoEnable.SuspendLayout(); this.grpVAC2Gain.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udVAC2GainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udVAC2GainRX)).BeginInit(); this.grpAudioStereo3.SuspendLayout(); this.grpVAC2Latency.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udVAC2Latency)).BeginInit(); this.grpAudioSampleRate3.SuspendLayout(); this.grpAudioBuffer3.SuspendLayout(); this.grpAudioDetails3.SuspendLayout(); this.tpDisplay.SuspendLayout(); this.grpDisplayMultimeter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udMeterDigitalDelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterAvg)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiTextHoldTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiPeakHoldTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterDelay)).BeginInit(); this.grpDisplayDriverEngine.SuspendLayout(); this.grpDisplayPolyPhase.SuspendLayout(); this.grpDisplayScopeMode.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayScopeTime)).BeginInit(); this.grpDisplayWaterfall.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallUpdatePeriod)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallAvgTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallLowLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallHighLevel)).BeginInit(); this.grpDisplayRefreshRates.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCPUMeter)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPeakText)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayFPS)).BeginInit(); this.grpDisplayAverage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayAVGTime)).BeginInit(); this.grpDisplayPhase.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPhasePts)).BeginInit(); this.grpDisplaySpectrumGrid.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridStep)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMin)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMax)).BeginInit(); this.tpDSP.SuspendLayout(); this.tcDSP.SuspendLayout(); this.tpDSPOptions.SuspendLayout(); this.grpDSPBufferSize.SuspendLayout(); this.grpDSPBufDig.SuspendLayout(); this.grpDSPBufCW.SuspendLayout(); this.grpDSPBufPhone.SuspendLayout(); this.grpDSPNB.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB)).BeginInit(); this.grpDSPLMSNR.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRLeak)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRgain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRtaps)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRdelay)).BeginInit(); this.grpDSPLMSANF.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFLeak)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFgain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFdelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFtaps)).BeginInit(); this.grpDSPWindow.SuspendLayout(); this.grpDSPNB2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB2)).BeginInit(); this.tpDSPImageReject.SuspendLayout(); this.grpDSPImageRejectTX.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainTX)).BeginInit(); this.tpDSPKeyer.SuspendLayout(); this.grpKeyerConnections.SuspendLayout(); this.grpDSPCWPitch.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWPitch)).BeginInit(); this.grpDSPKeyerOptions.SuspendLayout(); this.grpDSPKeyerSignalShaping.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerWeight)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerRamp)).BeginInit(); this.grpDSPKeyerSemiBreakIn.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udCWBreakInDelay)).BeginInit(); this.tpDSPAGCALC.SuspendLayout(); this.grpDSPLeveler.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerAttack)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPLevelerHangThreshold)).BeginInit(); this.grpDSPALC.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPALCHangThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCAttack)).BeginInit(); this.grpDSPAGC.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPAGCHangThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCMaxGaindB)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCAttack)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCFixedGaindB)).BeginInit(); this.tpTransmit.SuspendLayout(); this.grpTXProfileDef.SuspendLayout(); this.grpTXAM.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXAMCarrierLevel)).BeginInit(); this.grpTXMonitor.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXAF)).BeginInit(); this.grpTXNoiseGate.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGateAttenuate)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGate)).BeginInit(); this.grpTXProfile.SuspendLayout(); this.grpPATune.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXTunePower)).BeginInit(); this.grpTXFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterLow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterHigh)).BeginInit(); this.grpTXVOX.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXThreshold)).BeginInit(); this.grpTX1500.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTX1500PhoneBlanking)).BeginInit(); this.tpPowerAmplifier.SuspendLayout(); this.grpPABandOffset.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC160)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC80)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC60)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC40)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC30)).BeginInit(); this.grpPAGainByBand.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPACalPower)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain30)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain40)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain60)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain80)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain160)).BeginInit(); this.tpAppearance.SuspendLayout(); this.tcAppearance.SuspendLayout(); this.tpAppearanceGeneral.SuspendLayout(); this.grpAppSkins.SuspendLayout(); this.grpAppearanceBand.SuspendLayout(); this.grpAppearanceVFO.SuspendLayout(); this.tpAppearanceDisplay.SuspendLayout(); this.grpMainDisplay.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayLineWidth)).BeginInit(); this.grpAppPanadapter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udBandSegmentBoxLineWidth)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbMultiRXFilterAlpha)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRX1FilterAlpha)).BeginInit(); this.grpDisplayPeakCursor.SuspendLayout(); this.tpAppearanceMeter.SuspendLayout(); this.grpMeterEdge.SuspendLayout(); this.grpAppearanceMeter.SuspendLayout(); this.tpKeyboard.SuspendLayout(); this.grpKBXIT.SuspendLayout(); this.grpKBRIT.SuspendLayout(); this.grpKBMode.SuspendLayout(); this.grpKBBand.SuspendLayout(); this.grpKBTune.SuspendLayout(); this.grpKBFilter.SuspendLayout(); this.grpKBCW.SuspendLayout(); this.tpExtCtrl.SuspendLayout(); this.grpExtTX.SuspendLayout(); this.grpExtRX.SuspendLayout(); this.tpCAT.SuspendLayout(); this.grpPTTBitBang.SuspendLayout(); this.grpCatControlBox.SuspendLayout(); this.grpRTTYOffset.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udRTTYU)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udRTTYL)).BeginInit(); this.tpTests.SuspendLayout(); this.grpBoxTS1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPulsePeriod)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPulseDuty)).BeginInit(); this.grpSigGenTransmit.SuspendLayout(); this.grpSigGenReceive.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenScale)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tkbarTestGenFreq)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHzSec)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHigh)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenLow)).BeginInit(); this.grpTestX2.SuspendLayout(); this.grpTestAudioBalance.SuspendLayout(); this.grpTestTXIMD.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDPower)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq1)).BeginInit(); this.grpImpulseTest.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udImpulseNum)).BeginInit(); this.SuspendLayout(); // // tcSetup // this.tcSetup.Controls.Add(this.tpGeneral); this.tcSetup.Controls.Add(this.tpAudio); this.tcSetup.Controls.Add(this.tpDisplay); this.tcSetup.Controls.Add(this.tpDSP); this.tcSetup.Controls.Add(this.tpTransmit); this.tcSetup.Controls.Add(this.tpPowerAmplifier); this.tcSetup.Controls.Add(this.tpAppearance); this.tcSetup.Controls.Add(this.tpKeyboard); this.tcSetup.Controls.Add(this.tpExtCtrl); this.tcSetup.Controls.Add(this.tpCAT); this.tcSetup.Controls.Add(this.tpTests); this.tcSetup.Location = new System.Drawing.Point(8, 8); this.tcSetup.Name = "tcSetup"; this.tcSetup.SelectedIndex = 0; this.tcSetup.Size = new System.Drawing.Size(592, 312); this.tcSetup.TabIndex = 16; // // tpGeneral // this.tpGeneral.Controls.Add(this.tcGeneral); this.tpGeneral.Location = new System.Drawing.Point(4, 22); this.tpGeneral.Name = "tpGeneral"; this.tpGeneral.Size = new System.Drawing.Size(584, 286); this.tpGeneral.TabIndex = 3; this.tpGeneral.Text = "General"; // // tcGeneral // this.tcGeneral.Controls.Add(this.tpGeneralHardware); this.tcGeneral.Controls.Add(this.tpGeneralOptions); this.tcGeneral.Controls.Add(this.tpGeneralCalibration); this.tcGeneral.Controls.Add(this.tpFilters); this.tcGeneral.Controls.Add(this.tpRX2); this.tcGeneral.Controls.Add(this.tpGeneralNavigation); this.tcGeneral.Location = new System.Drawing.Point(0, 0); this.tcGeneral.Name = "tcGeneral"; this.tcGeneral.SelectedIndex = 0; this.tcGeneral.Size = new System.Drawing.Size(600, 344); this.tcGeneral.TabIndex = 26; // // tpGeneralHardware // this.tpGeneralHardware.BackColor = System.Drawing.SystemColors.Control; this.tpGeneralHardware.Controls.Add(this.grpHWSoftRock); this.tpGeneralHardware.Controls.Add(this.grpGeneralDDS); this.tpGeneralHardware.Controls.Add(this.grpGeneralModel); this.tpGeneralHardware.Controls.Add(this.btnWizard); this.tpGeneralHardware.Controls.Add(this.chkGeneralRXOnly); this.tpGeneralHardware.Controls.Add(this.grpGeneralHardwareFLEX5000); this.tpGeneralHardware.Controls.Add(this.grpGeneralHardwareSDR1000); this.tpGeneralHardware.Controls.Add(this.grpGeneralHardwareFLEX1500); this.tpGeneralHardware.Location = new System.Drawing.Point(4, 22); this.tpGeneralHardware.Name = "tpGeneralHardware"; this.tpGeneralHardware.Size = new System.Drawing.Size(592, 318); this.tpGeneralHardware.TabIndex = 0; this.tpGeneralHardware.Text = "Hardware Config"; // // grpHWSoftRock // this.grpHWSoftRock.Controls.Add(this.lblGenSoftRockCenterFreq); this.grpHWSoftRock.Controls.Add(this.udSoftRockCenterFreq); this.grpHWSoftRock.Location = new System.Drawing.Point(8, 144); this.grpHWSoftRock.Name = "grpHWSoftRock"; this.grpHWSoftRock.Size = new System.Drawing.Size(144, 72); this.grpHWSoftRock.TabIndex = 26; this.grpHWSoftRock.TabStop = false; this.grpHWSoftRock.Text = "SoftRock Options"; this.grpHWSoftRock.Visible = false; // // lblGenSoftRockCenterFreq // this.lblGenSoftRockCenterFreq.Image = null; this.lblGenSoftRockCenterFreq.Location = new System.Drawing.Point(16, 24); this.lblGenSoftRockCenterFreq.Name = "lblGenSoftRockCenterFreq"; this.lblGenSoftRockCenterFreq.Size = new System.Drawing.Size(104, 16); this.lblGenSoftRockCenterFreq.TabIndex = 1; this.lblGenSoftRockCenterFreq.Text = "Center Freq (MHz):"; // // udSoftRockCenterFreq // this.udSoftRockCenterFreq.DecimalPlaces = 6; this.udSoftRockCenterFreq.Increment = new decimal(new int[] { 1, 0, 0, 196608 }); this.udSoftRockCenterFreq.Location = new System.Drawing.Point(16, 40); this.udSoftRockCenterFreq.Maximum = new decimal(new int[] { 65, 0, 0, 0 }); this.udSoftRockCenterFreq.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udSoftRockCenterFreq.Name = "udSoftRockCenterFreq"; this.udSoftRockCenterFreq.Size = new System.Drawing.Size(80, 20); this.udSoftRockCenterFreq.TabIndex = 0; this.toolTip1.SetToolTip(this.udSoftRockCenterFreq, "Sets the center frequency for the SoftRock 40."); this.udSoftRockCenterFreq.Value = new decimal(new int[] { 7056, 0, 0, 196608 }); this.udSoftRockCenterFreq.ValueChanged += new System.EventHandler(this.udSoftRockCenterFreq_ValueChanged); this.udSoftRockCenterFreq.LostFocus += new System.EventHandler(this.udSoftRockCenterFreq_LostFocus); // // grpGeneralDDS // this.grpGeneralDDS.Controls.Add(this.chkGenDDSExpert); this.grpGeneralDDS.Controls.Add(this.udDDSCorrection); this.grpGeneralDDS.Controls.Add(this.lblClockCorrection); this.grpGeneralDDS.Controls.Add(this.udDDSIFFreq); this.grpGeneralDDS.Controls.Add(this.lblIFFrequency); this.grpGeneralDDS.Controls.Add(this.udDDSPLLMult); this.grpGeneralDDS.Controls.Add(this.lblPLLMult); this.grpGeneralDDS.Location = new System.Drawing.Point(328, 8); this.grpGeneralDDS.Name = "grpGeneralDDS"; this.grpGeneralDDS.Size = new System.Drawing.Size(176, 136); this.grpGeneralDDS.TabIndex = 4; this.grpGeneralDDS.TabStop = false; this.grpGeneralDDS.Text = "DDS"; // // chkGenDDSExpert // this.chkGenDDSExpert.Location = new System.Drawing.Point(56, 104); this.chkGenDDSExpert.Name = "chkGenDDSExpert"; this.chkGenDDSExpert.Size = new System.Drawing.Size(56, 24); this.chkGenDDSExpert.TabIndex = 8; this.chkGenDDSExpert.Text = "Expert"; this.chkGenDDSExpert.CheckedChanged += new System.EventHandler(this.chkGenDDSExpert_CheckedChanged); // // udDDSCorrection // this.udDDSCorrection.Increment = new decimal(new int[] { 10, 0, 0, 0 }); this.udDDSCorrection.Location = new System.Drawing.Point(104, 24); this.udDDSCorrection.Maximum = new decimal(new int[] { 1000000, 0, 0, 0}); this.udDDSCorrection.Minimum = new decimal(new int[] { 1000000, 0, 0, -2147483648}); this.udDDSCorrection.Name = "udDDSCorrection"; this.udDDSCorrection.Size = new System.Drawing.Size(64, 20); this.udDDSCorrection.TabIndex = 7; this.toolTip1.SetToolTip(this.udDDSCorrection, "Correction for DDS frequency"); this.udDDSCorrection.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.udDDSCorrection.Visible = false; this.udDDSCorrection.ValueChanged += new System.EventHandler(this.udDDSCorrection_ValueChanged); this.udDDSCorrection.LostFocus += new System.EventHandler(this.udDDSCorrection_LostFocus); // // lblClockCorrection // this.lblClockCorrection.Image = null; this.lblClockCorrection.Location = new System.Drawing.Point(16, 24); this.lblClockCorrection.Name = "lblClockCorrection"; this.lblClockCorrection.Size = new System.Drawing.Size(72, 23); this.lblClockCorrection.TabIndex = 6; this.lblClockCorrection.Text = "Clock Offset:"; this.lblClockCorrection.Visible = false; // // udDDSIFFreq // this.udDDSIFFreq.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udDDSIFFreq.Location = new System.Drawing.Point(112, 72); this.udDDSIFFreq.Maximum = new decimal(new int[] { 20000, 0, 0, 0 }); this.udDDSIFFreq.Minimum = new decimal(new int[] { 20000, 0, 0, -2147483648 }); this.udDDSIFFreq.Name = "udDDSIFFreq"; this.udDDSIFFreq.Size = new System.Drawing.Size(56, 20); this.udDDSIFFreq.TabIndex = 5; this.toolTip1.SetToolTip(this.udDDSIFFreq, "Intermediate Frequency"); this.udDDSIFFreq.Value = new decimal(new int[] { 9000, 0, 0, 0 }); this.udDDSIFFreq.Visible = false; this.udDDSIFFreq.ValueChanged += new System.EventHandler(this.udDDSIFFreq_ValueChanged); this.udDDSIFFreq.LostFocus += new System.EventHandler(this.udDDSIFFreq_LostFocus); // // lblIFFrequency // this.lblIFFrequency.Image = null; this.lblIFFrequency.Location = new System.Drawing.Point(16, 72); this.lblIFFrequency.Name = "lblIFFrequency"; this.lblIFFrequency.Size = new System.Drawing.Size(48, 23); this.lblIFFrequency.TabIndex = 4; this.lblIFFrequency.Text = "IF (Hz):"; this.lblIFFrequency.Visible = false; // // udDDSPLLMult // this.udDDSPLLMult.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udDDSPLLMult.Location = new System.Drawing.Point(120, 48); this.udDDSPLLMult.Maximum = new decimal(new int[] { 20, 0, 0, 0 }); this.udDDSPLLMult.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udDDSPLLMult.Name = "udDDSPLLMult"; this.udDDSPLLMult.Size = new System.Drawing.Size(48, 20); this.udDDSPLLMult.TabIndex = 3; this.toolTip1.SetToolTip(this.udDDSPLLMult, "Multiplier for external clock (1 if using internal clock)"); this.udDDSPLLMult.Value = new decimal(new int[] { 1, 0, 0, 0 }); this.udDDSPLLMult.Visible = false; this.udDDSPLLMult.ValueChanged += new System.EventHandler(this.udDDSPLLMult_ValueChanged); this.udDDSPLLMult.LostFocus += new System.EventHandler(this.udDDSPLLMult_LostFocus); // // lblPLLMult // this.lblPLLMult.Image = null; this.lblPLLMult.Location = new System.Drawing.Point(16, 48); this.lblPLLMult.Name = "lblPLLMult"; this.lblPLLMult.Size = new System.Drawing.Size(80, 23); this.lblPLLMult.TabIndex = 2; this.lblPLLMult.Text = "PLL Multiplier:"; this.lblPLLMult.Visible = false; // // grpGeneralModel // this.grpGeneralModel.Controls.Add(this.radGenModelFLEX1500); this.grpGeneralModel.Controls.Add(this.radGenModelFLEX5000); this.grpGeneralModel.Controls.Add(this.radGenModelDemoNone); this.grpGeneralModel.Controls.Add(this.radGenModelSoftRock40); this.grpGeneralModel.Controls.Add(this.radGenModelSDR1000); this.grpGeneralModel.Location = new System.Drawing.Point(8, 8); this.grpGeneralModel.Name = "grpGeneralModel"; this.grpGeneralModel.Size = new System.Drawing.Size(144, 128); this.grpGeneralModel.TabIndex = 25; this.grpGeneralModel.TabStop = false; this.grpGeneralModel.Text = "Radio Model"; // // radGenModelFLEX1500 // this.radGenModelFLEX1500.Image = null; this.radGenModelFLEX1500.Location = new System.Drawing.Point(16, 36); this.radGenModelFLEX1500.Name = "radGenModelFLEX1500"; this.radGenModelFLEX1500.Size = new System.Drawing.Size(88, 24); this.radGenModelFLEX1500.TabIndex = 4; this.radGenModelFLEX1500.Text = "FLEX-1500"; this.toolTip1.SetToolTip(this.radGenModelFLEX1500, "Select if using the FLEX-1500 Hardware"); this.radGenModelFLEX1500.CheckedChanged += new System.EventHandler(this.radGenModelFLEX1500_CheckedChanged); // // radGenModelFLEX5000 // this.radGenModelFLEX5000.Checked = true; this.radGenModelFLEX5000.Image = null; this.radGenModelFLEX5000.Location = new System.Drawing.Point(16, 16); this.radGenModelFLEX5000.Name = "radGenModelFLEX5000"; this.radGenModelFLEX5000.Size = new System.Drawing.Size(88, 24); this.radGenModelFLEX5000.TabIndex = 3; this.radGenModelFLEX5000.TabStop = true; this.radGenModelFLEX5000.Text = "FLEX-5000"; this.toolTip1.SetToolTip(this.radGenModelFLEX5000, "Select if using the FLEX-5000 Hardware"); this.radGenModelFLEX5000.CheckedChanged += new System.EventHandler(this.radGenModelFLEX5000_CheckedChanged); // // radGenModelDemoNone // this.radGenModelDemoNone.Image = null; this.radGenModelDemoNone.Location = new System.Drawing.Point(16, 96); this.radGenModelDemoNone.Name = "radGenModelDemoNone"; this.radGenModelDemoNone.Size = new System.Drawing.Size(88, 24); this.radGenModelDemoNone.TabIndex = 2; this.radGenModelDemoNone.Text = "Demo/None"; this.toolTip1.SetToolTip(this.radGenModelDemoNone, "Select if using without any SDR hardware."); this.radGenModelDemoNone.CheckedChanged += new System.EventHandler(this.radGenModelDemoNone_CheckedChanged); // // radGenModelSoftRock40 // this.radGenModelSoftRock40.Image = null; this.radGenModelSoftRock40.Location = new System.Drawing.Point(16, 76); this.radGenModelSoftRock40.Name = "radGenModelSoftRock40"; this.radGenModelSoftRock40.Size = new System.Drawing.Size(88, 24); this.radGenModelSoftRock40.TabIndex = 1; this.radGenModelSoftRock40.Text = "Soft Rock 40"; this.toolTip1.SetToolTip(this.radGenModelSoftRock40, "Select if using the SoftRock 40"); this.radGenModelSoftRock40.Visible = false; this.radGenModelSoftRock40.CheckedChanged += new System.EventHandler(this.radGenModelSoftRock40_CheckedChanged); // // radGenModelSDR1000 // this.radGenModelSDR1000.Image = null; this.radGenModelSDR1000.Location = new System.Drawing.Point(16, 56); this.radGenModelSDR1000.Name = "radGenModelSDR1000"; this.radGenModelSDR1000.Size = new System.Drawing.Size(88, 24); this.radGenModelSDR1000.TabIndex = 0; this.radGenModelSDR1000.Text = "SDR-1000"; this.toolTip1.SetToolTip(this.radGenModelSDR1000, "Select if using the SDR-1000 Hardware"); this.radGenModelSDR1000.Visible = false; this.radGenModelSDR1000.CheckedChanged += new System.EventHandler(this.radGenModelSDR1000_CheckedChanged); // // btnWizard // this.btnWizard.Image = null; this.btnWizard.Location = new System.Drawing.Point(24, 224); this.btnWizard.Name = "btnWizard"; this.btnWizard.Size = new System.Drawing.Size(75, 23); this.btnWizard.TabIndex = 22; this.btnWizard.Text = "Wizard..."; this.toolTip1.SetToolTip(this.btnWizard, "Run the Startup Wizard."); this.btnWizard.Visible = false; this.btnWizard.Click += new System.EventHandler(this.btnWizard_Click); // // chkGeneralRXOnly // this.chkGeneralRXOnly.Image = null; this.chkGeneralRXOnly.Location = new System.Drawing.Point(336, 160); this.chkGeneralRXOnly.Name = "chkGeneralRXOnly"; this.chkGeneralRXOnly.Size = new System.Drawing.Size(96, 16); this.chkGeneralRXOnly.TabIndex = 11; this.chkGeneralRXOnly.Text = "Receive Only"; this.toolTip1.SetToolTip(this.chkGeneralRXOnly, "Check to disable transmit functionality."); this.chkGeneralRXOnly.CheckedChanged += new System.EventHandler(this.chkGeneralRXOnly_CheckedChanged); // // grpGeneralHardwareFLEX5000 // this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblFlexControlRev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblVURev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.udF3KFanTempThresh); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblF3KFanTempThresh); this.grpGeneralHardwareFLEX5000.Controls.Add(this.chkGenFLEX5000ExtRef); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblFirmwareRev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblRX2Rev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblATURev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblRFIORev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblPARev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblTRXRev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblSerialNum); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblModel); this.grpGeneralHardwareFLEX5000.Location = new System.Drawing.Point(160, 8); this.grpGeneralHardwareFLEX5000.Name = "grpGeneralHardwareFLEX5000"; this.grpGeneralHardwareFLEX5000.Size = new System.Drawing.Size(160, 248); this.grpGeneralHardwareFLEX5000.TabIndex = 11; this.grpGeneralHardwareFLEX5000.TabStop = false; this.grpGeneralHardwareFLEX5000.Text = "FLEX-5000 Config"; this.grpGeneralHardwareFLEX5000.Visible = false; // // lblFlexControlRev // this.lblFlexControlRev.Image = null; this.lblFlexControlRev.Location = new System.Drawing.Point(17, 160); this.lblFlexControlRev.Name = "lblFlexControlRev"; this.lblFlexControlRev.Size = new System.Drawing.Size(136, 16); this.lblFlexControlRev.TabIndex = 29; this.lblFlexControlRev.Text = "FlexControl: v0.2.0.9"; this.lblFlexControlRev.Visible = false; // // lblVURev // this.lblVURev.Image = null; this.lblVURev.Location = new System.Drawing.Point(17, 144); this.lblVURev.Name = "lblVURev"; this.lblVURev.Size = new System.Drawing.Size(136, 16); this.lblVURev.TabIndex = 28; this.lblVURev.Text = "VU: 8888-8888 (8.8.8.8)"; // // udF3KFanTempThresh // this.udF3KFanTempThresh.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udF3KFanTempThresh.Location = new System.Drawing.Point(104, 216); this.udF3KFanTempThresh.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udF3KFanTempThresh.Minimum = new decimal(new int[] { 30, 0, 0, 0 }); this.udF3KFanTempThresh.Name = "udF3KFanTempThresh"; this.udF3KFanTempThresh.Size = new System.Drawing.Size(40, 20); this.udF3KFanTempThresh.TabIndex = 14; this.toolTip1.SetToolTip(this.udF3KFanTempThresh, "Temperature in degrees Celsius at which the fan will stay on."); this.udF3KFanTempThresh.Value = new decimal(new int[] { 40, 0, 0, 0 }); this.udF3KFanTempThresh.Visible = false; this.udF3KFanTempThresh.ValueChanged += new System.EventHandler(this.udF3KFanTempThresh_ValueChanged); // // lblF3KFanTempThresh // this.lblF3KFanTempThresh.Image = null; this.lblF3KFanTempThresh.Location = new System.Drawing.Point(16, 208); this.lblF3KFanTempThresh.Name = "lblF3KFanTempThresh"; this.lblF3KFanTempThresh.Size = new System.Drawing.Size(88, 32); this.lblF3KFanTempThresh.TabIndex = 13; this.lblF3KFanTempThresh.Text = "Fan Temp Threshold (°C):"; this.lblF3KFanTempThresh.Visible = false; // // chkGenFLEX5000ExtRef // this.chkGenFLEX5000ExtRef.Image = null; this.chkGenFLEX5000ExtRef.Location = new System.Drawing.Point(16, 184); this.chkGenFLEX5000ExtRef.Name = "chkGenFLEX5000ExtRef"; this.chkGenFLEX5000ExtRef.Size = new System.Drawing.Size(120, 16); this.chkGenFLEX5000ExtRef.TabIndex = 12; this.chkGenFLEX5000ExtRef.Text = "Use Ext. Ref Input"; this.toolTip1.SetToolTip(this.chkGenFLEX5000ExtRef, "Check to use an externally supplied 10MHz clock with the FLEX-5000 or FLEX-1500"); this.chkGenFLEX5000ExtRef.CheckedChanged += new System.EventHandler(this.chkGenFLEX5000ExtRef_CheckedChanged); // // lblFirmwareRev // this.lblFirmwareRev.Image = null; this.lblFirmwareRev.Location = new System.Drawing.Point(16, 40); this.lblFirmwareRev.Name = "lblFirmwareRev"; this.lblFirmwareRev.Size = new System.Drawing.Size(120, 16); this.lblFirmwareRev.TabIndex = 7; this.lblFirmwareRev.Text = "Firmware: 0.0.0.0"; // // lblRX2Rev // this.lblRX2Rev.Image = null; this.lblRX2Rev.Location = new System.Drawing.Point(16, 128); this.lblRX2Rev.Name = "lblRX2Rev"; this.lblRX2Rev.Size = new System.Drawing.Size(136, 16); this.lblRX2Rev.TabIndex = 6; this.lblRX2Rev.Text = "RX2: 8888-8888 (8.8.8.8)"; // // lblATURev // this.lblATURev.Image = null; this.lblATURev.Location = new System.Drawing.Point(16, 112); this.lblATURev.Name = "lblATURev"; this.lblATURev.Size = new System.Drawing.Size(136, 16); this.lblATURev.TabIndex = 5; this.lblATURev.Text = "ATU: 8888-8888 (8.8.8.8)"; // // lblRFIORev // this.lblRFIORev.Image = null; this.lblRFIORev.Location = new System.Drawing.Point(16, 96); this.lblRFIORev.Name = "lblRFIORev"; this.lblRFIORev.Size = new System.Drawing.Size(140, 16); this.lblRFIORev.TabIndex = 4; this.lblRFIORev.Text = "RFIO: 8888-8888 (8.8.8.8)"; // // lblPARev // this.lblPARev.Image = null; this.lblPARev.Location = new System.Drawing.Point(16, 80); this.lblPARev.Name = "lblPARev"; this.lblPARev.Size = new System.Drawing.Size(136, 16); this.lblPARev.TabIndex = 3; this.lblPARev.Text = "PA: 8888-8888 (8.8.8.8)"; // // lblTRXRev // this.lblTRXRev.Image = null; this.lblTRXRev.Location = new System.Drawing.Point(16, 64); this.lblTRXRev.Name = "lblTRXRev"; this.lblTRXRev.Size = new System.Drawing.Size(136, 16); this.lblTRXRev.TabIndex = 2; this.lblTRXRev.Text = "TRX: 8888-8888 (28F)"; // // lblSerialNum // this.lblSerialNum.Image = null; this.lblSerialNum.Location = new System.Drawing.Point(67, 24); this.lblSerialNum.Name = "lblSerialNum"; this.lblSerialNum.Size = new System.Drawing.Size(86, 16); this.lblSerialNum.TabIndex = 1; this.lblSerialNum.Text = "S/N: 0000-0000"; // // lblModel // this.lblModel.Image = null; this.lblModel.Location = new System.Drawing.Point(16, 24); this.lblModel.Name = "lblModel"; this.lblModel.Size = new System.Drawing.Size(52, 16); this.lblModel.TabIndex = 0; this.lblModel.Text = "Model: A"; // // grpGeneralHardwareSDR1000 // this.grpGeneralHardwareSDR1000.Controls.Add(this.lblFlexControlRev1K); this.grpGeneralHardwareSDR1000.Controls.Add(this.chkEnableRFEPATR); this.grpGeneralHardwareSDR1000.Controls.Add(this.chkGeneralUSBPresent); this.grpGeneralHardwareSDR1000.Controls.Add(this.chkGeneralATUPresent); this.grpGeneralHardwareSDR1000.Controls.Add(this.chkGeneralPAPresent); this.grpGeneralHardwareSDR1000.Controls.Add(this.chkGeneralXVTRPresent); this.grpGeneralHardwareSDR1000.Controls.Add(this.lblGeneralLPTDelay); this.grpGeneralHardwareSDR1000.Controls.Add(this.udGeneralLPTDelay); this.grpGeneralHardwareSDR1000.Controls.Add(this.lblGeneralLPTAddr); this.grpGeneralHardwareSDR1000.Controls.Add(this.comboGeneralLPTAddr); this.grpGeneralHardwareSDR1000.Controls.Add(this.comboGeneralXVTR); this.grpGeneralHardwareSDR1000.Location = new System.Drawing.Point(160, 8); this.grpGeneralHardwareSDR1000.Name = "grpGeneralHardwareSDR1000"; this.grpGeneralHardwareSDR1000.Size = new System.Drawing.Size(160, 248); this.grpGeneralHardwareSDR1000.TabIndex = 1; this.grpGeneralHardwareSDR1000.TabStop = false; this.grpGeneralHardwareSDR1000.Text = "SDR-1000 Config"; // // lblFlexControlRev1K // this.lblFlexControlRev1K.Image = null; this.lblFlexControlRev1K.Location = new System.Drawing.Point(13, 220); this.lblFlexControlRev1K.Name = "lblFlexControlRev1K"; this.lblFlexControlRev1K.Size = new System.Drawing.Size(136, 16); this.lblFlexControlRev1K.TabIndex = 30; this.lblFlexControlRev1K.Text = "FlexControl: v0.2.0.9"; this.lblFlexControlRev1K.Visible = false; // // chkEnableRFEPATR // this.chkEnableRFEPATR.Image = null; this.chkEnableRFEPATR.Location = new System.Drawing.Point(16, 192); this.chkEnableRFEPATR.Name = "chkEnableRFEPATR"; this.chkEnableRFEPATR.Size = new System.Drawing.Size(120, 16); this.chkEnableRFEPATR.TabIndex = 12; this.chkEnableRFEPATR.Text = "Enable RFE PA TR"; this.toolTip1.SetToolTip(this.chkEnableRFEPATR, "Enabled the RFE PA TR line to toggle with MOX (for use with non-FLEX PA)."); this.chkEnableRFEPATR.CheckedChanged += new System.EventHandler(this.chkEnableRFEPATR_CheckedChanged); // // chkGeneralUSBPresent // this.chkGeneralUSBPresent.Image = null; this.chkGeneralUSBPresent.Location = new System.Drawing.Point(16, 88); this.chkGeneralUSBPresent.Name = "chkGeneralUSBPresent"; this.chkGeneralUSBPresent.Size = new System.Drawing.Size(96, 16); this.chkGeneralUSBPresent.TabIndex = 10; this.chkGeneralUSBPresent.Text = "USB Adapter"; this.toolTip1.SetToolTip(this.chkGeneralUSBPresent, "Check if the USB adapter is being used."); this.chkGeneralUSBPresent.CheckedChanged += new System.EventHandler(this.chkGeneralUSBPresent_CheckedChanged); // // chkGeneralATUPresent // this.chkGeneralATUPresent.Image = null; this.chkGeneralATUPresent.Location = new System.Drawing.Point(16, 120); this.chkGeneralATUPresent.Name = "chkGeneralATUPresent"; this.chkGeneralATUPresent.Size = new System.Drawing.Size(88, 16); this.chkGeneralATUPresent.TabIndex = 9; this.chkGeneralATUPresent.Text = "ATU Present"; this.toolTip1.SetToolTip(this.chkGeneralATUPresent, "Check if integrated LDG Z-100 is installed."); this.chkGeneralATUPresent.Visible = false; this.chkGeneralATUPresent.CheckedChanged += new System.EventHandler(this.chkGeneralATUPresent_CheckedChanged); // // chkGeneralPAPresent // this.chkGeneralPAPresent.Image = null; this.chkGeneralPAPresent.Location = new System.Drawing.Point(16, 104); this.chkGeneralPAPresent.Name = "chkGeneralPAPresent"; this.chkGeneralPAPresent.Size = new System.Drawing.Size(88, 16); this.chkGeneralPAPresent.TabIndex = 8; this.chkGeneralPAPresent.Text = "PA Present"; this.toolTip1.SetToolTip(this.chkGeneralPAPresent, "Check if FlexRadio Systems 100W PA is installed."); this.chkGeneralPAPresent.CheckedChanged += new System.EventHandler(this.chkGeneralPAPresent_CheckedChanged); // // chkGeneralXVTRPresent // this.chkGeneralXVTRPresent.Image = null; this.chkGeneralXVTRPresent.Location = new System.Drawing.Point(16, 136); this.chkGeneralXVTRPresent.Name = "chkGeneralXVTRPresent"; this.chkGeneralXVTRPresent.Size = new System.Drawing.Size(104, 16); this.chkGeneralXVTRPresent.TabIndex = 7; this.chkGeneralXVTRPresent.Text = "XVTR Present"; this.toolTip1.SetToolTip(this.chkGeneralXVTRPresent, "Check if DEMI XVTR is installed."); this.chkGeneralXVTRPresent.CheckedChanged += new System.EventHandler(this.chkXVTRPresent_CheckedChanged); // // lblGeneralLPTDelay // this.lblGeneralLPTDelay.Image = null; this.lblGeneralLPTDelay.Location = new System.Drawing.Point(16, 56); this.lblGeneralLPTDelay.Name = "lblGeneralLPTDelay"; this.lblGeneralLPTDelay.Size = new System.Drawing.Size(80, 16); this.lblGeneralLPTDelay.TabIndex = 6; this.lblGeneralLPTDelay.Text = "LPT Delay:"; // // udGeneralLPTDelay // this.udGeneralLPTDelay.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udGeneralLPTDelay.Location = new System.Drawing.Point(96, 56); this.udGeneralLPTDelay.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udGeneralLPTDelay.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralLPTDelay.Name = "udGeneralLPTDelay"; this.udGeneralLPTDelay.Size = new System.Drawing.Size(56, 20); this.udGeneralLPTDelay.TabIndex = 5; this.toolTip1.SetToolTip(this.udGeneralLPTDelay, "Delay to compensate for longer Parallel cables."); this.udGeneralLPTDelay.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralLPTDelay.ValueChanged += new System.EventHandler(this.udGeneralLPTDelay_ValueChanged); this.udGeneralLPTDelay.LostFocus += new System.EventHandler(this.udGeneralLPTDelay_LostFocus); // // lblGeneralLPTAddr // this.lblGeneralLPTAddr.Image = null; this.lblGeneralLPTAddr.Location = new System.Drawing.Point(16, 24); this.lblGeneralLPTAddr.Name = "lblGeneralLPTAddr"; this.lblGeneralLPTAddr.Size = new System.Drawing.Size(80, 16); this.lblGeneralLPTAddr.TabIndex = 3; this.lblGeneralLPTAddr.Text = "LPT Address:"; // // comboGeneralLPTAddr // this.comboGeneralLPTAddr.DropDownWidth = 56; this.comboGeneralLPTAddr.Items.AddRange(new object[] { "278", "378", "3BC", "B800", "BC00"}); this.comboGeneralLPTAddr.Location = new System.Drawing.Point(96, 24); this.comboGeneralLPTAddr.Name = "comboGeneralLPTAddr"; this.comboGeneralLPTAddr.Size = new System.Drawing.Size(56, 21); this.comboGeneralLPTAddr.TabIndex = 0; this.comboGeneralLPTAddr.Text = "378"; this.toolTip1.SetToolTip(this.comboGeneralLPTAddr, "Parallel Port Address"); this.comboGeneralLPTAddr.LostFocus += new System.EventHandler(this.comboGeneralLPTAddr_LostFocus); this.comboGeneralLPTAddr.SelectedIndexChanged += new System.EventHandler(this.comboGeneralLPTAddr_SelectedIndexChanged); this.comboGeneralLPTAddr.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboGeneralLPTAddr_KeyDown); // // comboGeneralXVTR // this.comboGeneralXVTR.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboGeneralXVTR.DropDownWidth = 136; this.comboGeneralXVTR.Items.AddRange(new object[] { "Negative TR Logic", "Positive TR Logic", "No TR Logic"}); this.comboGeneralXVTR.Location = new System.Drawing.Point(16, 160); this.comboGeneralXVTR.Name = "comboGeneralXVTR"; this.comboGeneralXVTR.Size = new System.Drawing.Size(136, 21); this.comboGeneralXVTR.TabIndex = 5; this.toolTip1.SetToolTip(this.comboGeneralXVTR, "XVTR TR Logic Selection -- Negative for XVTR FlexRadio Systems provides. Positiv" + "e for 25W version. No TR logic for other XVTRs."); this.comboGeneralXVTR.Visible = false; this.comboGeneralXVTR.SelectedIndexChanged += new System.EventHandler(this.comboGeneralXVTR_SelectedIndexChanged); // // grpGeneralHardwareFLEX1500 // this.grpGeneralHardwareFLEX1500.Controls.Add(this.lblFlexControlRev1500); this.grpGeneralHardwareFLEX1500.Controls.Add(this.chkGenFLEX1500Xref); this.grpGeneralHardwareFLEX1500.Controls.Add(this.lbl1500FWRev); this.grpGeneralHardwareFLEX1500.Controls.Add(this.lbl1500PARev); this.grpGeneralHardwareFLEX1500.Controls.Add(this.lbl1500TRXRev); this.grpGeneralHardwareFLEX1500.Controls.Add(this.lbl1500SN); this.grpGeneralHardwareFLEX1500.Location = new System.Drawing.Point(160, 8); this.grpGeneralHardwareFLEX1500.Name = "grpGeneralHardwareFLEX1500"; this.grpGeneralHardwareFLEX1500.Size = new System.Drawing.Size(160, 248); this.grpGeneralHardwareFLEX1500.TabIndex = 27; this.grpGeneralHardwareFLEX1500.TabStop = false; this.grpGeneralHardwareFLEX1500.Text = "FLEX-1500 Config"; this.grpGeneralHardwareFLEX1500.Visible = false; // // lblFlexControlRev1500 // this.lblFlexControlRev1500.Image = null; this.lblFlexControlRev1500.Location = new System.Drawing.Point(18, 96); this.lblFlexControlRev1500.Name = "lblFlexControlRev1500"; this.lblFlexControlRev1500.Size = new System.Drawing.Size(136, 16); this.lblFlexControlRev1500.TabIndex = 31; this.lblFlexControlRev1500.Text = "FlexControl: v0.2.0.9"; this.lblFlexControlRev1500.Visible = false; // // chkGenFLEX1500Xref // this.chkGenFLEX1500Xref.Image = null; this.chkGenFLEX1500Xref.Location = new System.Drawing.Point(16, 184); this.chkGenFLEX1500Xref.Name = "chkGenFLEX1500Xref"; this.chkGenFLEX1500Xref.Size = new System.Drawing.Size(120, 16); this.chkGenFLEX1500Xref.TabIndex = 12; this.chkGenFLEX1500Xref.Text = "Use Ext. Ref Input"; this.toolTip1.SetToolTip(this.chkGenFLEX1500Xref, "Check to use an externally supplied 10MHz clock with the FLEX-5000"); this.chkGenFLEX1500Xref.CheckedChanged += new System.EventHandler(this.chkGenFLEX1500Xref_CheckedChanged); // // lbl1500FWRev // this.lbl1500FWRev.Image = null; this.lbl1500FWRev.Location = new System.Drawing.Point(18, 40); this.lbl1500FWRev.Name = "lbl1500FWRev"; this.lbl1500FWRev.Size = new System.Drawing.Size(120, 16); this.lbl1500FWRev.TabIndex = 7; this.lbl1500FWRev.Text = "Firmware: 0.0.0.0"; // // lbl1500PARev // this.lbl1500PARev.Image = null; this.lbl1500PARev.Location = new System.Drawing.Point(18, 80); this.lbl1500PARev.Name = "lbl1500PARev"; this.lbl1500PARev.Size = new System.Drawing.Size(136, 16); this.lbl1500PARev.TabIndex = 3; this.lbl1500PARev.Text = "PA: 8888-8888 (8.8.8.8)"; // // lbl1500TRXRev // this.lbl1500TRXRev.Image = null; this.lbl1500TRXRev.Location = new System.Drawing.Point(16, 64); this.lbl1500TRXRev.Name = "lbl1500TRXRev"; this.lbl1500TRXRev.Size = new System.Drawing.Size(136, 16); this.lbl1500TRXRev.TabIndex = 2; this.lbl1500TRXRev.Text = "TRX: 8888-8888 (28F)"; // // lbl1500SN // this.lbl1500SN.Image = null; this.lbl1500SN.Location = new System.Drawing.Point(18, 24); this.lbl1500SN.Name = "lbl1500SN"; this.lbl1500SN.Size = new System.Drawing.Size(86, 16); this.lbl1500SN.TabIndex = 1; this.lbl1500SN.Text = "S/N: 0000-0000"; // // tpGeneralOptions // this.tpGeneralOptions.BackColor = System.Drawing.SystemColors.Control; this.tpGeneralOptions.Controls.Add(this.chkGenOptionsShowATUPopup); this.tpGeneralOptions.Controls.Add(this.chkImportDBRestrict); this.tpGeneralOptions.Controls.Add(this.grpOptUSBBuf); this.tpGeneralOptions.Controls.Add(this.grpGenCustomTitleText); this.tpGeneralOptions.Controls.Add(this.grpOptMisc); this.tpGeneralOptions.Controls.Add(this.grpOptQuickQSY); this.tpGeneralOptions.Controls.Add(this.grpGenAutoMute); this.tpGeneralOptions.Controls.Add(this.grpGenTuningOptions); this.tpGeneralOptions.Controls.Add(this.grpGeneralOptions); this.tpGeneralOptions.Controls.Add(this.grpGeneralProcessPriority); this.tpGeneralOptions.Location = new System.Drawing.Point(4, 22); this.tpGeneralOptions.Name = "tpGeneralOptions"; this.tpGeneralOptions.Size = new System.Drawing.Size(592, 318); this.tpGeneralOptions.TabIndex = 1; this.tpGeneralOptions.Text = "Options"; // // chkGenOptionsShowATUPopup // this.chkGenOptionsShowATUPopup.Image = null; this.chkGenOptionsShowATUPopup.Location = new System.Drawing.Point(174, 214); this.chkGenOptionsShowATUPopup.Name = "chkGenOptionsShowATUPopup"; this.chkGenOptionsShowATUPopup.Size = new System.Drawing.Size(84, 34); this.chkGenOptionsShowATUPopup.TabIndex = 16; this.chkGenOptionsShowATUPopup.Text = "Show ATU Popup"; this.toolTip1.SetToolTip(this.chkGenOptionsShowATUPopup, "Check this box to receive feedback popups when running the FLEX-3000 ATU"); this.chkGenOptionsShowATUPopup.Visible = false; this.chkGenOptionsShowATUPopup.CheckedChanged += new System.EventHandler(this.chkGenOptionsShowATUPopup_CheckedChanged); // // chkImportDBRestrict // this.chkImportDBRestrict.AllowDrop = true; this.chkImportDBRestrict.Checked = true; this.chkImportDBRestrict.CheckState = System.Windows.Forms.CheckState.Checked; this.chkImportDBRestrict.Image = null; this.chkImportDBRestrict.Location = new System.Drawing.Point(24, 243); this.chkImportDBRestrict.Name = "chkImportDBRestrict"; this.chkImportDBRestrict.Size = new System.Drawing.Size(187, 18); this.chkImportDBRestrict.TabIndex = 31; this.chkImportDBRestrict.Text = "Strict DB Import Compliance"; this.toolTip1.SetToolTip(this.chkImportDBRestrict, "Uncheck this box to allow DB import using a DB from a earlier or later version of" + " PowerSDR. May cause import errors"); // // grpOptUSBBuf // this.grpOptUSBBuf.Controls.Add(this.lblOptUSBBufConservative); this.grpOptUSBBuf.Controls.Add(this.lblOptUSBBufAggressive); this.grpOptUSBBuf.Controls.Add(this.tbOptUSBBuf); this.grpOptUSBBuf.Location = new System.Drawing.Point(416, 8); this.grpOptUSBBuf.Name = "grpOptUSBBuf"; this.grpOptUSBBuf.Size = new System.Drawing.Size(161, 98); this.grpOptUSBBuf.TabIndex = 30; this.grpOptUSBBuf.TabStop = false; this.grpOptUSBBuf.Text = "USB Driver Buffer"; this.grpOptUSBBuf.Visible = false; // // lblOptUSBBufConservative // this.lblOptUSBBufConservative.AutoSize = true; this.lblOptUSBBufConservative.Image = null; this.lblOptUSBBufConservative.Location = new System.Drawing.Point(6, 59); this.lblOptUSBBufConservative.Name = "lblOptUSBBufConservative"; this.lblOptUSBBufConservative.Size = new System.Drawing.Size(69, 13); this.lblOptUSBBufConservative.TabIndex = 2; this.lblOptUSBBufConservative.Text = "Conservative"; // // lblOptUSBBufAggressive // this.lblOptUSBBufAggressive.AutoSize = true; this.lblOptUSBBufAggressive.Image = null; this.lblOptUSBBufAggressive.Location = new System.Drawing.Point(96, 59); this.lblOptUSBBufAggressive.Name = "lblOptUSBBufAggressive"; this.lblOptUSBBufAggressive.Size = new System.Drawing.Size(59, 13); this.lblOptUSBBufAggressive.TabIndex = 1; this.lblOptUSBBufAggressive.Text = "Aggressive"; // // tbOptUSBBuf // this.tbOptUSBBuf.LargeChange = 1; this.tbOptUSBBuf.Location = new System.Drawing.Point(22, 20); this.tbOptUSBBuf.Maximum = 4; this.tbOptUSBBuf.Name = "tbOptUSBBuf"; this.tbOptUSBBuf.Size = new System.Drawing.Size(112, 42); this.tbOptUSBBuf.TabIndex = 0; this.tbOptUSBBuf.Value = 1; this.tbOptUSBBuf.Scroll += new System.EventHandler(this.tbOptUSBBuf_Scroll); // // grpGenCustomTitleText // this.grpGenCustomTitleText.Controls.Add(this.txtGenCustomTitle); this.grpGenCustomTitleText.Location = new System.Drawing.Point(416, 192); this.grpGenCustomTitleText.Name = "grpGenCustomTitleText"; this.grpGenCustomTitleText.Size = new System.Drawing.Size(144, 56); this.grpGenCustomTitleText.TabIndex = 29; this.grpGenCustomTitleText.TabStop = false; this.grpGenCustomTitleText.Text = "Custom Title Text"; // // txtGenCustomTitle // this.txtGenCustomTitle.Location = new System.Drawing.Point(16, 24); this.txtGenCustomTitle.MaxLength = 50; this.txtGenCustomTitle.Name = "txtGenCustomTitle"; this.txtGenCustomTitle.Size = new System.Drawing.Size(112, 20); this.txtGenCustomTitle.TabIndex = 0; this.txtGenCustomTitle.TextChanged += new System.EventHandler(this.txtGenCustomTitle_TextChanged); // // grpOptMisc // this.grpOptMisc.Controls.Add(this.chkWheelTuneVFOB); this.grpOptMisc.Controls.Add(this.chkMouseTuneStep); this.grpOptMisc.Controls.Add(this.chkZeroBeatRIT); this.grpOptMisc.Controls.Add(this.chkSnapClickTune); this.grpOptMisc.Controls.Add(this.chkDisableToolTips); this.grpOptMisc.Controls.Add(this.chkOptAlwaysOnTop); this.grpOptMisc.Location = new System.Drawing.Point(264, 72); this.grpOptMisc.Name = "grpOptMisc"; this.grpOptMisc.Size = new System.Drawing.Size(144, 176); this.grpOptMisc.TabIndex = 28; this.grpOptMisc.TabStop = false; this.grpOptMisc.Text = "Miscellaneous"; // // chkWheelTuneVFOB // this.chkWheelTuneVFOB.Image = null; this.chkWheelTuneVFOB.Location = new System.Drawing.Point(16, 140); this.chkWheelTuneVFOB.Name = "chkWheelTuneVFOB"; this.chkWheelTuneVFOB.Size = new System.Drawing.Size(122, 32); this.chkWheelTuneVFOB.TabIndex = 5; this.chkWheelTuneVFOB.Text = "Wheel Tunes VFOB (red x-hairs)"; this.toolTip1.SetToolTip(this.chkWheelTuneVFOB, "When checked, the mouse wheel will tune VFO B when the red crosshairs are active." + ""); this.chkWheelTuneVFOB.CheckedChanged += new System.EventHandler(this.chkWheelTuneVFOB_CheckedChanged); // // chkMouseTuneStep // this.chkMouseTuneStep.Image = null; this.chkMouseTuneStep.Location = new System.Drawing.Point(16, 120); this.chkMouseTuneStep.Name = "chkMouseTuneStep"; this.chkMouseTuneStep.Size = new System.Drawing.Size(112, 16); this.chkMouseTuneStep.TabIndex = 4; this.chkMouseTuneStep.Text = "Mouse Tune Step"; this.toolTip1.SetToolTip(this.chkMouseTuneStep, "When checked, the middle mouse button/wheel will cycle through the Tuning Steps."); this.chkMouseTuneStep.CheckedChanged += new System.EventHandler(this.chkMouseTuneStep_CheckedChanged); // // chkZeroBeatRIT // this.chkZeroBeatRIT.Image = null; this.chkZeroBeatRIT.Location = new System.Drawing.Point(16, 96); this.chkZeroBeatRIT.Name = "chkZeroBeatRIT"; this.chkZeroBeatRIT.Size = new System.Drawing.Size(112, 16); this.chkZeroBeatRIT.TabIndex = 3; this.chkZeroBeatRIT.Text = "Zero Beat - RIT"; this.toolTip1.SetToolTip(this.chkZeroBeatRIT, "When checked, the zero beat function uses RIT instead of adjusting the VFO direct" + "ly. This leaves the transmit frequency alone."); this.chkZeroBeatRIT.CheckedChanged += new System.EventHandler(this.chkZeroBeatRIT_CheckedChanged); // // chkSnapClickTune // this.chkSnapClickTune.Checked = true; this.chkSnapClickTune.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSnapClickTune.Image = null; this.chkSnapClickTune.Location = new System.Drawing.Point(16, 72); this.chkSnapClickTune.Name = "chkSnapClickTune"; this.chkSnapClickTune.Size = new System.Drawing.Size(112, 16); this.chkSnapClickTune.TabIndex = 2; this.chkSnapClickTune.Text = "Snap Click Tune"; this.toolTip1.SetToolTip(this.chkSnapClickTune, "Forces the VFO to the closest tuning step when click tuning."); this.chkSnapClickTune.CheckedChanged += new System.EventHandler(this.chkSnapClickTune_CheckedChanged); // // chkDisableToolTips // this.chkDisableToolTips.Image = null; this.chkDisableToolTips.Location = new System.Drawing.Point(16, 48); this.chkDisableToolTips.Name = "chkDisableToolTips"; this.chkDisableToolTips.Size = new System.Drawing.Size(112, 16); this.chkDisableToolTips.TabIndex = 1; this.chkDisableToolTips.Text = "Disable ToolTips"; this.toolTip1.SetToolTip(this.chkDisableToolTips, "Check this box to hide all of the tooltips (including this one)."); this.chkDisableToolTips.CheckedChanged += new System.EventHandler(this.chkDisableToolTips_CheckedChanged); // // chkOptAlwaysOnTop // this.chkOptAlwaysOnTop.Image = null; this.chkOptAlwaysOnTop.Location = new System.Drawing.Point(16, 24); this.chkOptAlwaysOnTop.Name = "chkOptAlwaysOnTop"; this.chkOptAlwaysOnTop.Size = new System.Drawing.Size(104, 16); this.chkOptAlwaysOnTop.TabIndex = 0; this.chkOptAlwaysOnTop.Text = "Always On Top"; this.toolTip1.SetToolTip(this.chkOptAlwaysOnTop, "Check this box to set the main console to always be on top (visible)."); this.chkOptAlwaysOnTop.CheckedChanged += new System.EventHandler(this.chkOptAlwaysOnTop_CheckedChanged); // // grpOptQuickQSY // this.grpOptQuickQSY.Controls.Add(this.chkOptEnableKBShortcuts); this.grpOptQuickQSY.Controls.Add(this.chkOptQuickQSY); this.grpOptQuickQSY.Location = new System.Drawing.Point(416, 112); this.grpOptQuickQSY.Name = "grpOptQuickQSY"; this.grpOptQuickQSY.Size = new System.Drawing.Size(128, 72); this.grpOptQuickQSY.TabIndex = 27; this.grpOptQuickQSY.TabStop = false; this.grpOptQuickQSY.Text = "Keyboard"; // // chkOptEnableKBShortcuts // this.chkOptEnableKBShortcuts.Checked = true; this.chkOptEnableKBShortcuts.CheckState = System.Windows.Forms.CheckState.Checked; this.chkOptEnableKBShortcuts.Image = null; this.chkOptEnableKBShortcuts.Location = new System.Drawing.Point(16, 24); this.chkOptEnableKBShortcuts.Name = "chkOptEnableKBShortcuts"; this.chkOptEnableKBShortcuts.Size = new System.Drawing.Size(109, 16); this.chkOptEnableKBShortcuts.TabIndex = 1; this.chkOptEnableKBShortcuts.Text = "Enable Shortcuts"; this.toolTip1.SetToolTip(this.chkOptEnableKBShortcuts, "Enable keyboard shortcuts. If this box is not checked, none of the keyboard shor" + "tcuts other than those that are built into windows will function."); this.chkOptEnableKBShortcuts.CheckedChanged += new System.EventHandler(this.chkOptEnableKBShortcuts_CheckedChanged); // // chkOptQuickQSY // this.chkOptQuickQSY.Checked = true; this.chkOptQuickQSY.CheckState = System.Windows.Forms.CheckState.Checked; this.chkOptQuickQSY.Image = null; this.chkOptQuickQSY.Location = new System.Drawing.Point(16, 48); this.chkOptQuickQSY.Name = "chkOptQuickQSY"; this.chkOptQuickQSY.Size = new System.Drawing.Size(80, 16); this.chkOptQuickQSY.TabIndex = 0; this.chkOptQuickQSY.Text = "Quick QSY"; this.toolTip1.SetToolTip(this.chkOptQuickQSY, "Enabled the Quick QSY feature -- directly enter the frequency in MHz while the ma" + "in form has the focus and hit enter."); this.chkOptQuickQSY.CheckedChanged += new System.EventHandler(this.chkOptQuickQSY_CheckedChanged); // // grpGenAutoMute // this.grpGenAutoMute.Controls.Add(this.chkGenAutoMute); this.grpGenAutoMute.Location = new System.Drawing.Point(158, 160); this.grpGenAutoMute.Name = "grpGenAutoMute"; this.grpGenAutoMute.Size = new System.Drawing.Size(96, 48); this.grpGenAutoMute.TabIndex = 26; this.grpGenAutoMute.TabStop = false; this.grpGenAutoMute.Text = "Auto Mute"; // // chkGenAutoMute // this.chkGenAutoMute.Image = null; this.chkGenAutoMute.Location = new System.Drawing.Point(16, 24); this.chkGenAutoMute.Name = "chkGenAutoMute"; this.chkGenAutoMute.Size = new System.Drawing.Size(72, 16); this.chkGenAutoMute.TabIndex = 0; this.chkGenAutoMute.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkGenAutoMute, "Check this box to enable the software to poll Pin X2-12 to look for a signal to m" + "ute the radio."); this.chkGenAutoMute.CheckedChanged += new System.EventHandler(this.chkGenAutoMute_CheckedChanged); // // grpGenTuningOptions // this.grpGenTuningOptions.Controls.Add(this.udOptClickTuneOffsetDIGU); this.grpGenTuningOptions.Controls.Add(this.lblOptClickTuneDIGL); this.grpGenTuningOptions.Controls.Add(this.udOptClickTuneOffsetDIGL); this.grpGenTuningOptions.Controls.Add(this.lblOptClickTuneDIGU); this.grpGenTuningOptions.Location = new System.Drawing.Point(8, 160); this.grpGenTuningOptions.Name = "grpGenTuningOptions"; this.grpGenTuningOptions.Size = new System.Drawing.Size(144, 80); this.grpGenTuningOptions.TabIndex = 25; this.grpGenTuningOptions.TabStop = false; this.grpGenTuningOptions.Text = "Click Tune / Filter Offsets"; // // udOptClickTuneOffsetDIGU // this.udOptClickTuneOffsetDIGU.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Location = new System.Drawing.Point(72, 24); this.udOptClickTuneOffsetDIGU.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Name = "udOptClickTuneOffsetDIGU"; this.udOptClickTuneOffsetDIGU.Size = new System.Drawing.Size(56, 20); this.udOptClickTuneOffsetDIGU.TabIndex = 0; this.toolTip1.SetToolTip(this.udOptClickTuneOffsetDIGU, "Determines the frequency offset for click tuning and \r\nthe RX filter\'s center fre" + "quency"); this.udOptClickTuneOffsetDIGU.Value = new decimal(new int[] { 1500, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.ValueChanged += new System.EventHandler(this.udOptClickTuneOffsetDIGU_ValueChanged); this.udOptClickTuneOffsetDIGU.LostFocus += new System.EventHandler(this.udOptClickTuneOffsetDIGU_LostFocus); // // lblOptClickTuneDIGL // this.lblOptClickTuneDIGL.Image = null; this.lblOptClickTuneDIGL.Location = new System.Drawing.Point(6, 48); this.lblOptClickTuneDIGL.Name = "lblOptClickTuneDIGL"; this.lblOptClickTuneDIGL.Size = new System.Drawing.Size(64, 23); this.lblOptClickTuneDIGL.TabIndex = 12; this.lblOptClickTuneDIGL.Text = "DIGL (Hz):"; this.toolTip1.SetToolTip(this.lblOptClickTuneDIGL, "Determines the frequency offset for click tuning and \r\nthe RX filter\'s center fre" + "quency"); // // udOptClickTuneOffsetDIGL // this.udOptClickTuneOffsetDIGL.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Location = new System.Drawing.Point(72, 48); this.udOptClickTuneOffsetDIGL.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Name = "udOptClickTuneOffsetDIGL"; this.udOptClickTuneOffsetDIGL.Size = new System.Drawing.Size(56, 20); this.udOptClickTuneOffsetDIGL.TabIndex = 11; this.toolTip1.SetToolTip(this.udOptClickTuneOffsetDIGL, "Determines the frequency offset for click tuning and \r\nthe RX filter\'s center fre" + "quency"); this.udOptClickTuneOffsetDIGL.Value = new decimal(new int[] { 2210, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.ValueChanged += new System.EventHandler(this.udOptClickTuneOffsetDIGL_ValueChanged); this.udOptClickTuneOffsetDIGL.LostFocus += new System.EventHandler(this.udOptClickTuneOffsetDIGL_LostFocus); // // lblOptClickTuneDIGU // this.lblOptClickTuneDIGU.Image = null; this.lblOptClickTuneDIGU.Location = new System.Drawing.Point(6, 24); this.lblOptClickTuneDIGU.Name = "lblOptClickTuneDIGU"; this.lblOptClickTuneDIGU.Size = new System.Drawing.Size(64, 23); this.lblOptClickTuneDIGU.TabIndex = 10; this.lblOptClickTuneDIGU.Text = "DIGU (Hz):"; this.toolTip1.SetToolTip(this.lblOptClickTuneDIGU, "Determines the frequency offset for click tuning and \r\nthe RX filter\'s center fre" + "quency"); // // grpGeneralOptions // this.grpGeneralOptions.Controls.Add(this.udGenTX1Delay); this.grpGeneralOptions.Controls.Add(this.chkSplitOffOnModeChange); this.grpGeneralOptions.Controls.Add(this.lblGenTX1Delay); this.grpGeneralOptions.Controls.Add(this.chkGenTX1Delay); this.grpGeneralOptions.Controls.Add(this.chkSplitOff); this.grpGeneralOptions.Controls.Add(this.chkGenAllModeMicPTT); this.grpGeneralOptions.Controls.Add(this.chkGeneralCustomFilter); this.grpGeneralOptions.Controls.Add(this.lblGeneralX2Delay); this.grpGeneralOptions.Controls.Add(this.udGeneralX2Delay); this.grpGeneralOptions.Controls.Add(this.chkGeneralEnableX2); this.grpGeneralOptions.Controls.Add(this.chkGeneralSoftwareGainCorr); this.grpGeneralOptions.Controls.Add(this.chkGeneralDisablePTT); this.grpGeneralOptions.Controls.Add(this.chkGeneralSpurRed); this.grpGeneralOptions.Location = new System.Drawing.Point(8, 8); this.grpGeneralOptions.Name = "grpGeneralOptions"; this.grpGeneralOptions.Size = new System.Drawing.Size(248, 144); this.grpGeneralOptions.TabIndex = 6; this.grpGeneralOptions.TabStop = false; this.grpGeneralOptions.Text = "Options"; // // udGenTX1Delay // this.udGenTX1Delay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udGenTX1Delay.Location = new System.Drawing.Point(184, 56); this.udGenTX1Delay.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udGenTX1Delay.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udGenTX1Delay.Name = "udGenTX1Delay"; this.udGenTX1Delay.Size = new System.Drawing.Size(48, 20); this.udGenTX1Delay.TabIndex = 15; this.toolTip1.SetToolTip(this.udGenTX1Delay, resources.GetString("udGenTX1Delay.ToolTip")); this.udGenTX1Delay.Value = new decimal(new int[] { 1, 0, 0, 0}); this.udGenTX1Delay.Visible = false; this.udGenTX1Delay.ValueChanged += new System.EventHandler(this.udGenTX1Delay_ValueChanged); // // chkSplitOffOnModeChange // this.chkSplitOffOnModeChange.Image = null; this.chkSplitOffOnModeChange.Location = new System.Drawing.Point(126, 80); this.chkSplitOffOnModeChange.Name = "chkSplitOffOnModeChange"; this.chkSplitOffOnModeChange.Size = new System.Drawing.Size(104, 28); this.chkSplitOffOnModeChange.TabIndex = 32; this.chkSplitOffOnModeChange.Text = "Disable Split on Mode Change"; this.toolTip1.SetToolTip(this.chkSplitOffOnModeChange, "Split will be disabled when mode is changed"); this.chkSplitOffOnModeChange.CheckedChanged += new System.EventHandler(this.chkSplitOffOnModeChange_CheckedChanged); // // lblGenTX1Delay // this.lblGenTX1Delay.Image = null; this.lblGenTX1Delay.Location = new System.Drawing.Point(128, 48); this.lblGenTX1Delay.Name = "lblGenTX1Delay"; this.lblGenTX1Delay.Size = new System.Drawing.Size(56, 26); this.lblGenTX1Delay.TabIndex = 14; this.lblGenTX1Delay.Text = "TX Out Delay:"; this.lblGenTX1Delay.Visible = false; // // chkGenTX1Delay // this.chkGenTX1Delay.Checked = true; this.chkGenTX1Delay.CheckState = System.Windows.Forms.CheckState.Checked; this.chkGenTX1Delay.Image = null; this.chkGenTX1Delay.Location = new System.Drawing.Point(126, 20); this.chkGenTX1Delay.Name = "chkGenTX1Delay"; this.chkGenTX1Delay.Size = new System.Drawing.Size(96, 32); this.chkGenTX1Delay.TabIndex = 13; this.chkGenTX1Delay.Text = "Enable TX Out Delay"; this.toolTip1.SetToolTip(this.chkGenTX1Delay, "Check this box to delay after switching TX Out (before switch TR) with the value " + "set below."); this.chkGenTX1Delay.Visible = false; this.chkGenTX1Delay.CheckedChanged += new System.EventHandler(this.chkGenTX1Delay_CheckedChanged); // // chkSplitOff // this.chkSplitOff.Checked = true; this.chkSplitOff.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSplitOff.Image = null; this.chkSplitOff.Location = new System.Drawing.Point(126, 109); this.chkSplitOff.Name = "chkSplitOff"; this.chkSplitOff.Size = new System.Drawing.Size(104, 28); this.chkSplitOff.TabIndex = 12; this.chkSplitOff.Text = "Disable Split on Band Change"; this.toolTip1.SetToolTip(this.chkSplitOff, "Split will be disabled when band is changed"); this.chkSplitOff.CheckedChanged += new System.EventHandler(this.chkSplitOff_CheckedChanged); // // chkGenAllModeMicPTT // this.chkGenAllModeMicPTT.Checked = true; this.chkGenAllModeMicPTT.CheckState = System.Windows.Forms.CheckState.Checked; this.chkGenAllModeMicPTT.Image = null; this.chkGenAllModeMicPTT.Location = new System.Drawing.Point(16, 104); this.chkGenAllModeMicPTT.Name = "chkGenAllModeMicPTT"; this.chkGenAllModeMicPTT.Size = new System.Drawing.Size(104, 32); this.chkGenAllModeMicPTT.TabIndex = 11; this.chkGenAllModeMicPTT.Text = "All Mode Mic PTT"; this.toolTip1.SetToolTip(this.chkGenAllModeMicPTT, "If checked, the Mic PTT is no longer limited to just voice modes."); this.chkGenAllModeMicPTT.CheckedChanged += new System.EventHandler(this.chkGenAllModeMicPTT_CheckedChanged); // // chkGeneralCustomFilter // this.chkGeneralCustomFilter.Image = null; this.chkGeneralCustomFilter.Location = new System.Drawing.Point(128, 80); this.chkGeneralCustomFilter.Name = "chkGeneralCustomFilter"; this.chkGeneralCustomFilter.Size = new System.Drawing.Size(104, 26); this.chkGeneralCustomFilter.TabIndex = 10; this.chkGeneralCustomFilter.Text = "Enable 300kHz Filter"; this.toolTip1.SetToolTip(this.chkGeneralCustomFilter, "If the custom filter bank on the RFE is configured for 300kHz LPF, use this setti" + "ng."); this.chkGeneralCustomFilter.CheckedChanged += new System.EventHandler(this.chkGeneralCustomFilter_CheckedChanged); // // lblGeneralX2Delay // this.lblGeneralX2Delay.Image = null; this.lblGeneralX2Delay.Location = new System.Drawing.Point(128, 56); this.lblGeneralX2Delay.Name = "lblGeneralX2Delay"; this.lblGeneralX2Delay.Size = new System.Drawing.Size(56, 23); this.lblGeneralX2Delay.TabIndex = 9; this.lblGeneralX2Delay.Text = "X2 Delay:"; // // udGeneralX2Delay // this.udGeneralX2Delay.Enabled = false; this.udGeneralX2Delay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udGeneralX2Delay.Location = new System.Drawing.Point(184, 56); this.udGeneralX2Delay.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udGeneralX2Delay.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralX2Delay.Name = "udGeneralX2Delay"; this.udGeneralX2Delay.Size = new System.Drawing.Size(48, 20); this.udGeneralX2Delay.TabIndex = 8; this.toolTip1.SetToolTip(this.udGeneralX2Delay, "Sets the Delay on TR switching when the sequencing above is enabled."); this.udGeneralX2Delay.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udGeneralX2Delay.ValueChanged += new System.EventHandler(this.udGeneralX2Delay_ValueChanged); this.udGeneralX2Delay.LostFocus += new System.EventHandler(this.udGeneralX2Delay_LostFocus); // // chkGeneralEnableX2 // this.chkGeneralEnableX2.Image = null; this.chkGeneralEnableX2.Location = new System.Drawing.Point(128, 20); this.chkGeneralEnableX2.Name = "chkGeneralEnableX2"; this.chkGeneralEnableX2.Size = new System.Drawing.Size(96, 32); this.chkGeneralEnableX2.TabIndex = 7; this.chkGeneralEnableX2.Text = "Enable X2 TR Sequencing"; this.toolTip1.SetToolTip(this.chkGeneralEnableX2, "Check this box to enable X2-7 TR sequencing using the delay set below."); this.chkGeneralEnableX2.CheckedChanged += new System.EventHandler(this.chkGeneralEnableX2_CheckedChanged); // // chkGeneralSoftwareGainCorr // this.chkGeneralSoftwareGainCorr.Image = null; this.chkGeneralSoftwareGainCorr.Location = new System.Drawing.Point(16, 72); this.chkGeneralSoftwareGainCorr.Name = "chkGeneralSoftwareGainCorr"; this.chkGeneralSoftwareGainCorr.Size = new System.Drawing.Size(112, 32); this.chkGeneralSoftwareGainCorr.TabIndex = 6; this.chkGeneralSoftwareGainCorr.Text = "Disable Software Gain Correction"; this.toolTip1.SetToolTip(this.chkGeneralSoftwareGainCorr, "Don\'t compensate in software for hardware gain or attenuation."); this.chkGeneralSoftwareGainCorr.CheckedChanged += new System.EventHandler(this.chkGeneralSoftwareGainCorr_CheckedChanged); // // chkGeneralDisablePTT // this.chkGeneralDisablePTT.Image = null; this.chkGeneralDisablePTT.Location = new System.Drawing.Point(16, 48); this.chkGeneralDisablePTT.Name = "chkGeneralDisablePTT"; this.chkGeneralDisablePTT.Size = new System.Drawing.Size(104, 24); this.chkGeneralDisablePTT.TabIndex = 4; this.chkGeneralDisablePTT.Text = "Disable PTT"; this.toolTip1.SetToolTip(this.chkGeneralDisablePTT, "Disable Push To Talk detection."); this.chkGeneralDisablePTT.CheckedChanged += new System.EventHandler(this.chkGeneralDisablePTT_CheckedChanged); // // chkGeneralSpurRed // this.chkGeneralSpurRed.Checked = true; this.chkGeneralSpurRed.CheckState = System.Windows.Forms.CheckState.Checked; this.chkGeneralSpurRed.Image = null; this.chkGeneralSpurRed.Location = new System.Drawing.Point(16, 24); this.chkGeneralSpurRed.Name = "chkGeneralSpurRed"; this.chkGeneralSpurRed.Size = new System.Drawing.Size(104, 24); this.chkGeneralSpurRed.TabIndex = 3; this.chkGeneralSpurRed.Text = "Spur Reduction"; this.toolTip1.SetToolTip(this.chkGeneralSpurRed, "Enable Spur Reduction/Avoidance Routine"); this.chkGeneralSpurRed.CheckedChanged += new System.EventHandler(this.chkGeneralSpurRed_CheckedChanged); // // grpGeneralProcessPriority // this.grpGeneralProcessPriority.Controls.Add(this.comboGeneralProcessPriority); this.grpGeneralProcessPriority.Location = new System.Drawing.Point(264, 8); this.grpGeneralProcessPriority.Name = "grpGeneralProcessPriority"; this.grpGeneralProcessPriority.Size = new System.Drawing.Size(144, 56); this.grpGeneralProcessPriority.TabIndex = 23; this.grpGeneralProcessPriority.TabStop = false; this.grpGeneralProcessPriority.Text = "Process Priority"; // // comboGeneralProcessPriority // this.comboGeneralProcessPriority.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboGeneralProcessPriority.DropDownWidth = 112; this.comboGeneralProcessPriority.Items.AddRange(new object[] { "Idle", "Below Normal", "Normal", "Above Normal", "High", "Real Time"}); this.comboGeneralProcessPriority.Location = new System.Drawing.Point(16, 24); this.comboGeneralProcessPriority.Name = "comboGeneralProcessPriority"; this.comboGeneralProcessPriority.Size = new System.Drawing.Size(112, 21); this.comboGeneralProcessPriority.TabIndex = 0; this.toolTip1.SetToolTip(this.comboGeneralProcessPriority, "Sets the process priority of the PowerSDR software."); this.comboGeneralProcessPriority.SelectedIndexChanged += new System.EventHandler(this.comboGeneralProcessPriority_SelectedIndexChanged); // // tpGeneralCalibration // this.tpGeneralCalibration.BackColor = System.Drawing.SystemColors.Control; this.tpGeneralCalibration.Controls.Add(this.chkCalExpert); this.tpGeneralCalibration.Controls.Add(this.grpGenCalRXImage); this.tpGeneralCalibration.Controls.Add(this.grpGenCalLevel); this.tpGeneralCalibration.Controls.Add(this.grpGeneralCalibration); this.tpGeneralCalibration.Location = new System.Drawing.Point(4, 22); this.tpGeneralCalibration.Name = "tpGeneralCalibration"; this.tpGeneralCalibration.Size = new System.Drawing.Size(592, 318); this.tpGeneralCalibration.TabIndex = 2; this.tpGeneralCalibration.Text = "Calibration"; // // chkCalExpert // this.chkCalExpert.Location = new System.Drawing.Point(16, 136); this.chkCalExpert.Name = "chkCalExpert"; this.chkCalExpert.Size = new System.Drawing.Size(56, 24); this.chkCalExpert.TabIndex = 10; this.chkCalExpert.Text = "Expert"; this.chkCalExpert.Visible = false; this.chkCalExpert.CheckedChanged += new System.EventHandler(this.chkCalExpert_CheckedChanged); // // grpGenCalRXImage // this.grpGenCalRXImage.Controls.Add(this.udGeneralCalFreq3); this.grpGenCalRXImage.Controls.Add(this.lblGenCalRXImageFreq); this.grpGenCalRXImage.Controls.Add(this.btnGeneralCalImageStart); this.grpGenCalRXImage.Location = new System.Drawing.Point(360, 8); this.grpGenCalRXImage.Name = "grpGenCalRXImage"; this.grpGenCalRXImage.Size = new System.Drawing.Size(168, 112); this.grpGenCalRXImage.TabIndex = 9; this.grpGenCalRXImage.TabStop = false; this.grpGenCalRXImage.Text = "RX Image Reject Cal"; // // udGeneralCalFreq3 // this.udGeneralCalFreq3.DecimalPlaces = 6; this.udGeneralCalFreq3.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udGeneralCalFreq3.Location = new System.Drawing.Point(80, 24); this.udGeneralCalFreq3.Maximum = new decimal(new int[] { 65, 0, 0, 0}); this.udGeneralCalFreq3.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalFreq3.Name = "udGeneralCalFreq3"; this.udGeneralCalFreq3.Size = new System.Drawing.Size(72, 20); this.udGeneralCalFreq3.TabIndex = 1; this.toolTip1.SetToolTip(this.udGeneralCalFreq3, "RX Image calibration reference frequency"); this.udGeneralCalFreq3.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalFreq3.LostFocus += new System.EventHandler(this.udGeneralCalFreq3_LostFocus); // // lblGenCalRXImageFreq // this.lblGenCalRXImageFreq.Image = null; this.lblGenCalRXImageFreq.Location = new System.Drawing.Point(16, 24); this.lblGenCalRXImageFreq.Name = "lblGenCalRXImageFreq"; this.lblGenCalRXImageFreq.Size = new System.Drawing.Size(64, 23); this.lblGenCalRXImageFreq.TabIndex = 0; this.lblGenCalRXImageFreq.Text = "Frequency:"; // // btnGeneralCalImageStart // this.btnGeneralCalImageStart.Image = null; this.btnGeneralCalImageStart.Location = new System.Drawing.Point(48, 80); this.btnGeneralCalImageStart.Name = "btnGeneralCalImageStart"; this.btnGeneralCalImageStart.Size = new System.Drawing.Size(75, 23); this.btnGeneralCalImageStart.TabIndex = 7; this.btnGeneralCalImageStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnGeneralCalImageStart, "Click to start the RX Image rejection calibration using the above frequency refer" + "ence."); this.btnGeneralCalImageStart.Click += new System.EventHandler(this.btnGeneralCalImageStart_Click); // // grpGenCalLevel // this.grpGenCalLevel.Controls.Add(this.udGeneralCalLevel); this.grpGenCalLevel.Controls.Add(this.udGeneralCalFreq2); this.grpGenCalLevel.Controls.Add(this.lblGenCalLevelFreq); this.grpGenCalLevel.Controls.Add(this.lblGeneralCalLevel); this.grpGenCalLevel.Controls.Add(this.btnGeneralCalLevelStart); this.grpGenCalLevel.Location = new System.Drawing.Point(184, 8); this.grpGenCalLevel.Name = "grpGenCalLevel"; this.grpGenCalLevel.Size = new System.Drawing.Size(168, 112); this.grpGenCalLevel.TabIndex = 8; this.grpGenCalLevel.TabStop = false; this.grpGenCalLevel.Text = "Level Cal"; // // udGeneralCalLevel // this.udGeneralCalLevel.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalLevel.Location = new System.Drawing.Point(80, 48); this.udGeneralCalLevel.Maximum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalLevel.Minimum = new decimal(new int[] { 150, 0, 0, -2147483648}); this.udGeneralCalLevel.Name = "udGeneralCalLevel"; this.udGeneralCalLevel.Size = new System.Drawing.Size(72, 20); this.udGeneralCalLevel.TabIndex = 3; this.toolTip1.SetToolTip(this.udGeneralCalLevel, "Level calibration reference level"); this.udGeneralCalLevel.Value = new decimal(new int[] { 70, 0, 0, -2147483648}); this.udGeneralCalLevel.LostFocus += new System.EventHandler(this.udGeneralCalLevel_LostFocus); // // udGeneralCalFreq2 // this.udGeneralCalFreq2.DecimalPlaces = 6; this.udGeneralCalFreq2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udGeneralCalFreq2.Location = new System.Drawing.Point(80, 24); this.udGeneralCalFreq2.Maximum = new decimal(new int[] { 65, 0, 0, 0}); this.udGeneralCalFreq2.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalFreq2.Name = "udGeneralCalFreq2"; this.udGeneralCalFreq2.Size = new System.Drawing.Size(72, 20); this.udGeneralCalFreq2.TabIndex = 1; this.toolTip1.SetToolTip(this.udGeneralCalFreq2, "Level calibration reference frequency"); this.udGeneralCalFreq2.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalFreq2.LostFocus += new System.EventHandler(this.udGeneralCalFreq2_LostFocus); // // lblGenCalLevelFreq // this.lblGenCalLevelFreq.Image = null; this.lblGenCalLevelFreq.Location = new System.Drawing.Point(16, 24); this.lblGenCalLevelFreq.Name = "lblGenCalLevelFreq"; this.lblGenCalLevelFreq.Size = new System.Drawing.Size(64, 23); this.lblGenCalLevelFreq.TabIndex = 0; this.lblGenCalLevelFreq.Text = "Frequency:"; // // lblGeneralCalLevel // this.lblGeneralCalLevel.Image = null; this.lblGeneralCalLevel.Location = new System.Drawing.Point(16, 48); this.lblGeneralCalLevel.Name = "lblGeneralCalLevel"; this.lblGeneralCalLevel.Size = new System.Drawing.Size(68, 23); this.lblGeneralCalLevel.TabIndex = 2; this.lblGeneralCalLevel.Text = "Level (dBm):"; // // btnGeneralCalLevelStart // this.btnGeneralCalLevelStart.Image = null; this.btnGeneralCalLevelStart.Location = new System.Drawing.Point(48, 80); this.btnGeneralCalLevelStart.Name = "btnGeneralCalLevelStart"; this.btnGeneralCalLevelStart.Size = new System.Drawing.Size(75, 23); this.btnGeneralCalLevelStart.TabIndex = 4; this.btnGeneralCalLevelStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnGeneralCalLevelStart, "Click to start the level calibration using the frequency and level references abo" + "ve."); this.btnGeneralCalLevelStart.Click += new System.EventHandler(this.btnGeneralCalLevelStart_Click); // // grpGeneralCalibration // this.grpGeneralCalibration.Controls.Add(this.btnGeneralCalFreqUseVFOA); this.grpGeneralCalibration.Controls.Add(this.btnGeneralCalFreqStart); this.grpGeneralCalibration.Controls.Add(this.udGeneralCalFreq1); this.grpGeneralCalibration.Controls.Add(this.lblGeneralCalFrequency); this.grpGeneralCalibration.Location = new System.Drawing.Point(8, 8); this.grpGeneralCalibration.Name = "grpGeneralCalibration"; this.grpGeneralCalibration.Size = new System.Drawing.Size(168, 112); this.grpGeneralCalibration.TabIndex = 5; this.grpGeneralCalibration.TabStop = false; this.grpGeneralCalibration.Text = "Freq Cal"; // // btnGeneralCalFreqUseVFOA // this.btnGeneralCalFreqUseVFOA.Image = null; this.btnGeneralCalFreqUseVFOA.Location = new System.Drawing.Point(48, 50); this.btnGeneralCalFreqUseVFOA.Name = "btnGeneralCalFreqUseVFOA"; this.btnGeneralCalFreqUseVFOA.Size = new System.Drawing.Size(75, 23); this.btnGeneralCalFreqUseVFOA.TabIndex = 6; this.btnGeneralCalFreqUseVFOA.Text = "Use VFO-A"; this.toolTip1.SetToolTip(this.btnGeneralCalFreqUseVFOA, "Click to use the current VFO-A frequency. Must be 65 MHz or below."); this.btnGeneralCalFreqUseVFOA.Click += new System.EventHandler(this.btnGeneralCalFreqUseVFOA_Click); // // btnGeneralCalFreqStart // this.btnGeneralCalFreqStart.Image = null; this.btnGeneralCalFreqStart.Location = new System.Drawing.Point(48, 80); this.btnGeneralCalFreqStart.Name = "btnGeneralCalFreqStart"; this.btnGeneralCalFreqStart.Size = new System.Drawing.Size(75, 23); this.btnGeneralCalFreqStart.TabIndex = 5; this.btnGeneralCalFreqStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnGeneralCalFreqStart, "Click to start the frequency calibration using the reference frequency above."); this.btnGeneralCalFreqStart.Click += new System.EventHandler(this.btnGeneralCalFreqStart_Click); // // udGeneralCalFreq1 // this.udGeneralCalFreq1.DecimalPlaces = 6; this.udGeneralCalFreq1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udGeneralCalFreq1.Location = new System.Drawing.Point(80, 24); this.udGeneralCalFreq1.Maximum = new decimal(new int[] { 65, 0, 0, 0}); this.udGeneralCalFreq1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalFreq1.Name = "udGeneralCalFreq1"; this.udGeneralCalFreq1.Size = new System.Drawing.Size(72, 20); this.udGeneralCalFreq1.TabIndex = 1; this.toolTip1.SetToolTip(this.udGeneralCalFreq1, "Frequency calibration reference frequency"); this.udGeneralCalFreq1.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalFreq1.LostFocus += new System.EventHandler(this.udGeneralCalFreq1_LostFocus); // // lblGeneralCalFrequency // this.lblGeneralCalFrequency.Image = null; this.lblGeneralCalFrequency.Location = new System.Drawing.Point(16, 24); this.lblGeneralCalFrequency.Name = "lblGeneralCalFrequency"; this.lblGeneralCalFrequency.Size = new System.Drawing.Size(64, 23); this.lblGeneralCalFrequency.TabIndex = 0; this.lblGeneralCalFrequency.Text = "Frequency:"; // // tpFilters // this.tpFilters.BackColor = System.Drawing.SystemColors.Control; this.tpFilters.Controls.Add(this.grpOptFilterControls); this.tpFilters.Location = new System.Drawing.Point(4, 22); this.tpFilters.Name = "tpFilters"; this.tpFilters.Size = new System.Drawing.Size(592, 318); this.tpFilters.TabIndex = 3; this.tpFilters.Text = "Filters"; // // grpOptFilterControls // this.grpOptFilterControls.Controls.Add(this.udFilterDefaultLowCut); this.grpOptFilterControls.Controls.Add(this.lblDefaultLowCut); this.grpOptFilterControls.Controls.Add(this.udOptMaxFilterShift); this.grpOptFilterControls.Controls.Add(this.lblOptMaxFilterShift); this.grpOptFilterControls.Controls.Add(this.comboOptFilterWidthMode); this.grpOptFilterControls.Controls.Add(this.lblOptWidthSliderMode); this.grpOptFilterControls.Controls.Add(this.udOptMaxFilterWidth); this.grpOptFilterControls.Controls.Add(this.lblOptMaxFilter); this.grpOptFilterControls.Controls.Add(this.chkOptFilterSaveChanges); this.grpOptFilterControls.Location = new System.Drawing.Point(8, 8); this.grpOptFilterControls.Name = "grpOptFilterControls"; this.grpOptFilterControls.Size = new System.Drawing.Size(200, 152); this.grpOptFilterControls.TabIndex = 29; this.grpOptFilterControls.TabStop = false; this.grpOptFilterControls.Text = "Filter Controls"; // // udFilterDefaultLowCut // this.udFilterDefaultLowCut.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udFilterDefaultLowCut.Location = new System.Drawing.Point(128, 120); this.udFilterDefaultLowCut.Maximum = new decimal(new int[] { 500, 0, 0, 0}); this.udFilterDefaultLowCut.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udFilterDefaultLowCut.Name = "udFilterDefaultLowCut"; this.udFilterDefaultLowCut.Size = new System.Drawing.Size(48, 20); this.udFilterDefaultLowCut.TabIndex = 17; this.toolTip1.SetToolTip(this.udFilterDefaultLowCut, "Sets the default low cut filter for filter changes"); this.udFilterDefaultLowCut.Value = new decimal(new int[] { 150, 0, 0, 0}); this.udFilterDefaultLowCut.ValueChanged += new System.EventHandler(this.udFilterDefaultLowCut_ValueChanged); this.udFilterDefaultLowCut.LostFocus += new System.EventHandler(this.udFilterDefaultLowCut_LostFocus); // // lblDefaultLowCut // this.lblDefaultLowCut.Image = null; this.lblDefaultLowCut.Location = new System.Drawing.Point(16, 120); this.lblDefaultLowCut.Name = "lblDefaultLowCut"; this.lblDefaultLowCut.Size = new System.Drawing.Size(120, 23); this.lblDefaultLowCut.TabIndex = 16; this.lblDefaultLowCut.Text = "Default Low Cut (Hz):"; // // udOptMaxFilterShift // this.udOptMaxFilterShift.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptMaxFilterShift.Location = new System.Drawing.Point(128, 72); this.udOptMaxFilterShift.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterShift.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptMaxFilterShift.Name = "udOptMaxFilterShift"; this.udOptMaxFilterShift.Size = new System.Drawing.Size(48, 20); this.udOptMaxFilterShift.TabIndex = 13; this.toolTip1.SetToolTip(this.udOptMaxFilterShift, "Sets the maximum amount for the Shift control. Set lower for finer resolution co" + "ntrol"); this.udOptMaxFilterShift.Value = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterShift.ValueChanged += new System.EventHandler(this.udOptMaxFilterShift_ValueChanged); this.udOptMaxFilterShift.LostFocus += new System.EventHandler(this.udOptMaxFilterShift_LostFocus); // // lblOptMaxFilterShift // this.lblOptMaxFilterShift.Image = null; this.lblOptMaxFilterShift.Location = new System.Drawing.Point(16, 72); this.lblOptMaxFilterShift.Name = "lblOptMaxFilterShift"; this.lblOptMaxFilterShift.Size = new System.Drawing.Size(120, 23); this.lblOptMaxFilterShift.TabIndex = 14; this.lblOptMaxFilterShift.Text = "Max Filter Shift (Hz):"; // // comboOptFilterWidthMode // this.comboOptFilterWidthMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboOptFilterWidthMode.DropDownWidth = 112; this.comboOptFilterWidthMode.Items.AddRange(new object[] { "Linear", "Log", "Log10"}); this.comboOptFilterWidthMode.Location = new System.Drawing.Point(120, 48); this.comboOptFilterWidthMode.Name = "comboOptFilterWidthMode"; this.comboOptFilterWidthMode.Size = new System.Drawing.Size(56, 21); this.comboOptFilterWidthMode.TabIndex = 12; this.toolTip1.SetToolTip(this.comboOptFilterWidthMode, "Sets the mapping for the filter width slider."); this.comboOptFilterWidthMode.SelectedIndexChanged += new System.EventHandler(this.comboOptFilterWidthMode_SelectedIndexChanged); // // lblOptWidthSliderMode // this.lblOptWidthSliderMode.Image = null; this.lblOptWidthSliderMode.Location = new System.Drawing.Point(16, 48); this.lblOptWidthSliderMode.Name = "lblOptWidthSliderMode"; this.lblOptWidthSliderMode.Size = new System.Drawing.Size(104, 16); this.lblOptWidthSliderMode.TabIndex = 11; this.lblOptWidthSliderMode.Text = "Width Slider Mode:"; // // udOptMaxFilterWidth // this.udOptMaxFilterWidth.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptMaxFilterWidth.Location = new System.Drawing.Point(128, 24); this.udOptMaxFilterWidth.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterWidth.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptMaxFilterWidth.Name = "udOptMaxFilterWidth"; this.udOptMaxFilterWidth.Size = new System.Drawing.Size(48, 20); this.udOptMaxFilterWidth.TabIndex = 0; this.toolTip1.SetToolTip(this.udOptMaxFilterWidth, "Wets the maximum filter bandwidth"); this.udOptMaxFilterWidth.Value = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterWidth.ValueChanged += new System.EventHandler(this.udOptMaxFilterWidth_ValueChanged); this.udOptMaxFilterWidth.LostFocus += new System.EventHandler(this.udOptMaxFilterWidth_LostFocus); // // lblOptMaxFilter // this.lblOptMaxFilter.Image = null; this.lblOptMaxFilter.Location = new System.Drawing.Point(16, 24); this.lblOptMaxFilter.Name = "lblOptMaxFilter"; this.lblOptMaxFilter.Size = new System.Drawing.Size(120, 23); this.lblOptMaxFilter.TabIndex = 10; this.lblOptMaxFilter.Text = "Max Filter Width (Hz):"; // // chkOptFilterSaveChanges // this.chkOptFilterSaveChanges.Checked = true; this.chkOptFilterSaveChanges.CheckState = System.Windows.Forms.CheckState.Checked; this.chkOptFilterSaveChanges.Image = null; this.chkOptFilterSaveChanges.Location = new System.Drawing.Point(16, 96); this.chkOptFilterSaveChanges.Name = "chkOptFilterSaveChanges"; this.chkOptFilterSaveChanges.Size = new System.Drawing.Size(176, 16); this.chkOptFilterSaveChanges.TabIndex = 15; this.chkOptFilterSaveChanges.Text = "Save Slider/Display Changes"; this.toolTip1.SetToolTip(this.chkOptFilterSaveChanges, "If checked, changes made to the filters via the display or sliders will be saved " + "in the Variable filter."); this.chkOptFilterSaveChanges.CheckedChanged += new System.EventHandler(this.chkOptFilterSaveChanges_CheckedChanged); // // tpRX2 // this.tpRX2.BackColor = System.Drawing.SystemColors.Control; this.tpRX2.Controls.Add(this.chkRX2DisconnectOnTX); this.tpRX2.Controls.Add(this.chkRX2AutoMuteRX1OnVFOBTX); this.tpRX2.Controls.Add(this.chkRX2AutoMuteRX2OnVFOATX); this.tpRX2.Location = new System.Drawing.Point(4, 22); this.tpRX2.Name = "tpRX2"; this.tpRX2.Size = new System.Drawing.Size(592, 318); this.tpRX2.TabIndex = 4; this.tpRX2.Text = "RX2"; // // chkRX2DisconnectOnTX // this.chkRX2DisconnectOnTX.Checked = true; this.chkRX2DisconnectOnTX.CheckState = System.Windows.Forms.CheckState.Checked; this.chkRX2DisconnectOnTX.Image = null; this.chkRX2DisconnectOnTX.Location = new System.Drawing.Point(8, 68); this.chkRX2DisconnectOnTX.Name = "chkRX2DisconnectOnTX"; this.chkRX2DisconnectOnTX.Size = new System.Drawing.Size(196, 24); this.chkRX2DisconnectOnTX.TabIndex = 2; this.chkRX2DisconnectOnTX.Text = "Disconnect RX2 RF Input on TX"; this.toolTip1.SetToolTip(this.chkRX2DisconnectOnTX, "Disconnects the RX2 RF signal path when transmitting to prevent front-end overloa" + "d when checked."); this.chkRX2DisconnectOnTX.CheckedChanged += new System.EventHandler(this.chkRX2DisconnectOnTX_CheckedChanged); // // chkRX2AutoMuteRX1OnVFOBTX // this.chkRX2AutoMuteRX1OnVFOBTX.Checked = true; this.chkRX2AutoMuteRX1OnVFOBTX.CheckState = System.Windows.Forms.CheckState.Checked; this.chkRX2AutoMuteRX1OnVFOBTX.Image = null; this.chkRX2AutoMuteRX1OnVFOBTX.Location = new System.Drawing.Point(8, 38); this.chkRX2AutoMuteRX1OnVFOBTX.Name = "chkRX2AutoMuteRX1OnVFOBTX"; this.chkRX2AutoMuteRX1OnVFOBTX.Size = new System.Drawing.Size(176, 24); this.chkRX2AutoMuteRX1OnVFOBTX.TabIndex = 1; this.chkRX2AutoMuteRX1OnVFOBTX.Text = "Auto Mute RX1 on VFO B TX"; this.toolTip1.SetToolTip(this.chkRX2AutoMuteRX1OnVFOBTX, "Mutes RX1 when transmitting on VFO B when checked. Uncheck to continue to hear R" + "X1 while operating with VFO B TX enabled"); this.chkRX2AutoMuteRX1OnVFOBTX.CheckedChanged += new System.EventHandler(this.chkRX2AutoMuteRX1OnVFOBTX_CheckedChanged); // // chkRX2AutoMuteRX2OnVFOATX // this.chkRX2AutoMuteRX2OnVFOATX.Checked = true; this.chkRX2AutoMuteRX2OnVFOATX.CheckState = System.Windows.Forms.CheckState.Checked; this.chkRX2AutoMuteRX2OnVFOATX.Image = null; this.chkRX2AutoMuteRX2OnVFOATX.Location = new System.Drawing.Point(8, 8); this.chkRX2AutoMuteRX2OnVFOATX.Name = "chkRX2AutoMuteRX2OnVFOATX"; this.chkRX2AutoMuteRX2OnVFOATX.Size = new System.Drawing.Size(176, 24); this.chkRX2AutoMuteRX2OnVFOATX.TabIndex = 0; this.chkRX2AutoMuteRX2OnVFOATX.Text = "Auto Mute RX2 on VFO A TX"; this.toolTip1.SetToolTip(this.chkRX2AutoMuteRX2OnVFOATX, "Mutes RX2 when transmitting when checked. Uncheck to monitor your transmit signa" + "l or other signals with RX2 while transmitting"); this.chkRX2AutoMuteRX2OnVFOATX.CheckedChanged += new System.EventHandler(this.chkRX2AutoMuteRX2OnVFOATX_CheckedChanged); // // tpGeneralNavigation // this.tpGeneralNavigation.BackColor = System.Drawing.SystemColors.Control; this.tpGeneralNavigation.Controls.Add(this.grpOptSpaceNav); this.tpGeneralNavigation.Location = new System.Drawing.Point(4, 22); this.tpGeneralNavigation.Name = "tpGeneralNavigation"; this.tpGeneralNavigation.Size = new System.Drawing.Size(592, 318); this.tpGeneralNavigation.TabIndex = 5; this.tpGeneralNavigation.Text = "Navigation"; // // grpOptSpaceNav // this.grpOptSpaceNav.Controls.Add(this.chkSpaceNavFlyPanadapter); this.grpOptSpaceNav.Controls.Add(this.chkSpaceNavControlVFOs); this.grpOptSpaceNav.Location = new System.Drawing.Point(3, 3); this.grpOptSpaceNav.Name = "grpOptSpaceNav"; this.grpOptSpaceNav.Size = new System.Drawing.Size(122, 79); this.grpOptSpaceNav.TabIndex = 0; this.grpOptSpaceNav.TabStop = false; this.grpOptSpaceNav.Text = "Space Navigator"; // // chkSpaceNavFlyPanadapter // this.chkSpaceNavFlyPanadapter.AutoSize = true; this.chkSpaceNavFlyPanadapter.Image = null; this.chkSpaceNavFlyPanadapter.Location = new System.Drawing.Point(6, 44); this.chkSpaceNavFlyPanadapter.Name = "chkSpaceNavFlyPanadapter"; this.chkSpaceNavFlyPanadapter.Size = new System.Drawing.Size(109, 17); this.chkSpaceNavFlyPanadapter.TabIndex = 1; this.chkSpaceNavFlyPanadapter.Text = "Panadapter Flight"; this.chkSpaceNavFlyPanadapter.UseVisualStyleBackColor = true; // // chkSpaceNavControlVFOs // this.chkSpaceNavControlVFOs.AutoSize = true; this.chkSpaceNavControlVFOs.Checked = true; this.chkSpaceNavControlVFOs.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSpaceNavControlVFOs.Image = null; this.chkSpaceNavControlVFOs.Location = new System.Drawing.Point(6, 21); this.chkSpaceNavControlVFOs.Name = "chkSpaceNavControlVFOs"; this.chkSpaceNavControlVFOs.Size = new System.Drawing.Size(83, 17); this.chkSpaceNavControlVFOs.TabIndex = 0; this.chkSpaceNavControlVFOs.Text = "VFO Control"; this.chkSpaceNavControlVFOs.UseVisualStyleBackColor = true; // // tpAudio // this.tpAudio.Controls.Add(this.tcAudio); this.tpAudio.Location = new System.Drawing.Point(4, 22); this.tpAudio.Name = "tpAudio"; this.tpAudio.Size = new System.Drawing.Size(584, 286); this.tpAudio.TabIndex = 0; this.tpAudio.Text = "Audio"; // // tcAudio // this.tcAudio.Controls.Add(this.tpAudioCard1); this.tcAudio.Controls.Add(this.tpVAC); this.tcAudio.Controls.Add(this.tpVAC2); this.tcAudio.Location = new System.Drawing.Point(0, 0); this.tcAudio.Name = "tcAudio"; this.tcAudio.SelectedIndex = 0; this.tcAudio.Size = new System.Drawing.Size(600, 344); this.tcAudio.TabIndex = 35; // // tpAudioCard1 // this.tpAudioCard1.Controls.Add(this.chkAudioExpert); this.tpAudioCard1.Controls.Add(this.grpAudioMicBoost); this.tpAudioCard1.Controls.Add(this.grpAudioChannels); this.tpAudioCard1.Controls.Add(this.grpAudioMicInGain1); this.tpAudioCard1.Controls.Add(this.grpAudioLineInGain1); this.tpAudioCard1.Controls.Add(this.grpAudioVolts1); this.tpAudioCard1.Controls.Add(this.grpAudioDetails1); this.tpAudioCard1.Controls.Add(this.grpAudioLatency1); this.tpAudioCard1.Controls.Add(this.grpAudioCard); this.tpAudioCard1.Controls.Add(this.grpAudioBufferSize1); this.tpAudioCard1.Controls.Add(this.grpAudioSampleRate1); this.tpAudioCard1.Location = new System.Drawing.Point(4, 22); this.tpAudioCard1.Name = "tpAudioCard1"; this.tpAudioCard1.Size = new System.Drawing.Size(592, 318); this.tpAudioCard1.TabIndex = 0; this.tpAudioCard1.Text = "Primary"; // // chkAudioExpert // this.chkAudioExpert.Image = null; this.chkAudioExpert.Location = new System.Drawing.Point(480, 24); this.chkAudioExpert.Name = "chkAudioExpert"; this.chkAudioExpert.Size = new System.Drawing.Size(56, 24); this.chkAudioExpert.TabIndex = 50; this.chkAudioExpert.Text = "Expert"; this.chkAudioExpert.CheckedChanged += new System.EventHandler(this.chkAudioExpert_CheckedChanged); // // grpAudioMicBoost // this.grpAudioMicBoost.Location = new System.Drawing.Point(440, 216); this.grpAudioMicBoost.Name = "grpAudioMicBoost"; this.grpAudioMicBoost.Size = new System.Drawing.Size(72, 48); this.grpAudioMicBoost.TabIndex = 43; this.grpAudioMicBoost.TabStop = false; this.grpAudioMicBoost.Text = "Mic Boost"; this.grpAudioMicBoost.Visible = false; // // grpAudioChannels // this.grpAudioChannels.Controls.Add(this.comboAudioChannels1); this.grpAudioChannels.Location = new System.Drawing.Point(440, 72); this.grpAudioChannels.Name = "grpAudioChannels"; this.grpAudioChannels.Size = new System.Drawing.Size(96, 56); this.grpAudioChannels.TabIndex = 42; this.grpAudioChannels.TabStop = false; this.grpAudioChannels.Text = "Channels"; // // comboAudioChannels1 // this.comboAudioChannels1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioChannels1.DropDownWidth = 56; this.comboAudioChannels1.Items.AddRange(new object[] { "2", "4", "6"}); this.comboAudioChannels1.Location = new System.Drawing.Point(16, 24); this.comboAudioChannels1.Name = "comboAudioChannels1"; this.comboAudioChannels1.Size = new System.Drawing.Size(56, 21); this.comboAudioChannels1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioChannels1, "Number of channels to open"); this.comboAudioChannels1.SelectedIndexChanged += new System.EventHandler(this.comboAudioChannels1_SelectedIndexChanged); // // grpAudioMicInGain1 // this.grpAudioMicInGain1.Controls.Add(this.udAudioMicGain1); this.grpAudioMicInGain1.Location = new System.Drawing.Point(344, 136); this.grpAudioMicInGain1.Name = "grpAudioMicInGain1"; this.grpAudioMicInGain1.Size = new System.Drawing.Size(88, 56); this.grpAudioMicInGain1.TabIndex = 41; this.grpAudioMicInGain1.TabStop = false; this.grpAudioMicInGain1.Text = "Mic In Gain"; // // udAudioMicGain1 // this.udAudioMicGain1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioMicGain1.Location = new System.Drawing.Point(16, 24); this.udAudioMicGain1.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udAudioMicGain1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioMicGain1.Name = "udAudioMicGain1"; this.udAudioMicGain1.Size = new System.Drawing.Size(40, 20); this.udAudioMicGain1.TabIndex = 51; this.toolTip1.SetToolTip(this.udAudioMicGain1, "MIC Gain - Input Volume"); this.udAudioMicGain1.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udAudioMicGain1.ValueChanged += new System.EventHandler(this.udAudioMicGain1_ValueChanged); this.udAudioMicGain1.LostFocus += new System.EventHandler(this.udAudioMicGain1_LostFocus); // // grpAudioLineInGain1 // this.grpAudioLineInGain1.Controls.Add(this.udAudioLineIn1); this.grpAudioLineInGain1.Location = new System.Drawing.Point(344, 72); this.grpAudioLineInGain1.Name = "grpAudioLineInGain1"; this.grpAudioLineInGain1.Size = new System.Drawing.Size(88, 56); this.grpAudioLineInGain1.TabIndex = 40; this.grpAudioLineInGain1.TabStop = false; this.grpAudioLineInGain1.Text = "Line In Gain"; // // udAudioLineIn1 // this.udAudioLineIn1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioLineIn1.Location = new System.Drawing.Point(16, 24); this.udAudioLineIn1.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udAudioLineIn1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioLineIn1.Name = "udAudioLineIn1"; this.udAudioLineIn1.Size = new System.Drawing.Size(40, 20); this.udAudioLineIn1.TabIndex = 51; this.toolTip1.SetToolTip(this.udAudioLineIn1, "IF Gain - Input Volume"); this.udAudioLineIn1.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udAudioLineIn1.ValueChanged += new System.EventHandler(this.udAudioLineIn1_ValueChanged); this.udAudioLineIn1.LostFocus += new System.EventHandler(this.udAudioLineIn1_LostFocus); // // grpAudioVolts1 // this.grpAudioVolts1.Controls.Add(this.btnAudioVoltTest1); this.grpAudioVolts1.Controls.Add(this.udAudioVoltage1); this.grpAudioVolts1.Location = new System.Drawing.Point(240, 200); this.grpAudioVolts1.Name = "grpAudioVolts1"; this.grpAudioVolts1.Size = new System.Drawing.Size(128, 56); this.grpAudioVolts1.TabIndex = 39; this.grpAudioVolts1.TabStop = false; this.grpAudioVolts1.Text = "Output Voltage"; // // btnAudioVoltTest1 // this.btnAudioVoltTest1.Image = null; this.btnAudioVoltTest1.Location = new System.Drawing.Point(72, 24); this.btnAudioVoltTest1.Name = "btnAudioVoltTest1"; this.btnAudioVoltTest1.Size = new System.Drawing.Size(40, 23); this.btnAudioVoltTest1.TabIndex = 2; this.btnAudioVoltTest1.Text = "Test"; this.toolTip1.SetToolTip(this.btnAudioVoltTest1, "Outputs a full scale sinewave at the CW pitch for determining the RMS Voltage of " + "the sound card."); this.btnAudioVoltTest1.Click += new System.EventHandler(this.btnAudioVoltTest1_Click); // // udAudioVoltage1 // this.udAudioVoltage1.DecimalPlaces = 2; this.udAudioVoltage1.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udAudioVoltage1.Location = new System.Drawing.Point(16, 24); this.udAudioVoltage1.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udAudioVoltage1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioVoltage1.Name = "udAudioVoltage1"; this.udAudioVoltage1.Size = new System.Drawing.Size(48, 20); this.udAudioVoltage1.TabIndex = 1; this.toolTip1.SetToolTip(this.udAudioVoltage1, "The measured VRMS on the sound card output when outputting a full range tone."); this.udAudioVoltage1.Value = new decimal(new int[] { 223, 0, 0, 131072}); this.udAudioVoltage1.ValueChanged += new System.EventHandler(this.udAudioVoltage1_ValueChanged); this.udAudioVoltage1.LostFocus += new System.EventHandler(this.udAudioVoltage1_LostFocus); // // grpAudioDetails1 // this.grpAudioDetails1.Controls.Add(this.comboAudioTransmit1); this.grpAudioDetails1.Controls.Add(this.lblAudioMixer1); this.grpAudioDetails1.Controls.Add(this.lblAudioOutput1); this.grpAudioDetails1.Controls.Add(this.comboAudioOutput1); this.grpAudioDetails1.Controls.Add(this.lblAudioInput1); this.grpAudioDetails1.Controls.Add(this.lblAudioDriver1); this.grpAudioDetails1.Controls.Add(this.comboAudioInput1); this.grpAudioDetails1.Controls.Add(this.comboAudioDriver1); this.grpAudioDetails1.Controls.Add(this.comboAudioMixer1); this.grpAudioDetails1.Controls.Add(this.lblAudioTransmit1); this.grpAudioDetails1.Controls.Add(this.lblAudioReceive1); this.grpAudioDetails1.Controls.Add(this.comboAudioReceive1); this.grpAudioDetails1.Location = new System.Drawing.Point(8, 8); this.grpAudioDetails1.Name = "grpAudioDetails1"; this.grpAudioDetails1.Size = new System.Drawing.Size(224, 216); this.grpAudioDetails1.TabIndex = 34; this.grpAudioDetails1.TabStop = false; this.grpAudioDetails1.Text = "Primary Sound Card Setup Details"; // // comboAudioTransmit1 // this.comboAudioTransmit1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioTransmit1.DropDownWidth = 160; this.comboAudioTransmit1.ItemHeight = 13; this.comboAudioTransmit1.Location = new System.Drawing.Point(56, 184); this.comboAudioTransmit1.Name = "comboAudioTransmit1"; this.comboAudioTransmit1.Size = new System.Drawing.Size(160, 21); this.comboAudioTransmit1.TabIndex = 2; this.toolTip1.SetToolTip(this.comboAudioTransmit1, "Transmit mode mixer MUX setting."); this.comboAudioTransmit1.SelectedIndexChanged += new System.EventHandler(this.comboAudioTransmit1_SelectedIndexChanged); // // lblAudioMixer1 // this.lblAudioMixer1.Image = null; this.lblAudioMixer1.Location = new System.Drawing.Point(8, 120); this.lblAudioMixer1.Name = "lblAudioMixer1"; this.lblAudioMixer1.Size = new System.Drawing.Size(48, 23); this.lblAudioMixer1.TabIndex = 22; this.lblAudioMixer1.Text = "Mixer:"; // // lblAudioOutput1 // this.lblAudioOutput1.Image = null; this.lblAudioOutput1.Location = new System.Drawing.Point(8, 88); this.lblAudioOutput1.Name = "lblAudioOutput1"; this.lblAudioOutput1.Size = new System.Drawing.Size(48, 16); this.lblAudioOutput1.TabIndex = 6; this.lblAudioOutput1.Text = "Output:"; // // comboAudioOutput1 // this.comboAudioOutput1.DisplayMember = "sdfg"; this.comboAudioOutput1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioOutput1.DropDownWidth = 160; this.comboAudioOutput1.ItemHeight = 13; this.comboAudioOutput1.Location = new System.Drawing.Point(56, 88); this.comboAudioOutput1.Name = "comboAudioOutput1"; this.comboAudioOutput1.Size = new System.Drawing.Size(160, 21); this.comboAudioOutput1.TabIndex = 5; this.toolTip1.SetToolTip(this.comboAudioOutput1, "Output Audio Device"); this.comboAudioOutput1.SelectedIndexChanged += new System.EventHandler(this.comboAudioOutput1_SelectedIndexChanged); // // lblAudioInput1 // this.lblAudioInput1.Image = null; this.lblAudioInput1.Location = new System.Drawing.Point(8, 56); this.lblAudioInput1.Name = "lblAudioInput1"; this.lblAudioInput1.Size = new System.Drawing.Size(48, 16); this.lblAudioInput1.TabIndex = 4; this.lblAudioInput1.Text = "Input:"; // // lblAudioDriver1 // this.lblAudioDriver1.Image = null; this.lblAudioDriver1.Location = new System.Drawing.Point(8, 24); this.lblAudioDriver1.Name = "lblAudioDriver1"; this.lblAudioDriver1.Size = new System.Drawing.Size(48, 16); this.lblAudioDriver1.TabIndex = 3; this.lblAudioDriver1.Text = "Driver:"; // // comboAudioInput1 // this.comboAudioInput1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioInput1.DropDownWidth = 160; this.comboAudioInput1.ItemHeight = 13; this.comboAudioInput1.Location = new System.Drawing.Point(56, 56); this.comboAudioInput1.Name = "comboAudioInput1"; this.comboAudioInput1.Size = new System.Drawing.Size(160, 21); this.comboAudioInput1.TabIndex = 1; this.toolTip1.SetToolTip(this.comboAudioInput1, "Input Audio Device"); this.comboAudioInput1.SelectedIndexChanged += new System.EventHandler(this.comboAudioInput1_SelectedIndexChanged); // // comboAudioDriver1 // this.comboAudioDriver1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioDriver1.DropDownWidth = 160; this.comboAudioDriver1.ItemHeight = 13; this.comboAudioDriver1.Location = new System.Drawing.Point(56, 24); this.comboAudioDriver1.Name = "comboAudioDriver1"; this.comboAudioDriver1.Size = new System.Drawing.Size(160, 21); this.comboAudioDriver1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioDriver1, "Sound Card Driver Selection"); this.comboAudioDriver1.SelectedIndexChanged += new System.EventHandler(this.comboAudioDriver1_SelectedIndexChanged); // // comboAudioMixer1 // this.comboAudioMixer1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioMixer1.DropDownWidth = 160; this.comboAudioMixer1.ItemHeight = 13; this.comboAudioMixer1.Location = new System.Drawing.Point(56, 120); this.comboAudioMixer1.Name = "comboAudioMixer1"; this.comboAudioMixer1.Size = new System.Drawing.Size(160, 21); this.comboAudioMixer1.TabIndex = 21; this.toolTip1.SetToolTip(this.comboAudioMixer1, "Audio Mixer Device "); this.comboAudioMixer1.SelectedIndexChanged += new System.EventHandler(this.comboAudioMixer1_SelectedIndexChanged); // // lblAudioTransmit1 // this.lblAudioTransmit1.Image = null; this.lblAudioTransmit1.Location = new System.Drawing.Point(8, 184); this.lblAudioTransmit1.Name = "lblAudioTransmit1"; this.lblAudioTransmit1.Size = new System.Drawing.Size(56, 16); this.lblAudioTransmit1.TabIndex = 3; this.lblAudioTransmit1.Text = "Transmit:"; // // lblAudioReceive1 // this.lblAudioReceive1.Image = null; this.lblAudioReceive1.Location = new System.Drawing.Point(8, 152); this.lblAudioReceive1.Name = "lblAudioReceive1"; this.lblAudioReceive1.Size = new System.Drawing.Size(48, 16); this.lblAudioReceive1.TabIndex = 1; this.lblAudioReceive1.Text = "Receive:"; // // comboAudioReceive1 // this.comboAudioReceive1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioReceive1.DropDownWidth = 160; this.comboAudioReceive1.ItemHeight = 13; this.comboAudioReceive1.Location = new System.Drawing.Point(56, 152); this.comboAudioReceive1.Name = "comboAudioReceive1"; this.comboAudioReceive1.Size = new System.Drawing.Size(160, 21); this.comboAudioReceive1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioReceive1, "Receive mode Mixer MUX setting"); this.comboAudioReceive1.SelectedIndexChanged += new System.EventHandler(this.comboAudioReceive1_SelectedIndexChanged); // // grpAudioLatency1 // this.grpAudioLatency1.Controls.Add(this.chkAudioLatencyManual1); this.grpAudioLatency1.Controls.Add(this.udAudioLatency1); this.grpAudioLatency1.Location = new System.Drawing.Point(440, 136); this.grpAudioLatency1.Name = "grpAudioLatency1"; this.grpAudioLatency1.Size = new System.Drawing.Size(96, 80); this.grpAudioLatency1.TabIndex = 38; this.grpAudioLatency1.TabStop = false; this.grpAudioLatency1.Text = "Latency (ms)"; this.grpAudioLatency1.Visible = false; // // chkAudioLatencyManual1 // this.chkAudioLatencyManual1.Image = null; this.chkAudioLatencyManual1.Location = new System.Drawing.Point(16, 24); this.chkAudioLatencyManual1.Name = "chkAudioLatencyManual1"; this.chkAudioLatencyManual1.Size = new System.Drawing.Size(64, 16); this.chkAudioLatencyManual1.TabIndex = 5; this.chkAudioLatencyManual1.Text = "Manual"; this.chkAudioLatencyManual1.CheckedChanged += new System.EventHandler(this.chkAudioLatencyManual1_CheckedChanged); // // udAudioLatency1 // this.udAudioLatency1.Enabled = false; this.udAudioLatency1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioLatency1.Location = new System.Drawing.Point(16, 48); this.udAudioLatency1.Maximum = new decimal(new int[] { 240, 0, 0, 0}); this.udAudioLatency1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioLatency1.Name = "udAudioLatency1"; this.udAudioLatency1.Size = new System.Drawing.Size(48, 20); this.udAudioLatency1.TabIndex = 0; this.toolTip1.SetToolTip(this.udAudioLatency1, "Adds latency/stability to the audio subsystem. Not needed when using ASIO driver" + ". Mainly for compatibility. The Manual setting should only be used for unsuppo" + "rted cards."); this.udAudioLatency1.Value = new decimal(new int[] { 120, 0, 0, 0}); this.udAudioLatency1.ValueChanged += new System.EventHandler(this.udAudioLatency1_ValueChanged); this.udAudioLatency1.LostFocus += new System.EventHandler(this.udAudioLatency1_LostFocus); // // grpAudioCard // this.grpAudioCard.Controls.Add(this.comboAudioSoundCard); this.grpAudioCard.Location = new System.Drawing.Point(240, 8); this.grpAudioCard.Name = "grpAudioCard"; this.grpAudioCard.Size = new System.Drawing.Size(224, 56); this.grpAudioCard.TabIndex = 37; this.grpAudioCard.TabStop = false; this.grpAudioCard.Text = "Sound Card Selection"; // // comboAudioSoundCard // this.comboAudioSoundCard.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSoundCard.DropDownWidth = 184; this.comboAudioSoundCard.Items.AddRange(new object[] { "M-Audio Delta 44 (PCI)", "PreSonus FireBox (FireWire)", "Edirol FA-66 (FireWire)", "SB Audigy (PCI)", "SB Audigy 2 (PCI)", "SB Audigy 2 ZS (PCI)", "Sound Blaster Extigy (USB)", "Sound Blaster MP3+ (USB)", "Turtle Beach Santa Cruz (PCI)", "Unsupported Card"}); this.comboAudioSoundCard.Location = new System.Drawing.Point(24, 24); this.comboAudioSoundCard.MaxDropDownItems = 11; this.comboAudioSoundCard.Name = "comboAudioSoundCard"; this.comboAudioSoundCard.Size = new System.Drawing.Size(184, 21); this.comboAudioSoundCard.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioSoundCard, "Sound Card Selection (use Unsupported Card if your card isn\'t in the list -- this" + " will require manual setup of the below controls)."); this.comboAudioSoundCard.SelectedIndexChanged += new System.EventHandler(this.comboAudioSoundCard_SelectedIndexChanged); // // grpAudioBufferSize1 // this.grpAudioBufferSize1.Controls.Add(this.comboAudioBuffer1); this.grpAudioBufferSize1.Location = new System.Drawing.Point(240, 72); this.grpAudioBufferSize1.Name = "grpAudioBufferSize1"; this.grpAudioBufferSize1.Size = new System.Drawing.Size(96, 56); this.grpAudioBufferSize1.TabIndex = 36; this.grpAudioBufferSize1.TabStop = false; this.grpAudioBufferSize1.Text = "Buffer Size"; // // comboAudioBuffer1 // this.comboAudioBuffer1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioBuffer1.DropDownWidth = 56; this.comboAudioBuffer1.Items.AddRange(new object[] { "128", "256", "512", "1024", "2048"}); this.comboAudioBuffer1.Location = new System.Drawing.Point(16, 24); this.comboAudioBuffer1.Name = "comboAudioBuffer1"; this.comboAudioBuffer1.Size = new System.Drawing.Size(56, 21); this.comboAudioBuffer1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioBuffer1, "Samples per audio buffer. Smaller settings give less latency, more CPU load."); this.comboAudioBuffer1.SelectedIndexChanged += new System.EventHandler(this.comboAudioBuffer1_SelectedIndexChanged); // // grpAudioSampleRate1 // this.grpAudioSampleRate1.Controls.Add(this.comboAudioSampleRate1); this.grpAudioSampleRate1.Location = new System.Drawing.Point(240, 136); this.grpAudioSampleRate1.Name = "grpAudioSampleRate1"; this.grpAudioSampleRate1.Size = new System.Drawing.Size(96, 56); this.grpAudioSampleRate1.TabIndex = 35; this.grpAudioSampleRate1.TabStop = false; this.grpAudioSampleRate1.Text = "Sample Rate"; // // comboAudioSampleRate1 // this.comboAudioSampleRate1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSampleRate1.DropDownWidth = 64; this.comboAudioSampleRate1.Items.AddRange(new object[] { "48000"}); this.comboAudioSampleRate1.Location = new System.Drawing.Point(16, 24); this.comboAudioSampleRate1.Name = "comboAudioSampleRate1"; this.comboAudioSampleRate1.Size = new System.Drawing.Size(64, 21); this.comboAudioSampleRate1.TabIndex = 4; this.toolTip1.SetToolTip(this.comboAudioSampleRate1, "Sample Rate -- Higher sampling rates yield a wider panadapter and less latency at" + " a cost of CPU% and filter sharpness"); this.comboAudioSampleRate1.SelectedIndexChanged += new System.EventHandler(this.comboAudioSampleRate1_SelectedIndexChanged); // // tpVAC // this.tpVAC.Controls.Add(this.grpDirectIQOutput); this.tpVAC.Controls.Add(this.chkVACCombine); this.tpVAC.Controls.Add(this.chkVACAllowBypass); this.tpVAC.Controls.Add(this.grpAudioVACAutoEnable); this.tpVAC.Controls.Add(this.grpAudioVACGain); this.tpVAC.Controls.Add(this.grpAudio2Stereo); this.tpVAC.Controls.Add(this.grpAudioLatency2); this.tpVAC.Controls.Add(this.grpAudioSampleRate2); this.tpVAC.Controls.Add(this.grpAudioBuffer2); this.tpVAC.Controls.Add(this.grpAudioDetails2); this.tpVAC.Controls.Add(this.chkAudioEnableVAC); this.tpVAC.Location = new System.Drawing.Point(4, 22); this.tpVAC.Name = "tpVAC"; this.tpVAC.Size = new System.Drawing.Size(592, 318); this.tpVAC.TabIndex = 1; this.tpVAC.Text = "VAC 1"; // // grpDirectIQOutput // this.grpDirectIQOutput.Controls.Add(this.chkAudioRX2toVAC); this.grpDirectIQOutput.Controls.Add(this.chkAudioCorrectIQ); this.grpDirectIQOutput.Controls.Add(this.chkAudioIQtoVAC); this.grpDirectIQOutput.Location = new System.Drawing.Point(448, 56); this.grpDirectIQOutput.Name = "grpDirectIQOutput"; this.grpDirectIQOutput.Size = new System.Drawing.Size(120, 88); this.grpDirectIQOutput.TabIndex = 78; this.grpDirectIQOutput.TabStop = false; this.grpDirectIQOutput.Text = "Direct I/Q"; // // chkAudioRX2toVAC // this.chkAudioRX2toVAC.Enabled = false; this.chkAudioRX2toVAC.Image = null; this.chkAudioRX2toVAC.Location = new System.Drawing.Point(16, 68); this.chkAudioRX2toVAC.Name = "chkAudioRX2toVAC"; this.chkAudioRX2toVAC.Size = new System.Drawing.Size(88, 16); this.chkAudioRX2toVAC.TabIndex = 2; this.chkAudioRX2toVAC.Text = "Use RX2"; this.chkAudioRX2toVAC.Visible = false; this.chkAudioRX2toVAC.CheckedChanged += new System.EventHandler(this.chkAudioRX2toVAC_CheckedChanged); // // chkAudioCorrectIQ // this.chkAudioCorrectIQ.Checked = true; this.chkAudioCorrectIQ.CheckState = System.Windows.Forms.CheckState.Checked; this.chkAudioCorrectIQ.Enabled = false; this.chkAudioCorrectIQ.Image = null; this.chkAudioCorrectIQ.Location = new System.Drawing.Point(16, 46); this.chkAudioCorrectIQ.Name = "chkAudioCorrectIQ"; this.chkAudioCorrectIQ.Size = new System.Drawing.Size(88, 16); this.chkAudioCorrectIQ.TabIndex = 1; this.chkAudioCorrectIQ.Text = "Calibrate I/Q"; this.chkAudioCorrectIQ.CheckedChanged += new System.EventHandler(this.chkAudioCorrectIQ_CheckChanged); // // chkAudioIQtoVAC // this.chkAudioIQtoVAC.Image = null; this.chkAudioIQtoVAC.Location = new System.Drawing.Point(16, 24); this.chkAudioIQtoVAC.Name = "chkAudioIQtoVAC"; this.chkAudioIQtoVAC.Size = new System.Drawing.Size(96, 16); this.chkAudioIQtoVAC.TabIndex = 0; this.chkAudioIQtoVAC.Text = "Output to VAC"; this.chkAudioIQtoVAC.CheckedChanged += new System.EventHandler(this.chkAudioIQtoVAC_CheckedChanged); // // chkVACCombine // this.chkVACCombine.Enabled = false; this.chkVACCombine.Image = null; this.chkVACCombine.Location = new System.Drawing.Point(448, 16); this.chkVACCombine.Name = "chkVACCombine"; this.chkVACCombine.Size = new System.Drawing.Size(104, 40); this.chkVACCombine.TabIndex = 76; this.chkVACCombine.Text = "Combine VAC Input Channels"; this.toolTip1.SetToolTip(this.chkVACCombine, "When this feature is enabled, the left and right VAC channels are combined into t" + "he DSP transmit channel (left)."); this.chkVACCombine.CheckedChanged += new System.EventHandler(this.chkVACCombine_CheckedChanged); // // chkVACAllowBypass // this.chkVACAllowBypass.Checked = true; this.chkVACAllowBypass.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVACAllowBypass.Image = null; this.chkVACAllowBypass.Location = new System.Drawing.Point(240, 192); this.chkVACAllowBypass.Name = "chkVACAllowBypass"; this.chkVACAllowBypass.Size = new System.Drawing.Size(184, 32); this.chkVACAllowBypass.TabIndex = 75; this.chkVACAllowBypass.Text = "Allow PTT to override/bypass VAC for Phone"; this.toolTip1.SetToolTip(this.chkVACAllowBypass, "Using the hardware PTT inputs will override the PTT input to allow for easy phone" + " operation while VAC is enabled."); this.chkVACAllowBypass.CheckedChanged += new System.EventHandler(this.chkVACAllowBypass_CheckedChanged); // // grpAudioVACAutoEnable // this.grpAudioVACAutoEnable.Controls.Add(this.chkAudioVACAutoEnable); this.grpAudioVACAutoEnable.Location = new System.Drawing.Point(8, 168); this.grpAudioVACAutoEnable.Name = "grpAudioVACAutoEnable"; this.grpAudioVACAutoEnable.Size = new System.Drawing.Size(224, 64); this.grpAudioVACAutoEnable.TabIndex = 74; this.grpAudioVACAutoEnable.TabStop = false; this.grpAudioVACAutoEnable.Text = "Auto Enable"; // // chkAudioVACAutoEnable // this.chkAudioVACAutoEnable.Image = null; this.chkAudioVACAutoEnable.Location = new System.Drawing.Point(16, 24); this.chkAudioVACAutoEnable.Name = "chkAudioVACAutoEnable"; this.chkAudioVACAutoEnable.Size = new System.Drawing.Size(200, 32); this.chkAudioVACAutoEnable.TabIndex = 0; this.chkAudioVACAutoEnable.Text = "Enable for Digital modes on Mode change. Disable for all other modes."; this.toolTip1.SetToolTip(this.chkAudioVACAutoEnable, "Click this button to automatically enable VAC when in Digital modes (DIGL, DIGU, " + "DRM)"); this.chkAudioVACAutoEnable.CheckedChanged += new System.EventHandler(this.chkAudioVACAutoEnable_CheckedChanged); // // grpAudioVACGain // this.grpAudioVACGain.Controls.Add(this.lblAudioVACGainTX); this.grpAudioVACGain.Controls.Add(this.udAudioVACGainTX); this.grpAudioVACGain.Controls.Add(this.lblAudioVACGainRX); this.grpAudioVACGain.Controls.Add(this.udAudioVACGainRX); this.grpAudioVACGain.Location = new System.Drawing.Point(344, 8); this.grpAudioVACGain.Name = "grpAudioVACGain"; this.grpAudioVACGain.Size = new System.Drawing.Size(96, 80); this.grpAudioVACGain.TabIndex = 72; this.grpAudioVACGain.TabStop = false; this.grpAudioVACGain.Text = "Gain (dB)"; // // lblAudioVACGainTX // this.lblAudioVACGainTX.Image = null; this.lblAudioVACGainTX.Location = new System.Drawing.Point(16, 48); this.lblAudioVACGainTX.Name = "lblAudioVACGainTX"; this.lblAudioVACGainTX.Size = new System.Drawing.Size(32, 16); this.lblAudioVACGainTX.TabIndex = 39; this.lblAudioVACGainTX.Text = "TX:"; // // udAudioVACGainTX // this.udAudioVACGainTX.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioVACGainTX.Location = new System.Drawing.Point(48, 48); this.udAudioVACGainTX.Maximum = new decimal(new int[] { 40, 0, 0, 0}); this.udAudioVACGainTX.Minimum = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udAudioVACGainTX.Name = "udAudioVACGainTX"; this.udAudioVACGainTX.Size = new System.Drawing.Size(40, 20); this.udAudioVACGainTX.TabIndex = 38; this.toolTip1.SetToolTip(this.udAudioVACGainTX, "Controls the gain on the audio coming from third party applications."); this.udAudioVACGainTX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioVACGainTX.ValueChanged += new System.EventHandler(this.udAudioVACGainTX_ValueChanged); this.udAudioVACGainTX.LostFocus += new System.EventHandler(this.udAudioVACGainTX_LostFocus); // // lblAudioVACGainRX // this.lblAudioVACGainRX.Image = null; this.lblAudioVACGainRX.Location = new System.Drawing.Point(16, 24); this.lblAudioVACGainRX.Name = "lblAudioVACGainRX"; this.lblAudioVACGainRX.Size = new System.Drawing.Size(24, 16); this.lblAudioVACGainRX.TabIndex = 37; this.lblAudioVACGainRX.Text = "RX:"; // // udAudioVACGainRX // this.udAudioVACGainRX.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioVACGainRX.Location = new System.Drawing.Point(48, 24); this.udAudioVACGainRX.Maximum = new decimal(new int[] { 40, 0, 0, 0}); this.udAudioVACGainRX.Minimum = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udAudioVACGainRX.Name = "udAudioVACGainRX"; this.udAudioVACGainRX.Size = new System.Drawing.Size(40, 20); this.udAudioVACGainRX.TabIndex = 36; this.toolTip1.SetToolTip(this.udAudioVACGainRX, "Controls the gain applied to the RX audio before it is sent to the third party ap" + "plication."); this.udAudioVACGainRX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioVACGainRX.ValueChanged += new System.EventHandler(this.udAudioVACGainRX_ValueChanged); this.udAudioVACGainRX.LostFocus += new System.EventHandler(this.udAudioVACGainRX_LostFocus); // // grpAudio2Stereo // this.grpAudio2Stereo.Controls.Add(this.chkAudio2Stereo); this.grpAudio2Stereo.Location = new System.Drawing.Point(240, 136); this.grpAudio2Stereo.Name = "grpAudio2Stereo"; this.grpAudio2Stereo.Size = new System.Drawing.Size(96, 56); this.grpAudio2Stereo.TabIndex = 71; this.grpAudio2Stereo.TabStop = false; this.grpAudio2Stereo.Text = "Mono/Stereo"; // // chkAudio2Stereo // this.chkAudio2Stereo.Image = null; this.chkAudio2Stereo.Location = new System.Drawing.Point(16, 24); this.chkAudio2Stereo.Name = "chkAudio2Stereo"; this.chkAudio2Stereo.Size = new System.Drawing.Size(64, 16); this.chkAudio2Stereo.TabIndex = 0; this.chkAudio2Stereo.Text = "Stereo"; this.toolTip1.SetToolTip(this.chkAudio2Stereo, "Click this button if the third party software will open the Virtual Audio Cable i" + "n 2 channel (stereo) mode."); this.chkAudio2Stereo.CheckedChanged += new System.EventHandler(this.chkAudio2Stereo_CheckedChanged); // // grpAudioLatency2 // this.grpAudioLatency2.Controls.Add(this.chkAudioLatencyManual2); this.grpAudioLatency2.Controls.Add(this.udAudioLatency2); this.grpAudioLatency2.Location = new System.Drawing.Point(448, 160); this.grpAudioLatency2.Name = "grpAudioLatency2"; this.grpAudioLatency2.Size = new System.Drawing.Size(120, 64); this.grpAudioLatency2.TabIndex = 67; this.grpAudioLatency2.TabStop = false; this.grpAudioLatency2.Text = "Buffer Latency (ms)"; // // chkAudioLatencyManual2 // this.chkAudioLatencyManual2.Checked = true; this.chkAudioLatencyManual2.CheckState = System.Windows.Forms.CheckState.Checked; this.chkAudioLatencyManual2.Image = null; this.chkAudioLatencyManual2.Location = new System.Drawing.Point(19, 50); this.chkAudioLatencyManual2.Name = "chkAudioLatencyManual2"; this.chkAudioLatencyManual2.Size = new System.Drawing.Size(64, 16); this.chkAudioLatencyManual2.TabIndex = 5; this.chkAudioLatencyManual2.Text = "Manual"; this.chkAudioLatencyManual2.Visible = false; this.chkAudioLatencyManual2.CheckedChanged += new System.EventHandler(this.chkAudioLatencyManual2_CheckedChanged); // // udAudioLatency2 // this.udAudioLatency2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioLatency2.Location = new System.Drawing.Point(35, 24); this.udAudioLatency2.Maximum = new decimal(new int[] { 240, 0, 0, 0}); this.udAudioLatency2.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioLatency2.Name = "udAudioLatency2"; this.udAudioLatency2.Size = new System.Drawing.Size(48, 20); this.udAudioLatency2.TabIndex = 36; this.toolTip1.SetToolTip(this.udAudioLatency2, "Buffer latency for VAC1 audio stream. Set to 0 for lowest latency. \r\nIncrease t" + "his value if audio quality becomes unreliable or glitches"); this.udAudioLatency2.Value = new decimal(new int[] { 120, 0, 0, 0}); this.udAudioLatency2.ValueChanged += new System.EventHandler(this.udAudioLatency2_ValueChanged); this.udAudioLatency2.LostFocus += new System.EventHandler(this.udAudioLatency2_LostFocus); // // grpAudioSampleRate2 // this.grpAudioSampleRate2.Controls.Add(this.comboAudioSampleRate2); this.grpAudioSampleRate2.Location = new System.Drawing.Point(240, 72); this.grpAudioSampleRate2.Name = "grpAudioSampleRate2"; this.grpAudioSampleRate2.Size = new System.Drawing.Size(96, 56); this.grpAudioSampleRate2.TabIndex = 66; this.grpAudioSampleRate2.TabStop = false; this.grpAudioSampleRate2.Text = "Sample Rate"; // // comboAudioSampleRate2 // this.comboAudioSampleRate2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSampleRate2.DropDownWidth = 64; this.comboAudioSampleRate2.Items.AddRange(new object[] { "8000", "11025", "12000", "24000", "22050", "44100", "48000", "96000", "192000"}); this.comboAudioSampleRate2.Location = new System.Drawing.Point(16, 24); this.comboAudioSampleRate2.Name = "comboAudioSampleRate2"; this.comboAudioSampleRate2.Size = new System.Drawing.Size(64, 21); this.comboAudioSampleRate2.TabIndex = 60; this.toolTip1.SetToolTip(this.comboAudioSampleRate2, resources.GetString("comboAudioSampleRate2.ToolTip")); this.comboAudioSampleRate2.SelectedIndexChanged += new System.EventHandler(this.comboAudioSampleRate2_SelectedIndexChanged); // // grpAudioBuffer2 // this.grpAudioBuffer2.Controls.Add(this.comboAudioBuffer2); this.grpAudioBuffer2.Location = new System.Drawing.Point(240, 8); this.grpAudioBuffer2.Name = "grpAudioBuffer2"; this.grpAudioBuffer2.Size = new System.Drawing.Size(96, 56); this.grpAudioBuffer2.TabIndex = 65; this.grpAudioBuffer2.TabStop = false; this.grpAudioBuffer2.Text = "Buffer Size"; // // comboAudioBuffer2 // this.comboAudioBuffer2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioBuffer2.DropDownWidth = 56; this.comboAudioBuffer2.Items.AddRange(new object[] { "512", "1024", "2048"}); this.comboAudioBuffer2.Location = new System.Drawing.Point(16, 24); this.comboAudioBuffer2.Name = "comboAudioBuffer2"; this.comboAudioBuffer2.Size = new System.Drawing.Size(56, 21); this.comboAudioBuffer2.TabIndex = 58; this.toolTip1.SetToolTip(this.comboAudioBuffer2, "Samples per buffer."); this.comboAudioBuffer2.SelectedIndexChanged += new System.EventHandler(this.comboAudioBuffer2_SelectedIndexChanged); // // grpAudioDetails2 // this.grpAudioDetails2.Controls.Add(this.lblAudioOutput2); this.grpAudioDetails2.Controls.Add(this.comboAudioOutput2); this.grpAudioDetails2.Controls.Add(this.lblAudioInput2); this.grpAudioDetails2.Controls.Add(this.lblAudioDriver2); this.grpAudioDetails2.Controls.Add(this.comboAudioInput2); this.grpAudioDetails2.Controls.Add(this.comboAudioDriver2); this.grpAudioDetails2.Location = new System.Drawing.Point(8, 40); this.grpAudioDetails2.Name = "grpAudioDetails2"; this.grpAudioDetails2.Size = new System.Drawing.Size(224, 120); this.grpAudioDetails2.TabIndex = 35; this.grpAudioDetails2.TabStop = false; this.grpAudioDetails2.Text = "Virtual Audio Cable Setup"; // // lblAudioOutput2 // this.lblAudioOutput2.Image = null; this.lblAudioOutput2.Location = new System.Drawing.Point(8, 88); this.lblAudioOutput2.Name = "lblAudioOutput2"; this.lblAudioOutput2.Size = new System.Drawing.Size(48, 16); this.lblAudioOutput2.TabIndex = 35; this.lblAudioOutput2.Text = "Output:"; // // comboAudioOutput2 // this.comboAudioOutput2.DisplayMember = "sdfg"; this.comboAudioOutput2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioOutput2.DropDownWidth = 160; this.comboAudioOutput2.ItemHeight = 13; this.comboAudioOutput2.Location = new System.Drawing.Point(56, 88); this.comboAudioOutput2.Name = "comboAudioOutput2"; this.comboAudioOutput2.Size = new System.Drawing.Size(160, 21); this.comboAudioOutput2.TabIndex = 34; this.toolTip1.SetToolTip(this.comboAudioOutput2, "Output Audio Device"); this.comboAudioOutput2.SelectedIndexChanged += new System.EventHandler(this.comboAudioOutput2_SelectedIndexChanged); // // lblAudioInput2 // this.lblAudioInput2.Image = null; this.lblAudioInput2.Location = new System.Drawing.Point(8, 56); this.lblAudioInput2.Name = "lblAudioInput2"; this.lblAudioInput2.Size = new System.Drawing.Size(40, 16); this.lblAudioInput2.TabIndex = 33; this.lblAudioInput2.Text = "Input:"; // // lblAudioDriver2 // this.lblAudioDriver2.Image = null; this.lblAudioDriver2.Location = new System.Drawing.Point(8, 24); this.lblAudioDriver2.Name = "lblAudioDriver2"; this.lblAudioDriver2.Size = new System.Drawing.Size(40, 16); this.lblAudioDriver2.TabIndex = 32; this.lblAudioDriver2.Text = "Driver:"; // // comboAudioInput2 // this.comboAudioInput2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioInput2.DropDownWidth = 160; this.comboAudioInput2.ItemHeight = 13; this.comboAudioInput2.Location = new System.Drawing.Point(56, 56); this.comboAudioInput2.Name = "comboAudioInput2"; this.comboAudioInput2.Size = new System.Drawing.Size(160, 21); this.comboAudioInput2.TabIndex = 28; this.toolTip1.SetToolTip(this.comboAudioInput2, "Input Audio Device"); this.comboAudioInput2.SelectedIndexChanged += new System.EventHandler(this.comboAudioInput2_SelectedIndexChanged); // // comboAudioDriver2 // this.comboAudioDriver2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioDriver2.DropDownWidth = 160; this.comboAudioDriver2.ItemHeight = 13; this.comboAudioDriver2.Location = new System.Drawing.Point(56, 24); this.comboAudioDriver2.Name = "comboAudioDriver2"; this.comboAudioDriver2.Size = new System.Drawing.Size(160, 21); this.comboAudioDriver2.TabIndex = 26; this.toolTip1.SetToolTip(this.comboAudioDriver2, "Sound Card Driver Selection"); this.comboAudioDriver2.SelectedIndexChanged += new System.EventHandler(this.comboAudioDriver2_SelectedIndexChanged); // // chkAudioEnableVAC // this.chkAudioEnableVAC.Image = null; this.chkAudioEnableVAC.Location = new System.Drawing.Point(16, 8); this.chkAudioEnableVAC.Name = "chkAudioEnableVAC"; this.chkAudioEnableVAC.Size = new System.Drawing.Size(99, 24); this.chkAudioEnableVAC.TabIndex = 25; this.chkAudioEnableVAC.Text = "Enable VAC 1"; this.toolTip1.SetToolTip(this.chkAudioEnableVAC, "Enable Virtual Audio Cable Support for VAC 1 (RX1)"); this.chkAudioEnableVAC.CheckedChanged += new System.EventHandler(this.chkAudioEnableVAC_CheckedChanged); // // tpVAC2 // this.tpVAC2.BackColor = System.Drawing.SystemColors.Control; this.tpVAC2.Controls.Add(this.chkVAC2UseRX2); this.tpVAC2.Controls.Add(this.grpVAC2DirectIQ); this.tpVAC2.Controls.Add(this.chkVAC2Combine); this.tpVAC2.Controls.Add(this.grpVAC2AutoEnable); this.tpVAC2.Controls.Add(this.grpVAC2Gain); this.tpVAC2.Controls.Add(this.grpAudioStereo3); this.tpVAC2.Controls.Add(this.grpVAC2Latency); this.tpVAC2.Controls.Add(this.grpAudioSampleRate3); this.tpVAC2.Controls.Add(this.grpAudioBuffer3); this.tpVAC2.Controls.Add(this.grpAudioDetails3); this.tpVAC2.Controls.Add(this.chkVAC2Enable); this.tpVAC2.Location = new System.Drawing.Point(4, 22); this.tpVAC2.Name = "tpVAC2"; this.tpVAC2.Padding = new System.Windows.Forms.Padding(3); this.tpVAC2.Size = new System.Drawing.Size(592, 318); this.tpVAC2.TabIndex = 2; this.tpVAC2.Text = "VAC 2"; // // chkVAC2UseRX2 // this.chkVAC2UseRX2.Checked = true; this.chkVAC2UseRX2.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVAC2UseRX2.Enabled = false; this.chkVAC2UseRX2.Image = null; this.chkVAC2UseRX2.Location = new System.Drawing.Point(132, 8); this.chkVAC2UseRX2.Name = "chkVAC2UseRX2"; this.chkVAC2UseRX2.Size = new System.Drawing.Size(92, 24); this.chkVAC2UseRX2.TabIndex = 90; this.chkVAC2UseRX2.Text = "Use RX2"; this.toolTip1.SetToolTip(this.chkVAC2UseRX2, "Use RX2 for VAC2"); this.chkVAC2UseRX2.Visible = false; this.chkVAC2UseRX2.CheckedChanged += new System.EventHandler(this.chkVAC2UseRX2_CheckedChanged); // // grpVAC2DirectIQ // this.grpVAC2DirectIQ.Controls.Add(this.chkVAC2DirectIQCal); this.grpVAC2DirectIQ.Controls.Add(this.chkVAC2DirectIQ); this.grpVAC2DirectIQ.Location = new System.Drawing.Point(448, 56); this.grpVAC2DirectIQ.Name = "grpVAC2DirectIQ"; this.grpVAC2DirectIQ.Size = new System.Drawing.Size(120, 88); this.grpVAC2DirectIQ.TabIndex = 89; this.grpVAC2DirectIQ.TabStop = false; this.grpVAC2DirectIQ.Text = "Direct I/Q"; // // chkVAC2DirectIQCal // this.chkVAC2DirectIQCal.Checked = true; this.chkVAC2DirectIQCal.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVAC2DirectIQCal.Enabled = false; this.chkVAC2DirectIQCal.Image = null; this.chkVAC2DirectIQCal.Location = new System.Drawing.Point(16, 46); this.chkVAC2DirectIQCal.Name = "chkVAC2DirectIQCal"; this.chkVAC2DirectIQCal.Size = new System.Drawing.Size(88, 16); this.chkVAC2DirectIQCal.TabIndex = 1; this.chkVAC2DirectIQCal.Text = "Calibrate I/Q"; this.chkVAC2DirectIQCal.CheckedChanged += new System.EventHandler(this.chkVAC2DirectIQCal_CheckedChanged); // // chkVAC2DirectIQ // this.chkVAC2DirectIQ.Image = null; this.chkVAC2DirectIQ.Location = new System.Drawing.Point(16, 24); this.chkVAC2DirectIQ.Name = "chkVAC2DirectIQ"; this.chkVAC2DirectIQ.Size = new System.Drawing.Size(96, 16); this.chkVAC2DirectIQ.TabIndex = 0; this.chkVAC2DirectIQ.Text = "Output to VAC"; this.chkVAC2DirectIQ.CheckedChanged += new System.EventHandler(this.chkVAC2DirectIQ_CheckedChanged); // // chkVAC2Combine // this.chkVAC2Combine.Enabled = false; this.chkVAC2Combine.Image = null; this.chkVAC2Combine.Location = new System.Drawing.Point(448, 16); this.chkVAC2Combine.Name = "chkVAC2Combine"; this.chkVAC2Combine.Size = new System.Drawing.Size(104, 40); this.chkVAC2Combine.TabIndex = 88; this.chkVAC2Combine.Text = "Combine VAC Input Channels"; this.toolTip1.SetToolTip(this.chkVAC2Combine, "When this feature is enabled, the left and right VAC channels are combined into t" + "he DSP transmit channel (left)."); // // grpVAC2AutoEnable // this.grpVAC2AutoEnable.Controls.Add(this.chkVAC2AutoEnable); this.grpVAC2AutoEnable.Location = new System.Drawing.Point(8, 168); this.grpVAC2AutoEnable.Name = "grpVAC2AutoEnable"; this.grpVAC2AutoEnable.Size = new System.Drawing.Size(224, 64); this.grpVAC2AutoEnable.TabIndex = 86; this.grpVAC2AutoEnable.TabStop = false; this.grpVAC2AutoEnable.Text = "Auto Enable"; // // chkVAC2AutoEnable // this.chkVAC2AutoEnable.Enabled = false; this.chkVAC2AutoEnable.Image = null; this.chkVAC2AutoEnable.Location = new System.Drawing.Point(16, 24); this.chkVAC2AutoEnable.Name = "chkVAC2AutoEnable"; this.chkVAC2AutoEnable.Size = new System.Drawing.Size(200, 32); this.chkVAC2AutoEnable.TabIndex = 0; this.chkVAC2AutoEnable.Text = "Enable for Digital modes on Mode change. Disable for all other modes."; this.toolTip1.SetToolTip(this.chkVAC2AutoEnable, "Click this button to automatically enable VAC when in Digital modes (DIGL, DIGU, " + "DRM)"); this.chkVAC2AutoEnable.CheckedChanged += new System.EventHandler(this.chkVAC2AutoEnable_CheckedChanged); // // grpVAC2Gain // this.grpVAC2Gain.Controls.Add(this.lblVAC2GainTX); this.grpVAC2Gain.Controls.Add(this.udVAC2GainTX); this.grpVAC2Gain.Controls.Add(this.lblVAC2GainRX); this.grpVAC2Gain.Controls.Add(this.udVAC2GainRX); this.grpVAC2Gain.Location = new System.Drawing.Point(344, 8); this.grpVAC2Gain.Name = "grpVAC2Gain"; this.grpVAC2Gain.Size = new System.Drawing.Size(96, 80); this.grpVAC2Gain.TabIndex = 85; this.grpVAC2Gain.TabStop = false; this.grpVAC2Gain.Text = "Gain (dB)"; // // lblVAC2GainTX // this.lblVAC2GainTX.Image = null; this.lblVAC2GainTX.Location = new System.Drawing.Point(16, 48); this.lblVAC2GainTX.Name = "lblVAC2GainTX"; this.lblVAC2GainTX.Size = new System.Drawing.Size(32, 16); this.lblVAC2GainTX.TabIndex = 39; this.lblVAC2GainTX.Text = "TX:"; // // udVAC2GainTX // this.udVAC2GainTX.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udVAC2GainTX.Location = new System.Drawing.Point(48, 48); this.udVAC2GainTX.Maximum = new decimal(new int[] { 40, 0, 0, 0}); this.udVAC2GainTX.Minimum = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udVAC2GainTX.Name = "udVAC2GainTX"; this.udVAC2GainTX.Size = new System.Drawing.Size(40, 20); this.udVAC2GainTX.TabIndex = 38; this.toolTip1.SetToolTip(this.udVAC2GainTX, "Controls the gain on the audio coming from third party applications."); this.udVAC2GainTX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udVAC2GainTX.ValueChanged += new System.EventHandler(this.udVAC2GainTX_ValueChanged); // // lblVAC2GainRX // this.lblVAC2GainRX.Image = null; this.lblVAC2GainRX.Location = new System.Drawing.Point(16, 24); this.lblVAC2GainRX.Name = "lblVAC2GainRX"; this.lblVAC2GainRX.Size = new System.Drawing.Size(24, 16); this.lblVAC2GainRX.TabIndex = 37; this.lblVAC2GainRX.Text = "RX:"; // // udVAC2GainRX // this.udVAC2GainRX.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udVAC2GainRX.Location = new System.Drawing.Point(48, 24); this.udVAC2GainRX.Maximum = new decimal(new int[] { 40, 0, 0, 0}); this.udVAC2GainRX.Minimum = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udVAC2GainRX.Name = "udVAC2GainRX"; this.udVAC2GainRX.Size = new System.Drawing.Size(40, 20); this.udVAC2GainRX.TabIndex = 36; this.toolTip1.SetToolTip(this.udVAC2GainRX, "Controls the gain applied to the RX audio before it is sent to the third party ap" + "plication."); this.udVAC2GainRX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udVAC2GainRX.ValueChanged += new System.EventHandler(this.udVAC2GainRX_ValueChanged); // // grpAudioStereo3 // this.grpAudioStereo3.Controls.Add(this.chkAudioStereo3); this.grpAudioStereo3.Location = new System.Drawing.Point(240, 136); this.grpAudioStereo3.Name = "grpAudioStereo3"; this.grpAudioStereo3.Size = new System.Drawing.Size(96, 56); this.grpAudioStereo3.TabIndex = 84; this.grpAudioStereo3.TabStop = false; this.grpAudioStereo3.Text = "Mono/Stereo"; // // chkAudioStereo3 // this.chkAudioStereo3.Image = null; this.chkAudioStereo3.Location = new System.Drawing.Point(16, 24); this.chkAudioStereo3.Name = "chkAudioStereo3"; this.chkAudioStereo3.Size = new System.Drawing.Size(64, 16); this.chkAudioStereo3.TabIndex = 0; this.chkAudioStereo3.Text = "Stereo"; this.toolTip1.SetToolTip(this.chkAudioStereo3, "Click this button if the third party software will open the Virtual Audio Cable i" + "n 2 channel (stereo) mode."); this.chkAudioStereo3.CheckedChanged += new System.EventHandler(this.chkAudioStereo3_CheckedChanged); // // grpVAC2Latency // this.grpVAC2Latency.Controls.Add(this.chkVAC2LatencyManual); this.grpVAC2Latency.Controls.Add(this.udVAC2Latency); this.grpVAC2Latency.Location = new System.Drawing.Point(448, 160); this.grpVAC2Latency.Name = "grpVAC2Latency"; this.grpVAC2Latency.Size = new System.Drawing.Size(120, 64); this.grpVAC2Latency.TabIndex = 83; this.grpVAC2Latency.TabStop = false; this.grpVAC2Latency.Text = "Buffer Latency (ms)"; // // chkVAC2LatencyManual // this.chkVAC2LatencyManual.Checked = true; this.chkVAC2LatencyManual.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVAC2LatencyManual.Image = null; this.chkVAC2LatencyManual.Location = new System.Drawing.Point(19, 50); this.chkVAC2LatencyManual.Name = "chkVAC2LatencyManual"; this.chkVAC2LatencyManual.Size = new System.Drawing.Size(64, 16); this.chkVAC2LatencyManual.TabIndex = 5; this.chkVAC2LatencyManual.Text = "Manual"; this.chkVAC2LatencyManual.Visible = false; this.chkVAC2LatencyManual.CheckedChanged += new System.EventHandler(this.chkVAC2LatencyManual_CheckedChanged); // // udVAC2Latency // this.udVAC2Latency.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udVAC2Latency.Location = new System.Drawing.Point(35, 24); this.udVAC2Latency.Maximum = new decimal(new int[] { 240, 0, 0, 0}); this.udVAC2Latency.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udVAC2Latency.Name = "udVAC2Latency"; this.udVAC2Latency.Size = new System.Drawing.Size(48, 20); this.udVAC2Latency.TabIndex = 36; this.toolTip1.SetToolTip(this.udVAC2Latency, "Buffer latency for VAC2 audio stream. Set to 0 for lowest latency. \r\nIncrease t" + "his value if audio quality becomes unreliable or glitches "); this.udVAC2Latency.Value = new decimal(new int[] { 120, 0, 0, 0}); this.udVAC2Latency.ValueChanged += new System.EventHandler(this.udVAC2Latency_ValueChanged); this.udVAC2Latency.LostFocus += new System.EventHandler(this.udVAC2Latency_LostFocus); // // grpAudioSampleRate3 // this.grpAudioSampleRate3.Controls.Add(this.comboAudioSampleRate3); this.grpAudioSampleRate3.Location = new System.Drawing.Point(240, 72); this.grpAudioSampleRate3.Name = "grpAudioSampleRate3"; this.grpAudioSampleRate3.Size = new System.Drawing.Size(96, 56); this.grpAudioSampleRate3.TabIndex = 82; this.grpAudioSampleRate3.TabStop = false; this.grpAudioSampleRate3.Text = "Sample Rate"; // // comboAudioSampleRate3 // this.comboAudioSampleRate3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSampleRate3.DropDownWidth = 64; this.comboAudioSampleRate3.Items.AddRange(new object[] { "8000", "11025", "12000", "24000", "22050", "44100", "48000", "96000", "192000"}); this.comboAudioSampleRate3.Location = new System.Drawing.Point(16, 24); this.comboAudioSampleRate3.Name = "comboAudioSampleRate3"; this.comboAudioSampleRate3.Size = new System.Drawing.Size(64, 21); this.comboAudioSampleRate3.TabIndex = 60; this.toolTip1.SetToolTip(this.comboAudioSampleRate3, resources.GetString("comboAudioSampleRate3.ToolTip")); this.comboAudioSampleRate3.SelectedIndexChanged += new System.EventHandler(this.comboAudioSampleRate3_SelectedIndexChanged); // // grpAudioBuffer3 // this.grpAudioBuffer3.Controls.Add(this.comboAudioBuffer3); this.grpAudioBuffer3.Location = new System.Drawing.Point(240, 8); this.grpAudioBuffer3.Name = "grpAudioBuffer3"; this.grpAudioBuffer3.Size = new System.Drawing.Size(96, 56); this.grpAudioBuffer3.TabIndex = 81; this.grpAudioBuffer3.TabStop = false; this.grpAudioBuffer3.Text = "Buffer Size"; // // comboAudioBuffer3 // this.comboAudioBuffer3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioBuffer3.DropDownWidth = 56; this.comboAudioBuffer3.Items.AddRange(new object[] { "512", "1024", "2048"}); this.comboAudioBuffer3.Location = new System.Drawing.Point(16, 24); this.comboAudioBuffer3.Name = "comboAudioBuffer3"; this.comboAudioBuffer3.Size = new System.Drawing.Size(56, 21); this.comboAudioBuffer3.TabIndex = 58; this.toolTip1.SetToolTip(this.comboAudioBuffer3, "Samples per buffer."); this.comboAudioBuffer3.SelectedIndexChanged += new System.EventHandler(this.comboAudioBuffer3_SelectedIndexChanged); // // grpAudioDetails3 // this.grpAudioDetails3.Controls.Add(this.lblAudioOutput3); this.grpAudioDetails3.Controls.Add(this.comboAudioOutput3); this.grpAudioDetails3.Controls.Add(this.lblAudioInput3); this.grpAudioDetails3.Controls.Add(this.lblAudioDriver3); this.grpAudioDetails3.Controls.Add(this.comboAudioInput3); this.grpAudioDetails3.Controls.Add(this.comboAudioDriver3); this.grpAudioDetails3.Location = new System.Drawing.Point(8, 40); this.grpAudioDetails3.Name = "grpAudioDetails3"; this.grpAudioDetails3.Size = new System.Drawing.Size(224, 120); this.grpAudioDetails3.TabIndex = 80; this.grpAudioDetails3.TabStop = false; this.grpAudioDetails3.Text = "Virtual Audio Cable Setup"; // // lblAudioOutput3 // this.lblAudioOutput3.Image = null; this.lblAudioOutput3.Location = new System.Drawing.Point(8, 88); this.lblAudioOutput3.Name = "lblAudioOutput3"; this.lblAudioOutput3.Size = new System.Drawing.Size(48, 16); this.lblAudioOutput3.TabIndex = 35; this.lblAudioOutput3.Text = "Output:"; // // comboAudioOutput3 // this.comboAudioOutput3.DisplayMember = "sdfg"; this.comboAudioOutput3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioOutput3.DropDownWidth = 160; this.comboAudioOutput3.ItemHeight = 13; this.comboAudioOutput3.Location = new System.Drawing.Point(56, 88); this.comboAudioOutput3.Name = "comboAudioOutput3"; this.comboAudioOutput3.Size = new System.Drawing.Size(160, 21); this.comboAudioOutput3.TabIndex = 34; this.toolTip1.SetToolTip(this.comboAudioOutput3, "Output Audio Device"); this.comboAudioOutput3.SelectedIndexChanged += new System.EventHandler(this.comboAudioOutput3_SelectedIndexChanged); // // lblAudioInput3 // this.lblAudioInput3.Image = null; this.lblAudioInput3.Location = new System.Drawing.Point(8, 56); this.lblAudioInput3.Name = "lblAudioInput3"; this.lblAudioInput3.Size = new System.Drawing.Size(40, 16); this.lblAudioInput3.TabIndex = 33; this.lblAudioInput3.Text = "Input:"; // // lblAudioDriver3 // this.lblAudioDriver3.Image = null; this.lblAudioDriver3.Location = new System.Drawing.Point(8, 24); this.lblAudioDriver3.Name = "lblAudioDriver3"; this.lblAudioDriver3.Size = new System.Drawing.Size(40, 16); this.lblAudioDriver3.TabIndex = 32; this.lblAudioDriver3.Text = "Driver:"; // // comboAudioInput3 // this.comboAudioInput3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioInput3.DropDownWidth = 160; this.comboAudioInput3.ItemHeight = 13; this.comboAudioInput3.Location = new System.Drawing.Point(56, 56); this.comboAudioInput3.Name = "comboAudioInput3"; this.comboAudioInput3.Size = new System.Drawing.Size(160, 21); this.comboAudioInput3.TabIndex = 28; this.toolTip1.SetToolTip(this.comboAudioInput3, "Input Audio Device"); this.comboAudioInput3.SelectedIndexChanged += new System.EventHandler(this.comboAudioInput3_SelectedIndexChanged); // // comboAudioDriver3 // this.comboAudioDriver3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioDriver3.DropDownWidth = 160; this.comboAudioDriver3.ItemHeight = 13; this.comboAudioDriver3.Location = new System.Drawing.Point(56, 24); this.comboAudioDriver3.Name = "comboAudioDriver3"; this.comboAudioDriver3.Size = new System.Drawing.Size(160, 21); this.comboAudioDriver3.TabIndex = 26; this.toolTip1.SetToolTip(this.comboAudioDriver3, "Sound Card Driver Selection"); this.comboAudioDriver3.SelectedIndexChanged += new System.EventHandler(this.comboAudioDriver3_SelectedIndexChanged); // // chkVAC2Enable // this.chkVAC2Enable.Enabled = false; this.chkVAC2Enable.Image = null; this.chkVAC2Enable.Location = new System.Drawing.Point(16, 8); this.chkVAC2Enable.Name = "chkVAC2Enable"; this.chkVAC2Enable.Size = new System.Drawing.Size(110, 24); this.chkVAC2Enable.TabIndex = 79; this.chkVAC2Enable.Text = "Enable VAC 2"; this.toolTip1.SetToolTip(this.chkVAC2Enable, "Enable Virtual Audio Cable for VAC 2 (RX2 only)"); this.chkVAC2Enable.CheckedChanged += new System.EventHandler(this.chkVAC2Enable_CheckedChanged); // // tpDisplay // this.tpDisplay.Controls.Add(this.grpDisplayMultimeter); this.tpDisplay.Controls.Add(this.grpDisplayDriverEngine); this.tpDisplay.Controls.Add(this.grpDisplayPolyPhase); this.tpDisplay.Controls.Add(this.grpDisplayScopeMode); this.tpDisplay.Controls.Add(this.grpDisplayWaterfall); this.tpDisplay.Controls.Add(this.grpDisplayRefreshRates); this.tpDisplay.Controls.Add(this.grpDisplayAverage); this.tpDisplay.Controls.Add(this.grpDisplayPhase); this.tpDisplay.Controls.Add(this.grpDisplaySpectrumGrid); this.tpDisplay.Location = new System.Drawing.Point(4, 22); this.tpDisplay.Name = "tpDisplay"; this.tpDisplay.Size = new System.Drawing.Size(584, 286); this.tpDisplay.TabIndex = 2; this.tpDisplay.Text = "Display"; // // grpDisplayMultimeter // this.grpDisplayMultimeter.Controls.Add(this.chkDisplayMeterShowDecimal); this.grpDisplayMultimeter.Controls.Add(this.udMeterDigitalDelay); this.grpDisplayMultimeter.Controls.Add(this.lblMultimeterDigitalDelay); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMeterAvg); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterAvg); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMultiTextHoldTime); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterTextHoldTime); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMultiPeakHoldTime); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMultiPeakHoldTime); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMeterDelay); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterDelay); this.grpDisplayMultimeter.Location = new System.Drawing.Point(272, 144); this.grpDisplayMultimeter.Name = "grpDisplayMultimeter"; this.grpDisplayMultimeter.Size = new System.Drawing.Size(304, 136); this.grpDisplayMultimeter.TabIndex = 41; this.grpDisplayMultimeter.TabStop = false; this.grpDisplayMultimeter.Text = "Multimeter"; // // chkDisplayMeterShowDecimal // this.chkDisplayMeterShowDecimal.Image = null; this.chkDisplayMeterShowDecimal.Location = new System.Drawing.Point(200, 16); this.chkDisplayMeterShowDecimal.Name = "chkDisplayMeterShowDecimal"; this.chkDisplayMeterShowDecimal.Size = new System.Drawing.Size(96, 16); this.chkDisplayMeterShowDecimal.TabIndex = 40; this.chkDisplayMeterShowDecimal.Text = "Show Decimal"; this.toolTip1.SetToolTip(this.chkDisplayMeterShowDecimal, "Check to show detailed meter info"); this.chkDisplayMeterShowDecimal.CheckedChanged += new System.EventHandler(this.chkDisplayMeterShowDecimal_CheckedChanged); // // udMeterDigitalDelay // this.udMeterDigitalDelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udMeterDigitalDelay.Location = new System.Drawing.Point(136, 112); this.udMeterDigitalDelay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udMeterDigitalDelay.Minimum = new decimal(new int[] { 50, 0, 0, 0}); this.udMeterDigitalDelay.Name = "udMeterDigitalDelay"; this.udMeterDigitalDelay.Size = new System.Drawing.Size(56, 20); this.udMeterDigitalDelay.TabIndex = 36; this.toolTip1.SetToolTip(this.udMeterDigitalDelay, "Digital (text) Multimeter Refresh Rate."); this.udMeterDigitalDelay.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udMeterDigitalDelay.ValueChanged += new System.EventHandler(this.udMeterDigitalDelay_ValueChanged); // // lblMultimeterDigitalDelay // this.lblMultimeterDigitalDelay.Image = null; this.lblMultimeterDigitalDelay.Location = new System.Drawing.Point(16, 114); this.lblMultimeterDigitalDelay.Name = "lblMultimeterDigitalDelay"; this.lblMultimeterDigitalDelay.Size = new System.Drawing.Size(120, 16); this.lblMultimeterDigitalDelay.TabIndex = 35; this.lblMultimeterDigitalDelay.Text = "Digital Refresh (ms):"; // // udDisplayMeterAvg // this.udDisplayMeterAvg.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterAvg.Location = new System.Drawing.Point(136, 64); this.udDisplayMeterAvg.Maximum = new decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMeterAvg.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterAvg.Name = "udDisplayMeterAvg"; this.udDisplayMeterAvg.Size = new System.Drawing.Size(56, 20); this.udDisplayMeterAvg.TabIndex = 8; this.toolTip1.SetToolTip(this.udDisplayMeterAvg, "Controls the length of time to average for the meter."); this.udDisplayMeterAvg.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayMeterAvg.ValueChanged += new System.EventHandler(this.udDisplayMeterAvg_ValueChanged); this.udDisplayMeterAvg.LostFocus += new System.EventHandler(this.udDisplayMeterAvg_LostFocus); // // lblDisplayMeterAvg // this.lblDisplayMeterAvg.Image = null; this.lblDisplayMeterAvg.Location = new System.Drawing.Point(16, 66); this.lblDisplayMeterAvg.Name = "lblDisplayMeterAvg"; this.lblDisplayMeterAvg.Size = new System.Drawing.Size(112, 16); this.lblDisplayMeterAvg.TabIndex = 7; this.lblDisplayMeterAvg.Text = "Average Time (ms):"; this.toolTip1.SetToolTip(this.lblDisplayMeterAvg, "The time to average the value when Sig Avg is selected on the RX Meter."); // // udDisplayMultiTextHoldTime // this.udDisplayMultiTextHoldTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Location = new System.Drawing.Point(136, 40); this.udDisplayMultiTextHoldTime.Maximum = new decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Name = "udDisplayMultiTextHoldTime"; this.udDisplayMultiTextHoldTime.Size = new System.Drawing.Size(56, 20); this.udDisplayMultiTextHoldTime.TabIndex = 4; this.toolTip1.SetToolTip(this.udDisplayMultiTextHoldTime, "Controls how long the meter will hold the digital peak value when in the Peak Pow" + "er mode."); this.udDisplayMultiTextHoldTime.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDisplayMultiTextHoldTime.ValueChanged += new System.EventHandler(this.udDisplayMultiTextHoldTime_ValueChanged); this.udDisplayMultiTextHoldTime.LostFocus += new System.EventHandler(this.udDisplayMultiTextHoldTime_LostFocus); // // lblDisplayMeterTextHoldTime // this.lblDisplayMeterTextHoldTime.Image = null; this.lblDisplayMeterTextHoldTime.Location = new System.Drawing.Point(16, 42); this.lblDisplayMeterTextHoldTime.Name = "lblDisplayMeterTextHoldTime"; this.lblDisplayMeterTextHoldTime.Size = new System.Drawing.Size(120, 16); this.lblDisplayMeterTextHoldTime.TabIndex = 3; this.lblDisplayMeterTextHoldTime.Text = "Digital Peak Hold (ms):"; // // udDisplayMultiPeakHoldTime // this.udDisplayMultiPeakHoldTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Location = new System.Drawing.Point(136, 16); this.udDisplayMultiPeakHoldTime.Maximum = new decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Name = "udDisplayMultiPeakHoldTime"; this.udDisplayMultiPeakHoldTime.Size = new System.Drawing.Size(56, 20); this.udDisplayMultiPeakHoldTime.TabIndex = 1; this.toolTip1.SetToolTip(this.udDisplayMultiPeakHoldTime, "Controls how long the analog peak red line will be held on the multimeter."); this.udDisplayMultiPeakHoldTime.Value = new decimal(new int[] { 2500, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.ValueChanged += new System.EventHandler(this.udDisplayMultiPeakHoldTime_ValueChanged); this.udDisplayMultiPeakHoldTime.LostFocus += new System.EventHandler(this.udDisplayMultiPeakHoldTime_LostFocus); // // lblDisplayMultiPeakHoldTime // this.lblDisplayMultiPeakHoldTime.Image = null; this.lblDisplayMultiPeakHoldTime.Location = new System.Drawing.Point(16, 18); this.lblDisplayMultiPeakHoldTime.Name = "lblDisplayMultiPeakHoldTime"; this.lblDisplayMultiPeakHoldTime.Size = new System.Drawing.Size(128, 16); this.lblDisplayMultiPeakHoldTime.TabIndex = 0; this.lblDisplayMultiPeakHoldTime.Text = "Analog Peak Hold (ms):"; // // udDisplayMeterDelay // this.udDisplayMeterDelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterDelay.Location = new System.Drawing.Point(136, 88); this.udDisplayMeterDelay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDisplayMeterDelay.Minimum = new decimal(new int[] { 50, 0, 0, 0}); this.udDisplayMeterDelay.Name = "udDisplayMeterDelay"; this.udDisplayMeterDelay.Size = new System.Drawing.Size(56, 20); this.udDisplayMeterDelay.TabIndex = 34; this.toolTip1.SetToolTip(this.udDisplayMeterDelay, "Analog Multimeter Refresh Rate."); this.udDisplayMeterDelay.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udDisplayMeterDelay.ValueChanged += new System.EventHandler(this.udDisplayMeterDelay_ValueChanged); this.udDisplayMeterDelay.LostFocus += new System.EventHandler(this.udDisplayMeterDelay_LostFocus); // // lblDisplayMeterDelay // this.lblDisplayMeterDelay.Image = null; this.lblDisplayMeterDelay.Location = new System.Drawing.Point(16, 90); this.lblDisplayMeterDelay.Name = "lblDisplayMeterDelay"; this.lblDisplayMeterDelay.Size = new System.Drawing.Size(128, 16); this.lblDisplayMeterDelay.TabIndex = 33; this.lblDisplayMeterDelay.Text = "Analog Refresh (ms):"; // // grpDisplayDriverEngine // this.grpDisplayDriverEngine.Controls.Add(this.comboDisplayDriver); this.grpDisplayDriverEngine.Location = new System.Drawing.Point(480, 144); this.grpDisplayDriverEngine.Name = "grpDisplayDriverEngine"; this.grpDisplayDriverEngine.Size = new System.Drawing.Size(96, 56); this.grpDisplayDriverEngine.TabIndex = 46; this.grpDisplayDriverEngine.TabStop = false; this.grpDisplayDriverEngine.Text = "Driver Engine"; this.grpDisplayDriverEngine.Visible = false; // // comboDisplayDriver // this.comboDisplayDriver.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDisplayDriver.DropDownWidth = 48; this.comboDisplayDriver.Items.AddRange(new object[] { "GDI+"}); this.comboDisplayDriver.Location = new System.Drawing.Point(8, 24); this.comboDisplayDriver.Name = "comboDisplayDriver"; this.comboDisplayDriver.Size = new System.Drawing.Size(80, 21); this.comboDisplayDriver.TabIndex = 45; this.toolTip1.SetToolTip(this.comboDisplayDriver, "Sets the driver to be used for the display."); this.comboDisplayDriver.SelectedIndexChanged += new System.EventHandler(this.comboDisplayDriver_SelectedIndexChanged); // // grpDisplayPolyPhase // this.grpDisplayPolyPhase.Controls.Add(this.chkSpectrumPolyphase); this.grpDisplayPolyPhase.Location = new System.Drawing.Point(440, 72); this.grpDisplayPolyPhase.Name = "grpDisplayPolyPhase"; this.grpDisplayPolyPhase.Size = new System.Drawing.Size(120, 56); this.grpDisplayPolyPhase.TabIndex = 44; this.grpDisplayPolyPhase.TabStop = false; this.grpDisplayPolyPhase.Text = "Polyphase FFT"; // // chkSpectrumPolyphase // this.chkSpectrumPolyphase.Image = null; this.chkSpectrumPolyphase.Location = new System.Drawing.Point(16, 24); this.chkSpectrumPolyphase.Name = "chkSpectrumPolyphase"; this.chkSpectrumPolyphase.Size = new System.Drawing.Size(64, 16); this.chkSpectrumPolyphase.TabIndex = 39; this.chkSpectrumPolyphase.Text = "Enable"; this.toolTip1.SetToolTip(this.chkSpectrumPolyphase, "Check to enable polyphase spectrum display mode. While adding latency, this adds" + " resolution to the display."); this.chkSpectrumPolyphase.CheckedChanged += new System.EventHandler(this.chkSpectrumPolyphase_CheckedChanged); // // grpDisplayScopeMode // this.grpDisplayScopeMode.Controls.Add(this.udDisplayScopeTime); this.grpDisplayScopeMode.Controls.Add(this.lblDisplayScopeTime); this.grpDisplayScopeMode.Location = new System.Drawing.Point(440, 8); this.grpDisplayScopeMode.Name = "grpDisplayScopeMode"; this.grpDisplayScopeMode.Size = new System.Drawing.Size(136, 56); this.grpDisplayScopeMode.TabIndex = 43; this.grpDisplayScopeMode.TabStop = false; this.grpDisplayScopeMode.Text = "Scope Mode"; // // udDisplayScopeTime // this.udDisplayScopeTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayScopeTime.Location = new System.Drawing.Point(64, 24); this.udDisplayScopeTime.Maximum = new decimal(new int[] { 1000000, 0, 0, 0}); this.udDisplayScopeTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayScopeTime.Name = "udDisplayScopeTime"; this.udDisplayScopeTime.Size = new System.Drawing.Size(64, 20); this.udDisplayScopeTime.TabIndex = 0; this.toolTip1.SetToolTip(this.udDisplayScopeTime, "Amount of time to display across the width of the scope display window."); this.udDisplayScopeTime.Value = new decimal(new int[] { 5000, 0, 0, 0}); this.udDisplayScopeTime.ValueChanged += new System.EventHandler(this.udDisplayScopeTime_ValueChanged); this.udDisplayScopeTime.LostFocus += new System.EventHandler(this.udDisplayScopeTime_LostFocus); // // lblDisplayScopeTime // this.lblDisplayScopeTime.Image = null; this.lblDisplayScopeTime.Location = new System.Drawing.Point(8, 24); this.lblDisplayScopeTime.Name = "lblDisplayScopeTime"; this.lblDisplayScopeTime.Size = new System.Drawing.Size(64, 23); this.lblDisplayScopeTime.TabIndex = 1; this.lblDisplayScopeTime.Text = "Time (us):"; // // grpDisplayWaterfall // this.grpDisplayWaterfall.Controls.Add(this.chkWeakSignalWaterfallSettings); this.grpDisplayWaterfall.Controls.Add(this.lblWaterfallLevels); this.grpDisplayWaterfall.Controls.Add(this.txtWaterFallBandLevel); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallUpdatePeriod); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallUpdatePeriod); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallAvgTime); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallAverageTime); this.grpDisplayWaterfall.Controls.Add(this.clrbtnWaterfallLow); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallLowColor); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallLowLevel); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallLowLevel); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallHighLevel); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallHighLevel); this.grpDisplayWaterfall.Location = new System.Drawing.Point(8, 144); this.grpDisplayWaterfall.Name = "grpDisplayWaterfall"; this.grpDisplayWaterfall.Size = new System.Drawing.Size(256, 136); this.grpDisplayWaterfall.TabIndex = 40; this.grpDisplayWaterfall.TabStop = false; this.grpDisplayWaterfall.Text = "Waterfall"; // // chkWeakSignalWaterfallSettings // this.chkWeakSignalWaterfallSettings.Image = null; this.chkWeakSignalWaterfallSettings.Location = new System.Drawing.Point(11, 114); this.chkWeakSignalWaterfallSettings.Name = "chkWeakSignalWaterfallSettings"; this.chkWeakSignalWaterfallSettings.Size = new System.Drawing.Size(225, 18); this.chkWeakSignalWaterfallSettings.TabIndex = 75; this.chkWeakSignalWaterfallSettings.Text = "Enable weak signal display optimization"; this.toolTip1.SetToolTip(this.chkWeakSignalWaterfallSettings, "Check to optimize waterfall settings for displaying weak signals"); this.chkWeakSignalWaterfallSettings.CheckedChanged += new System.EventHandler(this.chkWeakSignalWaterfallSettings_CheckedChanged); // // lblWaterfallLevels // this.lblWaterfallLevels.AutoSize = true; this.lblWaterfallLevels.Location = new System.Drawing.Point(8, 18); this.lblWaterfallLevels.Name = "lblWaterfallLevels"; this.lblWaterfallLevels.Size = new System.Drawing.Size(134, 13); this.lblWaterfallLevels.TabIndex = 74; this.lblWaterfallLevels.Text = "Band for Low/High Levels:"; this.toolTip1.SetToolTip(this.lblWaterfallLevels, "Waterfall Low/High levels can be set by band. RX2 bands inherit RX1 band\'s Water" + "fall Settings."); // // txtWaterFallBandLevel // this.txtWaterFallBandLevel.Location = new System.Drawing.Point(146, 13); this.txtWaterFallBandLevel.Name = "txtWaterFallBandLevel"; this.txtWaterFallBandLevel.ReadOnly = true; this.txtWaterFallBandLevel.Size = new System.Drawing.Size(94, 20); this.txtWaterFallBandLevel.TabIndex = 73; this.txtWaterFallBandLevel.Text = "Current Band"; this.toolTip1.SetToolTip(this.txtWaterFallBandLevel, "Current RX1 band selected for setting Waterfall Low/High level settings"); // // udDisplayWaterfallUpdatePeriod // this.udDisplayWaterfallUpdatePeriod.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.Location = new System.Drawing.Point(192, 88); this.udDisplayWaterfallUpdatePeriod.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.Name = "udDisplayWaterfallUpdatePeriod"; this.udDisplayWaterfallUpdatePeriod.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallUpdatePeriod.TabIndex = 71; this.toolTip1.SetToolTip(this.udDisplayWaterfallUpdatePeriod, "How often to update (scroll another pixel line) on the waterfall display. Note t" + "hat this is tamed by the FPS setting."); this.udDisplayWaterfallUpdatePeriod.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.ValueChanged += new System.EventHandler(this.udDisplayWaterfallUpdatePeriod_ValueChanged); // // lblDisplayWaterfallUpdatePeriod // this.lblDisplayWaterfallUpdatePeriod.Image = null; this.lblDisplayWaterfallUpdatePeriod.Location = new System.Drawing.Point(79, 90); this.lblDisplayWaterfallUpdatePeriod.Name = "lblDisplayWaterfallUpdatePeriod"; this.lblDisplayWaterfallUpdatePeriod.Size = new System.Drawing.Size(118, 18); this.lblDisplayWaterfallUpdatePeriod.TabIndex = 72; this.lblDisplayWaterfallUpdatePeriod.Text = "Update Period (ms):"; this.toolTip1.SetToolTip(this.lblDisplayWaterfallUpdatePeriod, "How often to update (scroll another pixel line) on the waterfall display. Note t" + "hat this is tamed by the FPS setting."); // // udDisplayWaterfallAvgTime // this.udDisplayWaterfallAvgTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Location = new System.Drawing.Point(192, 64); this.udDisplayWaterfallAvgTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Name = "udDisplayWaterfallAvgTime"; this.udDisplayWaterfallAvgTime.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallAvgTime.TabIndex = 69; this.toolTip1.SetToolTip(this.udDisplayWaterfallAvgTime, "The time to average signals for each line (1 pixel high) on the waterfall."); this.udDisplayWaterfallAvgTime.Value = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayWaterfallAvgTime.ValueChanged += new System.EventHandler(this.udDisplayWaterfallAvgTime_ValueChanged); // // lblDisplayWaterfallAverageTime // this.lblDisplayWaterfallAverageTime.Image = null; this.lblDisplayWaterfallAverageTime.Location = new System.Drawing.Point(79, 66); this.lblDisplayWaterfallAverageTime.Name = "lblDisplayWaterfallAverageTime"; this.lblDisplayWaterfallAverageTime.Size = new System.Drawing.Size(118, 18); this.lblDisplayWaterfallAverageTime.TabIndex = 70; this.lblDisplayWaterfallAverageTime.Text = "Averaging Time (ms):"; this.toolTip1.SetToolTip(this.lblDisplayWaterfallAverageTime, "The time to average signals for each line (1 pixel high) on the waterfall."); // // clrbtnWaterfallLow // this.clrbtnWaterfallLow.Automatic = "Automatic"; this.clrbtnWaterfallLow.Color = System.Drawing.Color.Transparent; this.clrbtnWaterfallLow.Image = null; this.clrbtnWaterfallLow.Location = new System.Drawing.Point(9, 85); this.clrbtnWaterfallLow.MoreColors = "More Colors..."; this.clrbtnWaterfallLow.Name = "clrbtnWaterfallLow"; this.clrbtnWaterfallLow.Size = new System.Drawing.Size(40, 23); this.clrbtnWaterfallLow.TabIndex = 68; this.toolTip1.SetToolTip(this.clrbtnWaterfallLow, "The Color to use when the signal level is at or below the low level set above."); this.clrbtnWaterfallLow.Changed += new System.EventHandler(this.clrbtnWaterfallLow_Changed); // // lblDisplayWaterfallLowColor // this.lblDisplayWaterfallLowColor.Image = null; this.lblDisplayWaterfallLowColor.Location = new System.Drawing.Point(8, 66); this.lblDisplayWaterfallLowColor.Name = "lblDisplayWaterfallLowColor"; this.lblDisplayWaterfallLowColor.Size = new System.Drawing.Size(64, 16); this.lblDisplayWaterfallLowColor.TabIndex = 57; this.lblDisplayWaterfallLowColor.Text = "Low Color:"; // // lblDisplayWaterfallLowLevel // this.lblDisplayWaterfallLowLevel.Image = null; this.lblDisplayWaterfallLowLevel.Location = new System.Drawing.Point(8, 42); this.lblDisplayWaterfallLowLevel.Name = "lblDisplayWaterfallLowLevel"; this.lblDisplayWaterfallLowLevel.Size = new System.Drawing.Size(64, 23); this.lblDisplayWaterfallLowLevel.TabIndex = 3; this.lblDisplayWaterfallLowLevel.Text = "Low Level:"; // // udDisplayWaterfallLowLevel // this.udDisplayWaterfallLowLevel.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udDisplayWaterfallLowLevel.Location = new System.Drawing.Point(72, 40); this.udDisplayWaterfallLowLevel.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayWaterfallLowLevel.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayWaterfallLowLevel.Name = "udDisplayWaterfallLowLevel"; this.udDisplayWaterfallLowLevel.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallLowLevel.TabIndex = 2; this.toolTip1.SetToolTip(this.udDisplayWaterfallLowLevel, "Waterfall Low Signal - Show Low Color below this value (gradient in between)."); this.udDisplayWaterfallLowLevel.Value = new decimal(new int[] { 110, 0, 0, -2147483648}); this.udDisplayWaterfallLowLevel.ValueChanged += new System.EventHandler(this.udDisplayWaterfallLowLevel_ValueChanged); this.udDisplayWaterfallLowLevel.LostFocus += new System.EventHandler(this.udDisplayWaterfallLowLevel_LostFocus); // // lblDisplayWaterfallHighLevel // this.lblDisplayWaterfallHighLevel.Image = null; this.lblDisplayWaterfallHighLevel.Location = new System.Drawing.Point(126, 42); this.lblDisplayWaterfallHighLevel.Name = "lblDisplayWaterfallHighLevel"; this.lblDisplayWaterfallHighLevel.Size = new System.Drawing.Size(64, 23); this.lblDisplayWaterfallHighLevel.TabIndex = 1; this.lblDisplayWaterfallHighLevel.Text = "High Level:"; // // udDisplayWaterfallHighLevel // this.udDisplayWaterfallHighLevel.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udDisplayWaterfallHighLevel.Location = new System.Drawing.Point(192, 40); this.udDisplayWaterfallHighLevel.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayWaterfallHighLevel.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayWaterfallHighLevel.Name = "udDisplayWaterfallHighLevel"; this.udDisplayWaterfallHighLevel.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallHighLevel.TabIndex = 0; this.toolTip1.SetToolTip(this.udDisplayWaterfallHighLevel, "Waterfall High Signal - Show High Color above this value (gradient in between)."); this.udDisplayWaterfallHighLevel.Value = new decimal(new int[] { 70, 0, 0, -2147483648}); this.udDisplayWaterfallHighLevel.ValueChanged += new System.EventHandler(this.udDisplayWaterfallHighLevel_ValueChanged); this.udDisplayWaterfallHighLevel.LostFocus += new System.EventHandler(this.udDisplayWaterfallHighLevel_LostFocus); // // grpDisplayRefreshRates // this.grpDisplayRefreshRates.Controls.Add(this.chkDisplayPanFill); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayCPUMeter); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayCPUMeter); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayPeakText); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayPeakText); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayFPS); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayFPS); this.grpDisplayRefreshRates.Location = new System.Drawing.Point(128, 8); this.grpDisplayRefreshRates.Name = "grpDisplayRefreshRates"; this.grpDisplayRefreshRates.Size = new System.Drawing.Size(176, 128); this.grpDisplayRefreshRates.TabIndex = 39; this.grpDisplayRefreshRates.TabStop = false; this.grpDisplayRefreshRates.Text = "Refresh Rates"; // // chkDisplayPanFill // this.chkDisplayPanFill.Checked = true; this.chkDisplayPanFill.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDisplayPanFill.Image = null; this.chkDisplayPanFill.Location = new System.Drawing.Point(19, 47); this.chkDisplayPanFill.Name = "chkDisplayPanFill"; this.chkDisplayPanFill.Size = new System.Drawing.Size(101, 16); this.chkDisplayPanFill.TabIndex = 40; this.chkDisplayPanFill.Text = "Fill Panadapter"; this.toolTip1.SetToolTip(this.chkDisplayPanFill, "Check to fill the panadapter display line below the data."); this.chkDisplayPanFill.CheckedChanged += new System.EventHandler(this.chkDisplayPanFill_CheckedChanged); // // udDisplayCPUMeter // this.udDisplayCPUMeter.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayCPUMeter.Location = new System.Drawing.Point(120, 96); this.udDisplayCPUMeter.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayCPUMeter.Minimum = new decimal(new int[] { 100, 0, 0, 0}); this.udDisplayCPUMeter.Name = "udDisplayCPUMeter"; this.udDisplayCPUMeter.Size = new System.Drawing.Size(48, 20); this.udDisplayCPUMeter.TabIndex = 38; this.toolTip1.SetToolTip(this.udDisplayCPUMeter, "CPU Meter Refresh Rate."); this.udDisplayCPUMeter.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayCPUMeter.ValueChanged += new System.EventHandler(this.udDisplayCPUMeter_ValueChanged); this.udDisplayCPUMeter.LostFocus += new System.EventHandler(this.udDisplayCPUMeter_LostFocus); // // lblDisplayCPUMeter // this.lblDisplayCPUMeter.Image = null; this.lblDisplayCPUMeter.Location = new System.Drawing.Point(16, 96); this.lblDisplayCPUMeter.Name = "lblDisplayCPUMeter"; this.lblDisplayCPUMeter.Size = new System.Drawing.Size(100, 23); this.lblDisplayCPUMeter.TabIndex = 37; this.lblDisplayCPUMeter.Text = "CPU Meter (ms)"; // // udDisplayPeakText // this.udDisplayPeakText.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayPeakText.Location = new System.Drawing.Point(120, 72); this.udDisplayPeakText.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayPeakText.Minimum = new decimal(new int[] { 100, 0, 0, 0}); this.udDisplayPeakText.Name = "udDisplayPeakText"; this.udDisplayPeakText.Size = new System.Drawing.Size(48, 20); this.udDisplayPeakText.TabIndex = 36; this.toolTip1.SetToolTip(this.udDisplayPeakText, "Peak Text Refresh Rate."); this.udDisplayPeakText.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDisplayPeakText.ValueChanged += new System.EventHandler(this.udDisplayPeakText_ValueChanged); this.udDisplayPeakText.LostFocus += new System.EventHandler(this.udDisplayPeakText_LostFocus); // // lblDisplayPeakText // this.lblDisplayPeakText.Image = null; this.lblDisplayPeakText.Location = new System.Drawing.Point(16, 72); this.lblDisplayPeakText.Name = "lblDisplayPeakText"; this.lblDisplayPeakText.Size = new System.Drawing.Size(100, 23); this.lblDisplayPeakText.TabIndex = 35; this.lblDisplayPeakText.Text = "Peak Text (ms)"; // // udDisplayFPS // this.udDisplayFPS.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayFPS.Location = new System.Drawing.Point(120, 24); this.udDisplayFPS.Maximum = new decimal(new int[] { 50, 0, 0, 0}); this.udDisplayFPS.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayFPS.Name = "udDisplayFPS"; this.udDisplayFPS.Size = new System.Drawing.Size(48, 20); this.udDisplayFPS.TabIndex = 32; this.toolTip1.SetToolTip(this.udDisplayFPS, "Frames Per Second (approximate)"); this.udDisplayFPS.Value = new decimal(new int[] { 15, 0, 0, 0}); this.udDisplayFPS.ValueChanged += new System.EventHandler(this.udDisplayFPS_ValueChanged); this.udDisplayFPS.LostFocus += new System.EventHandler(this.udDisplayFPS_LostFocus); // // lblDisplayFPS // this.lblDisplayFPS.Image = null; this.lblDisplayFPS.Location = new System.Drawing.Point(16, 24); this.lblDisplayFPS.Name = "lblDisplayFPS"; this.lblDisplayFPS.Size = new System.Drawing.Size(104, 16); this.lblDisplayFPS.TabIndex = 31; this.lblDisplayFPS.Text = "Main Display FPS:"; // // grpDisplayAverage // this.grpDisplayAverage.Controls.Add(this.udDisplayAVGTime); this.grpDisplayAverage.Controls.Add(this.lblDisplayAVGTime); this.grpDisplayAverage.Location = new System.Drawing.Point(312, 72); this.grpDisplayAverage.Name = "grpDisplayAverage"; this.grpDisplayAverage.Size = new System.Drawing.Size(120, 56); this.grpDisplayAverage.TabIndex = 38; this.grpDisplayAverage.TabStop = false; this.grpDisplayAverage.Text = "Averaging"; // // udDisplayAVGTime // this.udDisplayAVGTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayAVGTime.Location = new System.Drawing.Point(64, 24); this.udDisplayAVGTime.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayAVGTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayAVGTime.Name = "udDisplayAVGTime"; this.udDisplayAVGTime.Size = new System.Drawing.Size(48, 20); this.udDisplayAVGTime.TabIndex = 2; this.toolTip1.SetToolTip(this.udDisplayAVGTime, "When averaging, use this number of buffers to calculate the average."); this.udDisplayAVGTime.Value = new decimal(new int[] { 350, 0, 0, 0}); this.udDisplayAVGTime.ValueChanged += new System.EventHandler(this.udDisplayAVGTime_ValueChanged); this.udDisplayAVGTime.LostFocus += new System.EventHandler(this.udDisplayAVGTime_LostFocus); // // lblDisplayAVGTime // this.lblDisplayAVGTime.Image = null; this.lblDisplayAVGTime.Location = new System.Drawing.Point(8, 24); this.lblDisplayAVGTime.Name = "lblDisplayAVGTime"; this.lblDisplayAVGTime.Size = new System.Drawing.Size(64, 23); this.lblDisplayAVGTime.TabIndex = 3; this.lblDisplayAVGTime.Text = "Time (ms):"; // // grpDisplayPhase // this.grpDisplayPhase.Controls.Add(this.lblDisplayPhasePts); this.grpDisplayPhase.Controls.Add(this.udDisplayPhasePts); this.grpDisplayPhase.Location = new System.Drawing.Point(312, 8); this.grpDisplayPhase.Name = "grpDisplayPhase"; this.grpDisplayPhase.Size = new System.Drawing.Size(120, 56); this.grpDisplayPhase.TabIndex = 37; this.grpDisplayPhase.TabStop = false; this.grpDisplayPhase.Text = "Phase Mode"; // // lblDisplayPhasePts // this.lblDisplayPhasePts.Image = null; this.lblDisplayPhasePts.Location = new System.Drawing.Point(8, 24); this.lblDisplayPhasePts.Name = "lblDisplayPhasePts"; this.lblDisplayPhasePts.Size = new System.Drawing.Size(56, 23); this.lblDisplayPhasePts.TabIndex = 1; this.lblDisplayPhasePts.Text = "Num Pts:"; // // udDisplayPhasePts // this.udDisplayPhasePts.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayPhasePts.Location = new System.Drawing.Point(64, 24); this.udDisplayPhasePts.Maximum = new decimal(new int[] { 500, 0, 0, 0}); this.udDisplayPhasePts.Minimum = new decimal(new int[] { 25, 0, 0, 0}); this.udDisplayPhasePts.Name = "udDisplayPhasePts"; this.udDisplayPhasePts.Size = new System.Drawing.Size(48, 20); this.udDisplayPhasePts.TabIndex = 0; this.toolTip1.SetToolTip(this.udDisplayPhasePts, "Number of points to display in Phase Mode."); this.udDisplayPhasePts.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udDisplayPhasePts.ValueChanged += new System.EventHandler(this.udDisplayPhasePts_ValueChanged); this.udDisplayPhasePts.LostFocus += new System.EventHandler(this.udDisplayPhasePts_LostFocus); // // grpDisplaySpectrumGrid // this.grpDisplaySpectrumGrid.Controls.Add(this.comboDisplayLabelAlign); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayAlign); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridStep); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridMin); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridMax); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridStep); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridMin); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridMax); this.grpDisplaySpectrumGrid.Location = new System.Drawing.Point(8, 8); this.grpDisplaySpectrumGrid.Name = "grpDisplaySpectrumGrid"; this.grpDisplaySpectrumGrid.Size = new System.Drawing.Size(112, 128); this.grpDisplaySpectrumGrid.TabIndex = 29; this.grpDisplaySpectrumGrid.TabStop = false; this.grpDisplaySpectrumGrid.Text = "Spectrum Grid"; // // comboDisplayLabelAlign // this.comboDisplayLabelAlign.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDisplayLabelAlign.DropDownWidth = 48; this.comboDisplayLabelAlign.Items.AddRange(new object[] { "Left", "Cntr", "Right", "Auto", "Off"}); this.comboDisplayLabelAlign.Location = new System.Drawing.Point(48, 96); this.comboDisplayLabelAlign.Name = "comboDisplayLabelAlign"; this.comboDisplayLabelAlign.Size = new System.Drawing.Size(56, 21); this.comboDisplayLabelAlign.TabIndex = 30; this.toolTip1.SetToolTip(this.comboDisplayLabelAlign, "Sets the alignment of the grid callouts on the display."); this.comboDisplayLabelAlign.SelectedIndexChanged += new System.EventHandler(this.comboDisplayLabelAlign_SelectedIndexChanged); // // lblDisplayAlign // this.lblDisplayAlign.Image = null; this.lblDisplayAlign.Location = new System.Drawing.Point(8, 96); this.lblDisplayAlign.Name = "lblDisplayAlign"; this.lblDisplayAlign.Size = new System.Drawing.Size(40, 16); this.lblDisplayAlign.TabIndex = 29; this.lblDisplayAlign.Text = "Align:"; // // udDisplayGridStep // this.udDisplayGridStep.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayGridStep.Location = new System.Drawing.Point(48, 72); this.udDisplayGridStep.Maximum = new decimal(new int[] { 40, 0, 0, 0}); this.udDisplayGridStep.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayGridStep.Name = "udDisplayGridStep"; this.udDisplayGridStep.Size = new System.Drawing.Size(56, 20); this.udDisplayGridStep.TabIndex = 25; this.toolTip1.SetToolTip(this.udDisplayGridStep, "Horizontal Grid Step Size in dBm for the full screen Panadapter. Split screen mo" + "des will display a grid step size 2x greater."); this.udDisplayGridStep.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udDisplayGridStep.ValueChanged += new System.EventHandler(this.udDisplayGridStep_ValueChanged); this.udDisplayGridStep.LostFocus += new System.EventHandler(this.udDisplayGridStep_LostFocus); // // udDisplayGridMin // this.udDisplayGridMin.Increment = new decimal(new int[] { 5, 0, 0, 0}); this.udDisplayGridMin.Location = new System.Drawing.Point(48, 48); this.udDisplayGridMin.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayGridMin.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayGridMin.Name = "udDisplayGridMin"; this.udDisplayGridMin.Size = new System.Drawing.Size(56, 20); this.udDisplayGridMin.TabIndex = 24; this.toolTip1.SetToolTip(this.udDisplayGridMin, "Signal Level at bottom of display in dB."); this.udDisplayGridMin.Value = new decimal(new int[] { 150, 0, 0, -2147483648}); this.udDisplayGridMin.ValueChanged += new System.EventHandler(this.udDisplayGridMin_ValueChanged); this.udDisplayGridMin.LostFocus += new System.EventHandler(this.udDisplayGridMin_LostFocus); // // udDisplayGridMax // this.udDisplayGridMax.Increment = new decimal(new int[] { 5, 0, 0, 0}); this.udDisplayGridMax.Location = new System.Drawing.Point(48, 24); this.udDisplayGridMax.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayGridMax.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayGridMax.Name = "udDisplayGridMax"; this.udDisplayGridMax.Size = new System.Drawing.Size(56, 20); this.udDisplayGridMax.TabIndex = 23; this.toolTip1.SetToolTip(this.udDisplayGridMax, "Signal level at top of display in dB."); this.udDisplayGridMax.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDisplayGridMax.ValueChanged += new System.EventHandler(this.udDisplayGridMax_ValueChanged); this.udDisplayGridMax.LostFocus += new System.EventHandler(this.udDisplayGridMax_LostFocus); // // lblDisplayGridStep // this.lblDisplayGridStep.Image = null; this.lblDisplayGridStep.Location = new System.Drawing.Point(8, 72); this.lblDisplayGridStep.Name = "lblDisplayGridStep"; this.lblDisplayGridStep.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridStep.TabIndex = 28; this.lblDisplayGridStep.Text = "Step:"; // // lblDisplayGridMin // this.lblDisplayGridMin.Image = null; this.lblDisplayGridMin.Location = new System.Drawing.Point(8, 48); this.lblDisplayGridMin.Name = "lblDisplayGridMin"; this.lblDisplayGridMin.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridMin.TabIndex = 27; this.lblDisplayGridMin.Text = "Min:"; // // lblDisplayGridMax // this.lblDisplayGridMax.Image = null; this.lblDisplayGridMax.Location = new System.Drawing.Point(8, 24); this.lblDisplayGridMax.Name = "lblDisplayGridMax"; this.lblDisplayGridMax.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridMax.TabIndex = 26; this.lblDisplayGridMax.Text = "Max:"; // // tpDSP // this.tpDSP.Controls.Add(this.tcDSP); this.tpDSP.Location = new System.Drawing.Point(4, 22); this.tpDSP.Name = "tpDSP"; this.tpDSP.Size = new System.Drawing.Size(584, 286); this.tpDSP.TabIndex = 1; this.tpDSP.Text = "DSP"; // // tcDSP // this.tcDSP.Controls.Add(this.tpDSPOptions); this.tcDSP.Controls.Add(this.tpDSPImageReject); this.tcDSP.Controls.Add(this.tpDSPKeyer); this.tcDSP.Controls.Add(this.tpDSPAGCALC); this.tcDSP.Location = new System.Drawing.Point(0, 0); this.tcDSP.Name = "tcDSP"; this.tcDSP.SelectedIndex = 0; this.tcDSP.Size = new System.Drawing.Size(600, 344); this.tcDSP.TabIndex = 0; // // tpDSPOptions // this.tpDSPOptions.Controls.Add(this.chkDSPTXMeterPeak); this.tpDSPOptions.Controls.Add(this.grpDSPBufferSize); this.tpDSPOptions.Controls.Add(this.grpDSPNB); this.tpDSPOptions.Controls.Add(this.grpDSPLMSNR); this.tpDSPOptions.Controls.Add(this.grpDSPLMSANF); this.tpDSPOptions.Controls.Add(this.grpDSPWindow); this.tpDSPOptions.Controls.Add(this.grpDSPNB2); this.tpDSPOptions.Location = new System.Drawing.Point(4, 22); this.tpDSPOptions.Name = "tpDSPOptions"; this.tpDSPOptions.Size = new System.Drawing.Size(592, 318); this.tpDSPOptions.TabIndex = 2; this.tpDSPOptions.Text = "Options"; // // chkDSPTXMeterPeak // this.chkDSPTXMeterPeak.Checked = true; this.chkDSPTXMeterPeak.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDSPTXMeterPeak.Image = null; this.chkDSPTXMeterPeak.Location = new System.Drawing.Point(16, 144); this.chkDSPTXMeterPeak.Name = "chkDSPTXMeterPeak"; this.chkDSPTXMeterPeak.Size = new System.Drawing.Size(144, 32); this.chkDSPTXMeterPeak.TabIndex = 38; this.chkDSPTXMeterPeak.Text = "Use Peak Readings for TX Meter DSP Values"; this.chkDSPTXMeterPeak.CheckedChanged += new System.EventHandler(this.chkDSPTXMeterPeak_CheckedChanged); // // grpDSPBufferSize // this.grpDSPBufferSize.Controls.Add(this.grpDSPBufDig); this.grpDSPBufferSize.Controls.Add(this.grpDSPBufCW); this.grpDSPBufferSize.Controls.Add(this.grpDSPBufPhone); this.grpDSPBufferSize.Location = new System.Drawing.Point(256, 8); this.grpDSPBufferSize.Name = "grpDSPBufferSize"; this.grpDSPBufferSize.Size = new System.Drawing.Size(120, 248); this.grpDSPBufferSize.TabIndex = 37; this.grpDSPBufferSize.TabStop = false; this.grpDSPBufferSize.Text = "Buffer Size"; // // grpDSPBufDig // this.grpDSPBufDig.Controls.Add(this.comboDSPDigTXBuf); this.grpDSPBufDig.Controls.Add(this.lblDSPDigBufferRX); this.grpDSPBufDig.Controls.Add(this.comboDSPDigRXBuf); this.grpDSPBufDig.Controls.Add(this.lblDSPDigBufferTX); this.grpDSPBufDig.Location = new System.Drawing.Point(8, 160); this.grpDSPBufDig.Name = "grpDSPBufDig"; this.grpDSPBufDig.Size = new System.Drawing.Size(104, 72); this.grpDSPBufDig.TabIndex = 41; this.grpDSPBufDig.TabStop = false; this.grpDSPBufDig.Text = "Digital"; // // comboDSPDigTXBuf // this.comboDSPDigTXBuf.DisplayMember = "2048"; this.comboDSPDigTXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPDigTXBuf.DropDownWidth = 64; this.comboDSPDigTXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPDigTXBuf.Location = new System.Drawing.Point(32, 48); this.comboDSPDigTXBuf.Name = "comboDSPDigTXBuf"; this.comboDSPDigTXBuf.Size = new System.Drawing.Size(64, 21); this.comboDSPDigTXBuf.TabIndex = 20; this.toolTip1.SetToolTip(this.comboDSPDigTXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPDigTXBuf.ValueMember = "1024"; this.comboDSPDigTXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPDigTXBuf_SelectedIndexChanged); // // lblDSPDigBufferRX // this.lblDSPDigBufferRX.Image = null; this.lblDSPDigBufferRX.Location = new System.Drawing.Point(8, 24); this.lblDSPDigBufferRX.Name = "lblDSPDigBufferRX"; this.lblDSPDigBufferRX.Size = new System.Drawing.Size(24, 16); this.lblDSPDigBufferRX.TabIndex = 19; this.lblDSPDigBufferRX.Text = "RX:"; // // comboDSPDigRXBuf // this.comboDSPDigRXBuf.DisplayMember = "2048"; this.comboDSPDigRXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPDigRXBuf.DropDownWidth = 64; this.comboDSPDigRXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPDigRXBuf.Location = new System.Drawing.Point(32, 24); this.comboDSPDigRXBuf.Name = "comboDSPDigRXBuf"; this.comboDSPDigRXBuf.Size = new System.Drawing.Size(64, 21); this.comboDSPDigRXBuf.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPDigRXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPDigRXBuf.ValueMember = "1024"; this.comboDSPDigRXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPDigRXBuf_SelectedIndexChanged); // // lblDSPDigBufferTX // this.lblDSPDigBufferTX.Image = null; this.lblDSPDigBufferTX.Location = new System.Drawing.Point(8, 48); this.lblDSPDigBufferTX.Name = "lblDSPDigBufferTX"; this.lblDSPDigBufferTX.Size = new System.Drawing.Size(24, 16); this.lblDSPDigBufferTX.TabIndex = 21; this.lblDSPDigBufferTX.Text = "TX:"; // // grpDSPBufCW // this.grpDSPBufCW.Controls.Add(this.comboDSPCWTXBuf); this.grpDSPBufCW.Controls.Add(this.lblDSPCWBufferRX); this.grpDSPBufCW.Controls.Add(this.comboDSPCWRXBuf); this.grpDSPBufCW.Location = new System.Drawing.Point(8, 88); this.grpDSPBufCW.Name = "grpDSPBufCW"; this.grpDSPBufCW.Size = new System.Drawing.Size(104, 72); this.grpDSPBufCW.TabIndex = 40; this.grpDSPBufCW.TabStop = false; this.grpDSPBufCW.Text = "CW"; // // comboDSPCWTXBuf // this.comboDSPCWTXBuf.DisplayMember = "2048"; this.comboDSPCWTXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPCWTXBuf.DropDownWidth = 64; this.comboDSPCWTXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048"}); this.comboDSPCWTXBuf.Location = new System.Drawing.Point(32, 48); this.comboDSPCWTXBuf.Name = "comboDSPCWTXBuf"; this.comboDSPCWTXBuf.Size = new System.Drawing.Size(64, 21); this.comboDSPCWTXBuf.TabIndex = 20; this.toolTip1.SetToolTip(this.comboDSPCWTXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPCWTXBuf.ValueMember = "512"; this.comboDSPCWTXBuf.Visible = false; this.comboDSPCWTXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPCWTXBuf_SelectedIndexChanged); // // lblDSPCWBufferRX // this.lblDSPCWBufferRX.Image = null; this.lblDSPCWBufferRX.Location = new System.Drawing.Point(8, 24); this.lblDSPCWBufferRX.Name = "lblDSPCWBufferRX"; this.lblDSPCWBufferRX.Size = new System.Drawing.Size(24, 16); this.lblDSPCWBufferRX.TabIndex = 19; this.lblDSPCWBufferRX.Text = "RX:"; // // comboDSPCWRXBuf // this.comboDSPCWRXBuf.DisplayMember = "2048"; this.comboDSPCWRXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPCWRXBuf.DropDownWidth = 64; this.comboDSPCWRXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPCWRXBuf.Location = new System.Drawing.Point(32, 24); this.comboDSPCWRXBuf.Name = "comboDSPCWRXBuf"; this.comboDSPCWRXBuf.Size = new System.Drawing.Size(64, 21); this.comboDSPCWRXBuf.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPCWRXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPCWRXBuf.ValueMember = "1024"; this.comboDSPCWRXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPCWRXBuf_SelectedIndexChanged); // // grpDSPBufPhone // this.grpDSPBufPhone.Controls.Add(this.comboDSPPhoneTXBuf); this.grpDSPBufPhone.Controls.Add(this.lblDSPPhoneBufferRX); this.grpDSPBufPhone.Controls.Add(this.comboDSPPhoneRXBuf); this.grpDSPBufPhone.Controls.Add(this.lblDSPPhoneBufferTX); this.grpDSPBufPhone.Location = new System.Drawing.Point(8, 16); this.grpDSPBufPhone.Name = "grpDSPBufPhone"; this.grpDSPBufPhone.Size = new System.Drawing.Size(104, 72); this.grpDSPBufPhone.TabIndex = 39; this.grpDSPBufPhone.TabStop = false; this.grpDSPBufPhone.Text = "Phone"; // // comboDSPPhoneTXBuf // this.comboDSPPhoneTXBuf.DisplayMember = "2048"; this.comboDSPPhoneTXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPPhoneTXBuf.DropDownWidth = 64; this.comboDSPPhoneTXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPPhoneTXBuf.Location = new System.Drawing.Point(32, 48); this.comboDSPPhoneTXBuf.Name = "comboDSPPhoneTXBuf"; this.comboDSPPhoneTXBuf.Size = new System.Drawing.Size(64, 21); this.comboDSPPhoneTXBuf.TabIndex = 20; this.toolTip1.SetToolTip(this.comboDSPPhoneTXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPPhoneTXBuf.ValueMember = "1024"; this.comboDSPPhoneTXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPPhoneTXBuf_SelectedIndexChanged); // // lblDSPPhoneBufferRX // this.lblDSPPhoneBufferRX.Image = null; this.lblDSPPhoneBufferRX.Location = new System.Drawing.Point(8, 24); this.lblDSPPhoneBufferRX.Name = "lblDSPPhoneBufferRX"; this.lblDSPPhoneBufferRX.Size = new System.Drawing.Size(24, 16); this.lblDSPPhoneBufferRX.TabIndex = 19; this.lblDSPPhoneBufferRX.Text = "RX:"; // // comboDSPPhoneRXBuf // this.comboDSPPhoneRXBuf.DisplayMember = "2048"; this.comboDSPPhoneRXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPPhoneRXBuf.DropDownWidth = 64; this.comboDSPPhoneRXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPPhoneRXBuf.Location = new System.Drawing.Point(32, 24); this.comboDSPPhoneRXBuf.Name = "comboDSPPhoneRXBuf"; this.comboDSPPhoneRXBuf.Size = new System.Drawing.Size(64, 21); this.comboDSPPhoneRXBuf.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPPhoneRXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPPhoneRXBuf.ValueMember = "1024"; this.comboDSPPhoneRXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPPhoneRXBuf_SelectedIndexChanged); // // lblDSPPhoneBufferTX // this.lblDSPPhoneBufferTX.Image = null; this.lblDSPPhoneBufferTX.Location = new System.Drawing.Point(8, 48); this.lblDSPPhoneBufferTX.Name = "lblDSPPhoneBufferTX"; this.lblDSPPhoneBufferTX.Size = new System.Drawing.Size(24, 16); this.lblDSPPhoneBufferTX.TabIndex = 21; this.lblDSPPhoneBufferTX.Text = "TX:"; // // grpDSPNB // this.grpDSPNB.Controls.Add(this.udDSPNB); this.grpDSPNB.Controls.Add(this.lblDSPNBThreshold); this.grpDSPNB.Location = new System.Drawing.Point(384, 8); this.grpDSPNB.Name = "grpDSPNB"; this.grpDSPNB.Size = new System.Drawing.Size(120, 56); this.grpDSPNB.TabIndex = 35; this.grpDSPNB.TabStop = false; this.grpDSPNB.Text = "Noise Blanker"; // // udDSPNB // this.udDSPNB.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB.Location = new System.Drawing.Point(64, 24); this.udDSPNB.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDSPNB.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB.Name = "udDSPNB"; this.udDSPNB.Size = new System.Drawing.Size(40, 20); this.udDSPNB.TabIndex = 0; this.toolTip1.SetToolTip(this.udDSPNB, "Controls the detection threshold for impulse noise. "); this.udDSPNB.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udDSPNB.ValueChanged += new System.EventHandler(this.udDSPNB_ValueChanged); this.udDSPNB.LostFocus += new System.EventHandler(this.udDSPNB_LostFocus); // // lblDSPNBThreshold // this.lblDSPNBThreshold.Image = null; this.lblDSPNBThreshold.Location = new System.Drawing.Point(8, 24); this.lblDSPNBThreshold.Name = "lblDSPNBThreshold"; this.lblDSPNBThreshold.Size = new System.Drawing.Size(64, 16); this.lblDSPNBThreshold.TabIndex = 9; this.lblDSPNBThreshold.Text = "Threshold:"; // // grpDSPLMSNR // this.grpDSPLMSNR.Controls.Add(this.udLMSNRLeak); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRLeak); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRgain); this.grpDSPLMSNR.Controls.Add(this.udLMSNRgain); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRdelay); this.grpDSPLMSNR.Controls.Add(this.udLMSNRtaps); this.grpDSPLMSNR.Controls.Add(this.udLMSNRdelay); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRtaps); this.grpDSPLMSNR.Location = new System.Drawing.Point(8, 8); this.grpDSPLMSNR.Name = "grpDSPLMSNR"; this.grpDSPLMSNR.Size = new System.Drawing.Size(112, 128); this.grpDSPLMSNR.TabIndex = 33; this.grpDSPLMSNR.TabStop = false; this.grpDSPLMSNR.Text = "NR"; // // udLMSNRLeak // this.udLMSNRLeak.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRLeak.Location = new System.Drawing.Point(56, 96); this.udLMSNRLeak.Maximum = new decimal(new int[] { 100000, 0, 0, 0}); this.udLMSNRLeak.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRLeak.Name = "udLMSNRLeak"; this.udLMSNRLeak.Size = new System.Drawing.Size(48, 20); this.udLMSNRLeak.TabIndex = 10; this.toolTip1.SetToolTip(this.udLMSNRLeak, "Keeps the filter within a reasonable range once converged"); this.udLMSNRLeak.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udLMSNRLeak.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); // // lblLMSNRLeak // this.lblLMSNRLeak.Image = null; this.lblLMSNRLeak.Location = new System.Drawing.Point(8, 96); this.lblLMSNRLeak.Name = "lblLMSNRLeak"; this.lblLMSNRLeak.Size = new System.Drawing.Size(40, 16); this.lblLMSNRLeak.TabIndex = 11; this.lblLMSNRLeak.Text = "Leak:"; // // lblLMSNRgain // this.lblLMSNRgain.Image = null; this.lblLMSNRgain.Location = new System.Drawing.Point(8, 48); this.lblLMSNRgain.Name = "lblLMSNRgain"; this.lblLMSNRgain.Size = new System.Drawing.Size(40, 16); this.lblLMSNRgain.TabIndex = 9; this.lblLMSNRgain.Text = "Gain:"; // // udLMSNRgain // this.udLMSNRgain.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRgain.Location = new System.Drawing.Point(56, 48); this.udLMSNRgain.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udLMSNRgain.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRgain.Name = "udLMSNRgain"; this.udLMSNRgain.Size = new System.Drawing.Size(48, 20); this.udLMSNRgain.TabIndex = 7; this.toolTip1.SetToolTip(this.udLMSNRgain, "Determines the adaptation rate of the filter."); this.udLMSNRgain.Value = new decimal(new int[] { 16, 0, 0, 0}); this.udLMSNRgain.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); this.udLMSNRgain.LostFocus += new System.EventHandler(this.udLMSNRgain_LostFocus); // // lblLMSNRdelay // this.lblLMSNRdelay.Image = null; this.lblLMSNRdelay.Location = new System.Drawing.Point(8, 72); this.lblLMSNRdelay.Name = "lblLMSNRdelay"; this.lblLMSNRdelay.Size = new System.Drawing.Size(40, 16); this.lblLMSNRdelay.TabIndex = 5; this.lblLMSNRdelay.Text = "Delay:"; // // udLMSNRtaps // this.udLMSNRtaps.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRtaps.Location = new System.Drawing.Point(56, 24); this.udLMSNRtaps.Maximum = new decimal(new int[] { 128, 0, 0, 0}); this.udLMSNRtaps.Minimum = new decimal(new int[] { 31, 0, 0, 0}); this.udLMSNRtaps.Name = "udLMSNRtaps"; this.udLMSNRtaps.Size = new System.Drawing.Size(48, 20); this.udLMSNRtaps.TabIndex = 5; this.toolTip1.SetToolTip(this.udLMSNRtaps, "Determines the length of the NR computed filter. "); this.udLMSNRtaps.Value = new decimal(new int[] { 40, 0, 0, 0}); this.udLMSNRtaps.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); this.udLMSNRtaps.LostFocus += new System.EventHandler(this.udLMSNRtaps_LostFocus); // // udLMSNRdelay // this.udLMSNRdelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRdelay.Location = new System.Drawing.Point(56, 72); this.udLMSNRdelay.Maximum = new decimal(new int[] { 126, 0, 0, 0}); this.udLMSNRdelay.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRdelay.Name = "udLMSNRdelay"; this.udLMSNRdelay.Size = new System.Drawing.Size(48, 20); this.udLMSNRdelay.TabIndex = 6; this.toolTip1.SetToolTip(this.udLMSNRdelay, "Determines how far back you look in the signal before you begin to compute a cohe" + "rent signal enhancement filter. "); this.udLMSNRdelay.Value = new decimal(new int[] { 30, 0, 0, 0}); this.udLMSNRdelay.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); this.udLMSNRdelay.LostFocus += new System.EventHandler(this.udLMSNRdelay_LostFocus); // // lblLMSNRtaps // this.lblLMSNRtaps.Image = null; this.lblLMSNRtaps.Location = new System.Drawing.Point(8, 24); this.lblLMSNRtaps.Name = "lblLMSNRtaps"; this.lblLMSNRtaps.Size = new System.Drawing.Size(40, 16); this.lblLMSNRtaps.TabIndex = 3; this.lblLMSNRtaps.Text = "Taps:"; // // grpDSPLMSANF // this.grpDSPLMSANF.Controls.Add(this.udLMSANFLeak); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFLeak); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFgain); this.grpDSPLMSANF.Controls.Add(this.udLMSANFgain); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFdelay); this.grpDSPLMSANF.Controls.Add(this.udLMSANFdelay); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFTaps); this.grpDSPLMSANF.Controls.Add(this.udLMSANFtaps); this.grpDSPLMSANF.Location = new System.Drawing.Point(128, 8); this.grpDSPLMSANF.Name = "grpDSPLMSANF"; this.grpDSPLMSANF.Size = new System.Drawing.Size(120, 128); this.grpDSPLMSANF.TabIndex = 32; this.grpDSPLMSANF.TabStop = false; this.grpDSPLMSANF.Text = "ANF"; // // udLMSANFLeak // this.udLMSANFLeak.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFLeak.Location = new System.Drawing.Point(56, 96); this.udLMSANFLeak.Maximum = new decimal(new int[] { 100000, 0, 0, 0}); this.udLMSANFLeak.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFLeak.Name = "udLMSANFLeak"; this.udLMSANFLeak.Size = new System.Drawing.Size(48, 20); this.udLMSANFLeak.TabIndex = 8; this.toolTip1.SetToolTip(this.udLMSANFLeak, "Keeps the filter within a reasonable range once converged"); this.udLMSANFLeak.Value = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFLeak.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); // // lblLMSANFLeak // this.lblLMSANFLeak.Image = null; this.lblLMSANFLeak.Location = new System.Drawing.Point(8, 96); this.lblLMSANFLeak.Name = "lblLMSANFLeak"; this.lblLMSANFLeak.Size = new System.Drawing.Size(40, 16); this.lblLMSANFLeak.TabIndex = 9; this.lblLMSANFLeak.Text = "Leak:"; // // lblLMSANFgain // this.lblLMSANFgain.Image = null; this.lblLMSANFgain.Location = new System.Drawing.Point(8, 48); this.lblLMSANFgain.Name = "lblLMSANFgain"; this.lblLMSANFgain.Size = new System.Drawing.Size(40, 16); this.lblLMSANFgain.TabIndex = 6; this.lblLMSANFgain.Text = "Gain:"; // // udLMSANFgain // this.udLMSANFgain.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFgain.Location = new System.Drawing.Point(56, 48); this.udLMSANFgain.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udLMSANFgain.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFgain.Name = "udLMSANFgain"; this.udLMSANFgain.Size = new System.Drawing.Size(48, 20); this.udLMSANFgain.TabIndex = 3; this.toolTip1.SetToolTip(this.udLMSANFgain, "Determines the adaptation rate of the filter."); this.udLMSANFgain.Value = new decimal(new int[] { 25, 0, 0, 0}); this.udLMSANFgain.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); this.udLMSANFgain.LostFocus += new System.EventHandler(this.udLMSANFgain_LostFocus); // // lblLMSANFdelay // this.lblLMSANFdelay.Image = null; this.lblLMSANFdelay.Location = new System.Drawing.Point(8, 72); this.lblLMSANFdelay.Name = "lblLMSANFdelay"; this.lblLMSANFdelay.Size = new System.Drawing.Size(40, 16); this.lblLMSANFdelay.TabIndex = 4; this.lblLMSANFdelay.Text = "Delay:"; // // udLMSANFdelay // this.udLMSANFdelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFdelay.Location = new System.Drawing.Point(56, 72); this.udLMSANFdelay.Maximum = new decimal(new int[] { 126, 0, 0, 0}); this.udLMSANFdelay.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFdelay.Name = "udLMSANFdelay"; this.udLMSANFdelay.Size = new System.Drawing.Size(48, 20); this.udLMSANFdelay.TabIndex = 2; this.toolTip1.SetToolTip(this.udLMSANFdelay, "Determines how far back you look in the signal before you begin to compute a canc" + "ellation filter"); this.udLMSANFdelay.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udLMSANFdelay.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); this.udLMSANFdelay.LostFocus += new System.EventHandler(this.udLMSANFdelay_LostFocus); // // lblLMSANFTaps // this.lblLMSANFTaps.Image = null; this.lblLMSANFTaps.Location = new System.Drawing.Point(8, 24); this.lblLMSANFTaps.Name = "lblLMSANFTaps"; this.lblLMSANFTaps.Size = new System.Drawing.Size(40, 16); this.lblLMSANFTaps.TabIndex = 2; this.lblLMSANFTaps.Text = "Taps:"; // // udLMSANFtaps // this.udLMSANFtaps.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFtaps.Location = new System.Drawing.Point(56, 24); this.udLMSANFtaps.Maximum = new decimal(new int[] { 128, 0, 0, 0}); this.udLMSANFtaps.Minimum = new decimal(new int[] { 31, 0, 0, 0}); this.udLMSANFtaps.Name = "udLMSANFtaps"; this.udLMSANFtaps.Size = new System.Drawing.Size(48, 20); this.udLMSANFtaps.TabIndex = 1; this.toolTip1.SetToolTip(this.udLMSANFtaps, "Determines the length of the computed notch filter."); this.udLMSANFtaps.Value = new decimal(new int[] { 68, 0, 0, 0}); this.udLMSANFtaps.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); this.udLMSANFtaps.LostFocus += new System.EventHandler(this.udLMSANFtaps_LostFocus); // // grpDSPWindow // this.grpDSPWindow.Controls.Add(this.comboDSPWindow); this.grpDSPWindow.Location = new System.Drawing.Point(384, 136); this.grpDSPWindow.Name = "grpDSPWindow"; this.grpDSPWindow.Size = new System.Drawing.Size(120, 56); this.grpDSPWindow.TabIndex = 36; this.grpDSPWindow.TabStop = false; this.grpDSPWindow.Text = "Window"; // // comboDSPWindow // this.comboDSPWindow.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPWindow.DropDownWidth = 88; this.comboDSPWindow.Location = new System.Drawing.Point(16, 24); this.comboDSPWindow.Name = "comboDSPWindow"; this.comboDSPWindow.Size = new System.Drawing.Size(88, 21); this.comboDSPWindow.TabIndex = 0; this.toolTip1.SetToolTip(this.comboDSPWindow, "Selects the DSP windowing function that will be applied to the power spectrum in " + "the main display when in Spectrum, Panadapter, and Waterfall modes. "); this.comboDSPWindow.SelectedIndexChanged += new System.EventHandler(this.comboDSPWindow_SelectedIndexChanged); // // grpDSPNB2 // this.grpDSPNB2.Controls.Add(this.udDSPNB2); this.grpDSPNB2.Controls.Add(this.lblDSPNB2Threshold); this.grpDSPNB2.Location = new System.Drawing.Point(384, 72); this.grpDSPNB2.Name = "grpDSPNB2"; this.grpDSPNB2.Size = new System.Drawing.Size(120, 56); this.grpDSPNB2.TabIndex = 34; this.grpDSPNB2.TabStop = false; this.grpDSPNB2.Text = "Noise Blanker 2"; // // udDSPNB2 // this.udDSPNB2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB2.Location = new System.Drawing.Point(64, 24); this.udDSPNB2.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udDSPNB2.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB2.Name = "udDSPNB2"; this.udDSPNB2.Size = new System.Drawing.Size(40, 20); this.udDSPNB2.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPNB2, "Controls the detection threshold for a pulse. "); this.udDSPNB2.Value = new decimal(new int[] { 15, 0, 0, 0}); this.udDSPNB2.ValueChanged += new System.EventHandler(this.udDSPNB2_ValueChanged); this.udDSPNB2.LostFocus += new System.EventHandler(this.udDSPNB2_LostFocus); // // lblDSPNB2Threshold // this.lblDSPNB2Threshold.Image = null; this.lblDSPNB2Threshold.Location = new System.Drawing.Point(8, 24); this.lblDSPNB2Threshold.Name = "lblDSPNB2Threshold"; this.lblDSPNB2Threshold.Size = new System.Drawing.Size(64, 16); this.lblDSPNB2Threshold.TabIndex = 10; this.lblDSPNB2Threshold.Text = "Threshold:"; // // tpDSPImageReject // this.tpDSPImageReject.Controls.Add(this.chkDSPImageExpert); this.tpDSPImageReject.Controls.Add(this.grpDSPImageRejectTX); this.tpDSPImageReject.Location = new System.Drawing.Point(4, 22); this.tpDSPImageReject.Name = "tpDSPImageReject"; this.tpDSPImageReject.Size = new System.Drawing.Size(592, 318); this.tpDSPImageReject.TabIndex = 1; this.tpDSPImageReject.Text = "Image Reject"; // // chkDSPImageExpert // this.chkDSPImageExpert.Location = new System.Drawing.Point(3, 193); this.chkDSPImageExpert.Name = "chkDSPImageExpert"; this.chkDSPImageExpert.Size = new System.Drawing.Size(56, 24); this.chkDSPImageExpert.TabIndex = 35; this.chkDSPImageExpert.Text = "Expert"; this.chkDSPImageExpert.CheckedChanged += new System.EventHandler(this.chkDSPImageExpert_CheckedChanged); // // grpDSPImageRejectTX // this.grpDSPImageRejectTX.Controls.Add(this.checkboxTXImagCal); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPGainValTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPPhaseValTX); this.grpDSPImageRejectTX.Controls.Add(this.udDSPImageGainTX); this.grpDSPImageRejectTX.Controls.Add(this.udDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPImageGainTX); this.grpDSPImageRejectTX.Controls.Add(this.tbDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.tbDSPImageGainTX); this.grpDSPImageRejectTX.Location = new System.Drawing.Point(3, 3); this.grpDSPImageRejectTX.Name = "grpDSPImageRejectTX"; this.grpDSPImageRejectTX.Size = new System.Drawing.Size(240, 184); this.grpDSPImageRejectTX.TabIndex = 33; this.grpDSPImageRejectTX.TabStop = false; this.grpDSPImageRejectTX.Text = "Transmit Rejection"; // // checkboxTXImagCal // this.checkboxTXImagCal.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkboxTXImagCal.Image = null; this.checkboxTXImagCal.Location = new System.Drawing.Point(48, 144); this.checkboxTXImagCal.Name = "checkboxTXImagCal"; this.checkboxTXImagCal.Size = new System.Drawing.Size(144, 16); this.checkboxTXImagCal.TabIndex = 37; this.checkboxTXImagCal.Text = "Enable TX Image Tone"; this.toolTip1.SetToolTip(this.checkboxTXImagCal, "Check this box while in MOX on USB to calibrate the Transmit Rejection using the " + "controls above."); this.checkboxTXImagCal.CheckedChanged += new System.EventHandler(this.chkTXImagCal_CheckedChanged); // // lblDSPGainValTX // this.lblDSPGainValTX.Image = null; this.lblDSPGainValTX.Location = new System.Drawing.Point(72, 104); this.lblDSPGainValTX.Name = "lblDSPGainValTX"; this.lblDSPGainValTX.Size = new System.Drawing.Size(163, 16); this.lblDSPGainValTX.TabIndex = 15; this.lblDSPGainValTX.Text = "-500 -250 0 250 500"; // // lblDSPPhaseValTX // this.lblDSPPhaseValTX.Image = null; this.lblDSPPhaseValTX.Location = new System.Drawing.Point(72, 56); this.lblDSPPhaseValTX.Name = "lblDSPPhaseValTX"; this.lblDSPPhaseValTX.Size = new System.Drawing.Size(163, 16); this.lblDSPPhaseValTX.TabIndex = 14; this.lblDSPPhaseValTX.Text = "-400 -200 0 200 400"; // // udDSPImageGainTX // this.udDSPImageGainTX.DecimalPlaces = 2; this.udDSPImageGainTX.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImageGainTX.Location = new System.Drawing.Point(16, 88); this.udDSPImageGainTX.Maximum = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPImageGainTX.Minimum = new decimal(new int[] { 500, 0, 0, -2147483648}); this.udDSPImageGainTX.Name = "udDSPImageGainTX"; this.udDSPImageGainTX.Size = new System.Drawing.Size(56, 20); this.udDSPImageGainTX.TabIndex = 8; this.toolTip1.SetToolTip(this.udDSPImageGainTX, "Sets the amplitude/gain offset between the I and Q channels. "); this.udDSPImageGainTX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPImageGainTX.ValueChanged += new System.EventHandler(this.udDSPImageGainTX_ValueChanged); this.udDSPImageGainTX.LostFocus += new System.EventHandler(this.udDSPImageGainTX_LostFocus); // // udDSPImagePhaseTX // this.udDSPImagePhaseTX.DecimalPlaces = 2; this.udDSPImagePhaseTX.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImagePhaseTX.Location = new System.Drawing.Point(16, 40); this.udDSPImagePhaseTX.Maximum = new decimal(new int[] { 400, 0, 0, 0}); this.udDSPImagePhaseTX.Minimum = new decimal(new int[] { 400, 0, 0, -2147483648}); this.udDSPImagePhaseTX.Name = "udDSPImagePhaseTX"; this.udDSPImagePhaseTX.Size = new System.Drawing.Size(56, 20); this.udDSPImagePhaseTX.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPImagePhaseTX, "Sets the phase offset between the I and Q channels. "); this.udDSPImagePhaseTX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPImagePhaseTX.ValueChanged += new System.EventHandler(this.udDSPImagePhaseTX_ValueChanged); this.udDSPImagePhaseTX.LostFocus += new System.EventHandler(this.udDSPImagePhaseTX_LostFocus); // // lblDSPImageGainTX // this.lblDSPImageGainTX.Image = null; this.lblDSPImageGainTX.Location = new System.Drawing.Point(16, 72); this.lblDSPImageGainTX.Name = "lblDSPImageGainTX"; this.lblDSPImageGainTX.Size = new System.Drawing.Size(48, 16); this.lblDSPImageGainTX.TabIndex = 6; this.lblDSPImageGainTX.Text = "Gain:"; // // tbDSPImagePhaseTX // this.tbDSPImagePhaseTX.LargeChange = 1; this.tbDSPImagePhaseTX.Location = new System.Drawing.Point(72, 24); this.tbDSPImagePhaseTX.Maximum = 400; this.tbDSPImagePhaseTX.Minimum = -400; this.tbDSPImagePhaseTX.Name = "tbDSPImagePhaseTX"; this.tbDSPImagePhaseTX.Size = new System.Drawing.Size(160, 42); this.tbDSPImagePhaseTX.TabIndex = 3; this.tbDSPImagePhaseTX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImagePhaseTX, "Sets the phase offset between the I and Q channels. "); this.tbDSPImagePhaseTX.Scroll += new System.EventHandler(this.tbDSPImagePhaseTX_Scroll); // // lblDSPImagePhaseTX // this.lblDSPImagePhaseTX.Image = null; this.lblDSPImagePhaseTX.Location = new System.Drawing.Point(16, 24); this.lblDSPImagePhaseTX.Name = "lblDSPImagePhaseTX"; this.lblDSPImagePhaseTX.Size = new System.Drawing.Size(48, 16); this.lblDSPImagePhaseTX.TabIndex = 5; this.lblDSPImagePhaseTX.Text = "Phase:"; // // tbDSPImageGainTX // this.tbDSPImageGainTX.LargeChange = 1; this.tbDSPImageGainTX.Location = new System.Drawing.Point(72, 72); this.tbDSPImageGainTX.Maximum = 500; this.tbDSPImageGainTX.Minimum = -500; this.tbDSPImageGainTX.Name = "tbDSPImageGainTX"; this.tbDSPImageGainTX.Size = new System.Drawing.Size(160, 42); this.tbDSPImageGainTX.TabIndex = 4; this.tbDSPImageGainTX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImageGainTX, "Sets the amplitude/gain offset between the I and Q channels. "); this.tbDSPImageGainTX.Scroll += new System.EventHandler(this.tbDSPImageGainTX_Scroll); // // tpDSPKeyer // this.tpDSPKeyer.Controls.Add(this.chkCWDisableUI); this.tpDSPKeyer.Controls.Add(this.grpKeyerConnections); this.tpDSPKeyer.Controls.Add(this.grpDSPCWPitch); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerOptions); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerSignalShaping); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerSemiBreakIn); this.tpDSPKeyer.Location = new System.Drawing.Point(4, 22); this.tpDSPKeyer.Name = "tpDSPKeyer"; this.tpDSPKeyer.Size = new System.Drawing.Size(592, 318); this.tpDSPKeyer.TabIndex = 0; this.tpDSPKeyer.Text = "Keyer"; // // chkCWDisableUI // this.chkCWDisableUI.Checked = true; this.chkCWDisableUI.CheckState = System.Windows.Forms.CheckState.Checked; this.chkCWDisableUI.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWDisableUI.Image = null; this.chkCWDisableUI.Location = new System.Drawing.Point(161, 152); this.chkCWDisableUI.Name = "chkCWDisableUI"; this.chkCWDisableUI.Size = new System.Drawing.Size(109, 32); this.chkCWDisableUI.TabIndex = 42; this.chkCWDisableUI.Text = "Disable UI MOX Changes"; this.toolTip1.SetToolTip(this.chkCWDisableUI, "If enabled, will automatically switch to CW mode when paddles are used no matter " + "the current mode "); this.chkCWDisableUI.CheckedChanged += new System.EventHandler(this.chkCWDisableUI_CheckedChanged); // // grpKeyerConnections // this.grpKeyerConnections.Controls.Add(this.comboKeyerConnKeyLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnSecondary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnSecondary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnKeyLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnPTTLine); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnPrimary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnPTTLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnPrimary); this.grpKeyerConnections.Location = new System.Drawing.Point(112, 8); this.grpKeyerConnections.Name = "grpKeyerConnections"; this.grpKeyerConnections.Size = new System.Drawing.Size(176, 128); this.grpKeyerConnections.TabIndex = 40; this.grpKeyerConnections.TabStop = false; this.grpKeyerConnections.Text = "Connections"; // // comboKeyerConnKeyLine // this.comboKeyerConnKeyLine.DisplayMember = "None"; this.comboKeyerConnKeyLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnKeyLine.DropDownWidth = 64; this.comboKeyerConnKeyLine.Items.AddRange(new object[] { "None", "DTR", "RTS"}); this.comboKeyerConnKeyLine.Location = new System.Drawing.Point(104, 96); this.comboKeyerConnKeyLine.Name = "comboKeyerConnKeyLine"; this.comboKeyerConnKeyLine.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnKeyLine.TabIndex = 51; this.toolTip1.SetToolTip(this.comboKeyerConnKeyLine, "Sets the COM port line that triggers the tone on the Keyer Port selected above."); this.comboKeyerConnKeyLine.ValueMember = "None"; this.comboKeyerConnKeyLine.Visible = false; this.comboKeyerConnKeyLine.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnKeyLine_SelectedIndexChanged); // // comboKeyerConnSecondary // this.comboKeyerConnSecondary.DisplayMember = "None"; this.comboKeyerConnSecondary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnSecondary.DropDownWidth = 64; this.comboKeyerConnSecondary.Items.AddRange(new object[] { "None"}); this.comboKeyerConnSecondary.Location = new System.Drawing.Point(104, 48); this.comboKeyerConnSecondary.Name = "comboKeyerConnSecondary"; this.comboKeyerConnSecondary.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnSecondary.TabIndex = 53; this.toolTip1.SetToolTip(this.comboKeyerConnSecondary, "Sets Keyer Input COM port. This can be an external keyer or a virtual COM port b" + "eing driven by a third party program."); this.comboKeyerConnSecondary.ValueMember = "None"; this.comboKeyerConnSecondary.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnSecondary_SelectedIndexChanged); // // lblKeyerConnSecondary // this.lblKeyerConnSecondary.Image = null; this.lblKeyerConnSecondary.Location = new System.Drawing.Point(16, 48); this.lblKeyerConnSecondary.Name = "lblKeyerConnSecondary"; this.lblKeyerConnSecondary.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnSecondary.TabIndex = 52; this.lblKeyerConnSecondary.Text = "Secondary:"; // // lblKeyerConnKeyLine // this.lblKeyerConnKeyLine.Image = null; this.lblKeyerConnKeyLine.Location = new System.Drawing.Point(16, 96); this.lblKeyerConnKeyLine.Name = "lblKeyerConnKeyLine"; this.lblKeyerConnKeyLine.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnKeyLine.TabIndex = 50; this.lblKeyerConnKeyLine.Text = "Key Line:"; this.lblKeyerConnKeyLine.Visible = false; // // comboKeyerConnPTTLine // this.comboKeyerConnPTTLine.DisplayMember = "None"; this.comboKeyerConnPTTLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnPTTLine.DropDownWidth = 64; this.comboKeyerConnPTTLine.Items.AddRange(new object[] { "None", "DTR", "RTS"}); this.comboKeyerConnPTTLine.Location = new System.Drawing.Point(104, 72); this.comboKeyerConnPTTLine.Name = "comboKeyerConnPTTLine"; this.comboKeyerConnPTTLine.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnPTTLine.TabIndex = 49; this.toolTip1.SetToolTip(this.comboKeyerConnPTTLine, "Sets the line on the Keyer Port above that triggers PTT."); this.comboKeyerConnPTTLine.ValueMember = "None"; this.comboKeyerConnPTTLine.Visible = false; this.comboKeyerConnPTTLine.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnPTTLine_SelectedIndexChanged); // // lblKeyerConnPrimary // this.lblKeyerConnPrimary.Image = null; this.lblKeyerConnPrimary.Location = new System.Drawing.Point(16, 24); this.lblKeyerConnPrimary.Name = "lblKeyerConnPrimary"; this.lblKeyerConnPrimary.Size = new System.Drawing.Size(88, 16); this.lblKeyerConnPrimary.TabIndex = 41; this.lblKeyerConnPrimary.Text = "Primary:"; // // lblKeyerConnPTTLine // this.lblKeyerConnPTTLine.Image = null; this.lblKeyerConnPTTLine.Location = new System.Drawing.Point(16, 72); this.lblKeyerConnPTTLine.Name = "lblKeyerConnPTTLine"; this.lblKeyerConnPTTLine.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnPTTLine.TabIndex = 48; this.lblKeyerConnPTTLine.Text = "PTT Line:"; this.lblKeyerConnPTTLine.Visible = false; // // comboKeyerConnPrimary // this.comboKeyerConnPrimary.DisplayMember = "LPT"; this.comboKeyerConnPrimary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnPrimary.DropDownWidth = 64; this.comboKeyerConnPrimary.Items.AddRange(new object[] { "5000"}); this.comboKeyerConnPrimary.Location = new System.Drawing.Point(104, 24); this.comboKeyerConnPrimary.Name = "comboKeyerConnPrimary"; this.comboKeyerConnPrimary.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnPrimary.TabIndex = 40; this.toolTip1.SetToolTip(this.comboKeyerConnPrimary, "Sets Key Paddle Input port"); this.comboKeyerConnPrimary.ValueMember = "LPT"; this.comboKeyerConnPrimary.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnPrimary_SelectedIndexChanged); // // grpDSPCWPitch // this.grpDSPCWPitch.Controls.Add(this.lblDSPCWPitchFreq); this.grpDSPCWPitch.Controls.Add(this.udDSPCWPitch); this.grpDSPCWPitch.Location = new System.Drawing.Point(8, 8); this.grpDSPCWPitch.Name = "grpDSPCWPitch"; this.grpDSPCWPitch.Size = new System.Drawing.Size(96, 57); this.grpDSPCWPitch.TabIndex = 39; this.grpDSPCWPitch.TabStop = false; this.grpDSPCWPitch.Text = "CW Pitch (Hz)"; // // lblDSPCWPitchFreq // this.lblDSPCWPitchFreq.Image = null; this.lblDSPCWPitchFreq.Location = new System.Drawing.Point(8, 24); this.lblDSPCWPitchFreq.Name = "lblDSPCWPitchFreq"; this.lblDSPCWPitchFreq.Size = new System.Drawing.Size(32, 16); this.lblDSPCWPitchFreq.TabIndex = 8; this.lblDSPCWPitchFreq.Text = "Freq:"; // // udDSPCWPitch // this.udDSPCWPitch.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPCWPitch.Location = new System.Drawing.Point(40, 24); this.udDSPCWPitch.Maximum = new decimal(new int[] { 2250, 0, 0, 0}); this.udDSPCWPitch.Minimum = new decimal(new int[] { 200, 0, 0, 0}); this.udDSPCWPitch.Name = "udDSPCWPitch"; this.udDSPCWPitch.Size = new System.Drawing.Size(48, 20); this.udDSPCWPitch.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPCWPitch, "Selects the preferred CW tone frequency."); this.udDSPCWPitch.Value = new decimal(new int[] { 600, 0, 0, 0}); this.udDSPCWPitch.ValueChanged += new System.EventHandler(this.udDSPCWPitch_ValueChanged); this.udDSPCWPitch.LostFocus += new System.EventHandler(this.udDSPCWPitch_LostFocus); // // grpDSPKeyerOptions // this.grpDSPKeyerOptions.Controls.Add(this.chkModeBStrict); this.grpDSPKeyerOptions.Controls.Add(this.chkStrictCharSpacing); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerMonoCable); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerMode); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerRevPdl); this.grpDSPKeyerOptions.Controls.Add(this.chkDSPKeyerSidetone); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerIambic); this.grpDSPKeyerOptions.Controls.Add(this.chkCWAutoSwitchMode); this.grpDSPKeyerOptions.Location = new System.Drawing.Point(296, 8); this.grpDSPKeyerOptions.Name = "grpDSPKeyerOptions"; this.grpDSPKeyerOptions.Size = new System.Drawing.Size(142, 224); this.grpDSPKeyerOptions.TabIndex = 37; this.grpDSPKeyerOptions.TabStop = false; this.grpDSPKeyerOptions.Text = "Options"; // // chkModeBStrict // this.chkModeBStrict.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkModeBStrict.Image = null; this.chkModeBStrict.Location = new System.Drawing.Point(16, 144); this.chkModeBStrict.Name = "chkModeBStrict"; this.chkModeBStrict.Size = new System.Drawing.Size(113, 16); this.chkModeBStrict.TabIndex = 44; this.chkModeBStrict.Text = "Mode B Strict"; this.toolTip1.SetToolTip(this.chkModeBStrict, "Sets the detection threshold to halfway into the current element."); this.chkModeBStrict.CheckedChanged += new System.EventHandler(this.chkModeBStrict_CheckedChanged); // // chkStrictCharSpacing // this.chkStrictCharSpacing.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkStrictCharSpacing.Image = null; this.chkStrictCharSpacing.Location = new System.Drawing.Point(16, 192); this.chkStrictCharSpacing.Name = "chkStrictCharSpacing"; this.chkStrictCharSpacing.Size = new System.Drawing.Size(113, 16); this.chkStrictCharSpacing.TabIndex = 43; this.chkStrictCharSpacing.Text = "Strict Char Space"; this.toolTip1.SetToolTip(this.chkStrictCharSpacing, "If enabled, will automatically force a full space after each character."); this.chkStrictCharSpacing.CheckedChanged += new System.EventHandler(this.chkStrictCharSpacing_CheckedChanged); // // chkCWKeyerMonoCable // this.chkCWKeyerMonoCable.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWKeyerMonoCable.Image = null; this.chkCWKeyerMonoCable.Location = new System.Drawing.Point(16, 96); this.chkCWKeyerMonoCable.Name = "chkCWKeyerMonoCable"; this.chkCWKeyerMonoCable.Size = new System.Drawing.Size(113, 16); this.chkCWKeyerMonoCable.TabIndex = 42; this.chkCWKeyerMonoCable.Text = "2-Wire Cable"; this.toolTip1.SetToolTip(this.chkCWKeyerMonoCable, "Allows the use of a straight key and other devices suce as paddles on the \r\nFLEX-" + "xx00 series of radios that use only 2 wires to make the connection."); this.chkCWKeyerMonoCable.CheckedChanged += new System.EventHandler(this.chkCWKeyerMonoCable_CheckedChanged); // // chkCWKeyerMode // this.chkCWKeyerMode.Checked = true; this.chkCWKeyerMode.CheckState = System.Windows.Forms.CheckState.Checked; this.chkCWKeyerMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWKeyerMode.Image = null; this.chkCWKeyerMode.Location = new System.Drawing.Point(16, 120); this.chkCWKeyerMode.Name = "chkCWKeyerMode"; this.chkCWKeyerMode.Size = new System.Drawing.Size(113, 16); this.chkCWKeyerMode.TabIndex = 40; this.chkCWKeyerMode.Text = "Mode B"; this.toolTip1.SetToolTip(this.chkCWKeyerMode, "Set Keyer Mode"); this.chkCWKeyerMode.CheckedChanged += new System.EventHandler(this.chkCWKeyerMode_CheckedChanged); // // chkCWKeyerRevPdl // this.chkCWKeyerRevPdl.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWKeyerRevPdl.Image = null; this.chkCWKeyerRevPdl.Location = new System.Drawing.Point(16, 72); this.chkCWKeyerRevPdl.Name = "chkCWKeyerRevPdl"; this.chkCWKeyerRevPdl.Size = new System.Drawing.Size(113, 16); this.chkCWKeyerRevPdl.TabIndex = 38; this.chkCWKeyerRevPdl.Text = "Reverse Paddles"; this.toolTip1.SetToolTip(this.chkCWKeyerRevPdl, "Reverses the input paddle -- Dot becomes Dash and vice versa."); this.chkCWKeyerRevPdl.CheckedChanged += new System.EventHandler(this.chkCWKeyerRevPdl_CheckedChanged); // // chkDSPKeyerSidetone // this.chkDSPKeyerSidetone.Checked = true; this.chkDSPKeyerSidetone.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDSPKeyerSidetone.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkDSPKeyerSidetone.Image = null; this.chkDSPKeyerSidetone.Location = new System.Drawing.Point(16, 48); this.chkDSPKeyerSidetone.Name = "chkDSPKeyerSidetone"; this.chkDSPKeyerSidetone.Size = new System.Drawing.Size(113, 16); this.chkDSPKeyerSidetone.TabIndex = 37; this.chkDSPKeyerSidetone.Text = "Sidetone"; this.toolTip1.SetToolTip(this.chkDSPKeyerSidetone, "Turns the sidetone in the speakers on/off"); this.chkDSPKeyerSidetone.CheckedChanged += new System.EventHandler(this.chkDSPKeyerSidetone_CheckedChanged); // // chkCWKeyerIambic // this.chkCWKeyerIambic.Checked = true; this.chkCWKeyerIambic.CheckState = System.Windows.Forms.CheckState.Checked; this.chkCWKeyerIambic.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWKeyerIambic.Image = null; this.chkCWKeyerIambic.Location = new System.Drawing.Point(16, 24); this.chkCWKeyerIambic.Name = "chkCWKeyerIambic"; this.chkCWKeyerIambic.Size = new System.Drawing.Size(113, 16); this.chkCWKeyerIambic.TabIndex = 36; this.chkCWKeyerIambic.Text = "Iambic"; this.toolTip1.SetToolTip(this.chkCWKeyerIambic, "Iambic or Straight Key?"); this.chkCWKeyerIambic.CheckedChanged += new System.EventHandler(this.chkCWKeyerIambic_CheckedChanged); // // chkCWAutoSwitchMode // this.chkCWAutoSwitchMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWAutoSwitchMode.Image = null; this.chkCWAutoSwitchMode.Location = new System.Drawing.Point(16, 168); this.chkCWAutoSwitchMode.Name = "chkCWAutoSwitchMode"; this.chkCWAutoSwitchMode.Size = new System.Drawing.Size(113, 16); this.chkCWAutoSwitchMode.TabIndex = 41; this.chkCWAutoSwitchMode.Text = "Auto Mode Swch"; this.toolTip1.SetToolTip(this.chkCWAutoSwitchMode, "If enabled, will automatically switch to CW mode when paddles are used no matter " + "the current mode "); this.chkCWAutoSwitchMode.CheckedChanged += new System.EventHandler(this.chkCWAutoSwitchMode_CheckedChanged); // // grpDSPKeyerSignalShaping // this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerWeight); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblCWWeight); this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerRamp); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblCWRamp); this.grpDSPKeyerSignalShaping.Location = new System.Drawing.Point(444, 8); this.grpDSPKeyerSignalShaping.Name = "grpDSPKeyerSignalShaping"; this.grpDSPKeyerSignalShaping.Size = new System.Drawing.Size(124, 128); this.grpDSPKeyerSignalShaping.TabIndex = 34; this.grpDSPKeyerSignalShaping.TabStop = false; this.grpDSPKeyerSignalShaping.Text = "Signal Shaping"; // // udCWKeyerWeight // this.udCWKeyerWeight.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerWeight.Location = new System.Drawing.Point(80, 24); this.udCWKeyerWeight.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udCWKeyerWeight.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCWKeyerWeight.Name = "udCWKeyerWeight"; this.udCWKeyerWeight.Size = new System.Drawing.Size(40, 20); this.udCWKeyerWeight.TabIndex = 40; this.toolTip1.SetToolTip(this.udCWKeyerWeight, "Sets the weight of the tones when sending Iambic."); this.udCWKeyerWeight.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udCWKeyerWeight.ValueChanged += new System.EventHandler(this.udCWKeyerWeight_ValueChanged); this.udCWKeyerWeight.LostFocus += new System.EventHandler(this.udCWKeyerWeight_LostFocus); // // lblCWWeight // this.lblCWWeight.Image = null; this.lblCWWeight.Location = new System.Drawing.Point(16, 24); this.lblCWWeight.Name = "lblCWWeight"; this.lblCWWeight.Size = new System.Drawing.Size(48, 16); this.lblCWWeight.TabIndex = 39; this.lblCWWeight.Text = "Weight:"; // // udCWKeyerRamp // this.udCWKeyerRamp.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerRamp.Location = new System.Drawing.Point(80, 48); this.udCWKeyerRamp.Maximum = new decimal(new int[] { 25, 0, 0, 0}); this.udCWKeyerRamp.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCWKeyerRamp.Name = "udCWKeyerRamp"; this.udCWKeyerRamp.Size = new System.Drawing.Size(40, 20); this.udCWKeyerRamp.TabIndex = 40; this.toolTip1.SetToolTip(this.udCWKeyerRamp, "The width of the ramp on the leading and trailing edge of the tone."); this.udCWKeyerRamp.Value = new decimal(new int[] { 5, 0, 0, 0}); this.udCWKeyerRamp.ValueChanged += new System.EventHandler(this.udCWKeyerRamp_ValueChanged); this.udCWKeyerRamp.LostFocus += new System.EventHandler(this.udCWKeyerRamp_LostFocus); // // lblCWRamp // this.lblCWRamp.Image = null; this.lblCWRamp.Location = new System.Drawing.Point(16, 48); this.lblCWRamp.Name = "lblCWRamp"; this.lblCWRamp.Size = new System.Drawing.Size(64, 16); this.lblCWRamp.TabIndex = 39; this.lblCWRamp.Text = "Ramp (ms):"; // // grpDSPKeyerSemiBreakIn // this.grpDSPKeyerSemiBreakIn.Controls.Add(this.chkCWBreakInEnabled); this.grpDSPKeyerSemiBreakIn.Controls.Add(this.lblCWBreakInDelay); this.grpDSPKeyerSemiBreakIn.Controls.Add(this.udCWBreakInDelay); this.grpDSPKeyerSemiBreakIn.Location = new System.Drawing.Point(8, 144); this.grpDSPKeyerSemiBreakIn.Name = "grpDSPKeyerSemiBreakIn"; this.grpDSPKeyerSemiBreakIn.Size = new System.Drawing.Size(136, 88); this.grpDSPKeyerSemiBreakIn.TabIndex = 38; this.grpDSPKeyerSemiBreakIn.TabStop = false; this.grpDSPKeyerSemiBreakIn.Text = "Break In"; // // chkCWBreakInEnabled // this.chkCWBreakInEnabled.Checked = true; this.chkCWBreakInEnabled.CheckState = System.Windows.Forms.CheckState.Checked; this.chkCWBreakInEnabled.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWBreakInEnabled.Image = null; this.chkCWBreakInEnabled.Location = new System.Drawing.Point(16, 24); this.chkCWBreakInEnabled.Name = "chkCWBreakInEnabled"; this.chkCWBreakInEnabled.Size = new System.Drawing.Size(80, 16); this.chkCWBreakInEnabled.TabIndex = 36; this.chkCWBreakInEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkCWBreakInEnabled, "Enables Semi Break In operation."); this.chkCWBreakInEnabled.CheckedChanged += new System.EventHandler(this.chkDSPKeyerSemiBreakInEnabled_CheckedChanged); // // lblCWBreakInDelay // this.lblCWBreakInDelay.Image = null; this.lblCWBreakInDelay.Location = new System.Drawing.Point(8, 48); this.lblCWBreakInDelay.Name = "lblCWBreakInDelay"; this.lblCWBreakInDelay.Size = new System.Drawing.Size(64, 16); this.lblCWBreakInDelay.TabIndex = 34; this.lblCWBreakInDelay.Text = "Delay (ms):"; // // udCWBreakInDelay // this.udCWBreakInDelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWBreakInDelay.Location = new System.Drawing.Point(72, 48); this.udCWBreakInDelay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udCWBreakInDelay.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCWBreakInDelay.Name = "udCWBreakInDelay"; this.udCWBreakInDelay.Size = new System.Drawing.Size(48, 20); this.udCWBreakInDelay.TabIndex = 35; this.toolTip1.SetToolTip(this.udCWBreakInDelay, "Amount of time to stay in TX after the last detected CW signal."); this.udCWBreakInDelay.Value = new decimal(new int[] { 300, 0, 0, 0}); this.udCWBreakInDelay.ValueChanged += new System.EventHandler(this.udCWKeyerSemiBreakInDelay_ValueChanged); this.udCWBreakInDelay.LostFocus += new System.EventHandler(this.udCWBreakInDelay_LostFocus); // // tpDSPAGCALC // this.tpDSPAGCALC.Controls.Add(this.grpDSPLeveler); this.tpDSPAGCALC.Controls.Add(this.grpDSPALC); this.tpDSPAGCALC.Controls.Add(this.grpDSPAGC); this.tpDSPAGCALC.Location = new System.Drawing.Point(4, 22); this.tpDSPAGCALC.Name = "tpDSPAGCALC"; this.tpDSPAGCALC.Size = new System.Drawing.Size(592, 318); this.tpDSPAGCALC.TabIndex = 3; this.tpDSPAGCALC.Text = "AGC/ALC"; // // grpDSPLeveler // this.grpDSPLeveler.Controls.Add(this.chkDSPLevelerEnabled); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerHangThreshold); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerHangTime); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerHangTime); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerThreshold); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerSlope); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerDecay); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerSlope); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerAttack); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerDecay); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerAttack); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerThreshold); this.grpDSPLeveler.Controls.Add(this.tbDSPLevelerHangThreshold); this.grpDSPLeveler.Location = new System.Drawing.Point(264, 8); this.grpDSPLeveler.Name = "grpDSPLeveler"; this.grpDSPLeveler.Size = new System.Drawing.Size(144, 216); this.grpDSPLeveler.TabIndex = 39; this.grpDSPLeveler.TabStop = false; this.grpDSPLeveler.Text = "Leveler"; // // chkDSPLevelerEnabled // this.chkDSPLevelerEnabled.Checked = true; this.chkDSPLevelerEnabled.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDSPLevelerEnabled.Image = null; this.chkDSPLevelerEnabled.Location = new System.Drawing.Point(16, 24); this.chkDSPLevelerEnabled.Name = "chkDSPLevelerEnabled"; this.chkDSPLevelerEnabled.Size = new System.Drawing.Size(104, 16); this.chkDSPLevelerEnabled.TabIndex = 42; this.chkDSPLevelerEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkDSPLevelerEnabled, "Check this box to Enabled (activate) the leveler feature."); this.chkDSPLevelerEnabled.CheckedChanged += new System.EventHandler(this.chkDSPLevelerEnabled_CheckedChanged); // // lblDSPLevelerHangThreshold // this.lblDSPLevelerHangThreshold.Image = null; this.lblDSPLevelerHangThreshold.Location = new System.Drawing.Point(8, 168); this.lblDSPLevelerHangThreshold.Name = "lblDSPLevelerHangThreshold"; this.lblDSPLevelerHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPLevelerHangThreshold.TabIndex = 41; this.lblDSPLevelerHangThreshold.Text = "Hang Threshold:"; this.lblDSPLevelerHangThreshold.Visible = false; // // udDSPLevelerHangTime // this.udDSPLevelerHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerHangTime.Location = new System.Drawing.Point(88, 144); this.udDSPLevelerHangTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPLevelerHangTime.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerHangTime.Name = "udDSPLevelerHangTime"; this.udDSPLevelerHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPLevelerHangTime.TabIndex = 15; this.udDSPLevelerHangTime.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPLevelerHangTime.ValueChanged += new System.EventHandler(this.udDSPLevelerHangTime_ValueChanged); this.udDSPLevelerHangTime.LostFocus += new System.EventHandler(this.udDSPLevelerHangTime_LostFocus); // // lblDSPLevelerHangTime // this.lblDSPLevelerHangTime.Image = null; this.lblDSPLevelerHangTime.Location = new System.Drawing.Point(8, 144); this.lblDSPLevelerHangTime.Name = "lblDSPLevelerHangTime"; this.lblDSPLevelerHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPLevelerHangTime.TabIndex = 14; this.lblDSPLevelerHangTime.Text = "Hang (ms):"; // // udDSPLevelerThreshold // this.udDSPLevelerThreshold.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerThreshold.Location = new System.Drawing.Point(88, 72); this.udDSPLevelerThreshold.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udDSPLevelerThreshold.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerThreshold.Name = "udDSPLevelerThreshold"; this.udDSPLevelerThreshold.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerThreshold.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPLevelerThreshold, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPLevelerThreshold.Value = new decimal(new int[] { 5, 0, 0, 0}); this.udDSPLevelerThreshold.ValueChanged += new System.EventHandler(this.udDSPLevelerThreshold_ValueChanged); this.udDSPLevelerThreshold.LostFocus += new System.EventHandler(this.udDSPLevelerThreshold_LostFocus); // // udDSPLevelerSlope // this.udDSPLevelerSlope.Enabled = false; this.udDSPLevelerSlope.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerSlope.Location = new System.Drawing.Point(88, 48); this.udDSPLevelerSlope.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udDSPLevelerSlope.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerSlope.Name = "udDSPLevelerSlope"; this.udDSPLevelerSlope.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerSlope.TabIndex = 13; this.udDSPLevelerSlope.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerSlope.Visible = false; this.udDSPLevelerSlope.LostFocus += new System.EventHandler(this.udDSPLevelerSlope_LostFocus); // // udDSPLevelerDecay // this.udDSPLevelerDecay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerDecay.Location = new System.Drawing.Point(88, 120); this.udDSPLevelerDecay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPLevelerDecay.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerDecay.Name = "udDSPLevelerDecay"; this.udDSPLevelerDecay.Size = new System.Drawing.Size(48, 20); this.udDSPLevelerDecay.TabIndex = 12; this.udDSPLevelerDecay.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPLevelerDecay.ValueChanged += new System.EventHandler(this.udDSPLevelerDecay_ValueChanged); this.udDSPLevelerDecay.LostFocus += new System.EventHandler(this.udDSPLevelerDecay_LostFocus); // // lblDSPLevelerSlope // this.lblDSPLevelerSlope.Enabled = false; this.lblDSPLevelerSlope.Image = null; this.lblDSPLevelerSlope.Location = new System.Drawing.Point(8, 48); this.lblDSPLevelerSlope.Name = "lblDSPLevelerSlope"; this.lblDSPLevelerSlope.Size = new System.Drawing.Size(64, 16); this.lblDSPLevelerSlope.TabIndex = 11; this.lblDSPLevelerSlope.Text = "Slope (dB):"; this.lblDSPLevelerSlope.Visible = false; // // udDSPLevelerAttack // this.udDSPLevelerAttack.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerAttack.Location = new System.Drawing.Point(88, 96); this.udDSPLevelerAttack.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerAttack.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerAttack.Name = "udDSPLevelerAttack"; this.udDSPLevelerAttack.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerAttack.TabIndex = 10; this.udDSPLevelerAttack.Value = new decimal(new int[] { 2, 0, 0, 0}); this.udDSPLevelerAttack.ValueChanged += new System.EventHandler(this.udDSPLevelerAttack_ValueChanged); this.udDSPLevelerAttack.LostFocus += new System.EventHandler(this.udDSPLevelerAttack_LostFocus); // // lblDSPLevelerDecay // this.lblDSPLevelerDecay.Image = null; this.lblDSPLevelerDecay.Location = new System.Drawing.Point(8, 120); this.lblDSPLevelerDecay.Name = "lblDSPLevelerDecay"; this.lblDSPLevelerDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPLevelerDecay.TabIndex = 9; this.lblDSPLevelerDecay.Text = "Decay (ms):"; // // lblDSPLevelerAttack // this.lblDSPLevelerAttack.Image = null; this.lblDSPLevelerAttack.Location = new System.Drawing.Point(8, 96); this.lblDSPLevelerAttack.Name = "lblDSPLevelerAttack"; this.lblDSPLevelerAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPLevelerAttack.TabIndex = 8; this.lblDSPLevelerAttack.Text = "Attack (ms):"; // // lblDSPLevelerThreshold // this.lblDSPLevelerThreshold.Image = null; this.lblDSPLevelerThreshold.Location = new System.Drawing.Point(8, 72); this.lblDSPLevelerThreshold.Name = "lblDSPLevelerThreshold"; this.lblDSPLevelerThreshold.Size = new System.Drawing.Size(88, 24); this.lblDSPLevelerThreshold.TabIndex = 7; this.lblDSPLevelerThreshold.Text = "Max.Gain (dB):"; // // tbDSPLevelerHangThreshold // this.tbDSPLevelerHangThreshold.AutoSize = false; this.tbDSPLevelerHangThreshold.Enabled = false; this.tbDSPLevelerHangThreshold.LargeChange = 1; this.tbDSPLevelerHangThreshold.Location = new System.Drawing.Point(8, 184); this.tbDSPLevelerHangThreshold.Maximum = 100; this.tbDSPLevelerHangThreshold.Name = "tbDSPLevelerHangThreshold"; this.tbDSPLevelerHangThreshold.Size = new System.Drawing.Size(128, 16); this.tbDSPLevelerHangThreshold.TabIndex = 40; this.tbDSPLevelerHangThreshold.TickFrequency = 10; this.tbDSPLevelerHangThreshold.Visible = false; // // grpDSPALC // this.grpDSPALC.Controls.Add(this.lblDSPALCHangThreshold); this.grpDSPALC.Controls.Add(this.tbDSPALCHangThreshold); this.grpDSPALC.Controls.Add(this.udDSPALCHangTime); this.grpDSPALC.Controls.Add(this.lblDSPALCHangTime); this.grpDSPALC.Controls.Add(this.udDSPALCThreshold); this.grpDSPALC.Controls.Add(this.udDSPALCSlope); this.grpDSPALC.Controls.Add(this.udDSPALCDecay); this.grpDSPALC.Controls.Add(this.lblDSPALCSlope); this.grpDSPALC.Controls.Add(this.udDSPALCAttack); this.grpDSPALC.Controls.Add(this.lblDSPALCDecay); this.grpDSPALC.Controls.Add(this.lblDSPALCAttack); this.grpDSPALC.Controls.Add(this.lblDSPALCThreshold); this.grpDSPALC.Location = new System.Drawing.Point(416, 8); this.grpDSPALC.Name = "grpDSPALC"; this.grpDSPALC.Size = new System.Drawing.Size(144, 192); this.grpDSPALC.TabIndex = 38; this.grpDSPALC.TabStop = false; this.grpDSPALC.Text = "ALC"; // // lblDSPALCHangThreshold // this.lblDSPALCHangThreshold.Image = null; this.lblDSPALCHangThreshold.Location = new System.Drawing.Point(8, 144); this.lblDSPALCHangThreshold.Name = "lblDSPALCHangThreshold"; this.lblDSPALCHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPALCHangThreshold.TabIndex = 43; this.lblDSPALCHangThreshold.Text = "Hang Threshold:"; this.lblDSPALCHangThreshold.Visible = false; // // tbDSPALCHangThreshold // this.tbDSPALCHangThreshold.AutoSize = false; this.tbDSPALCHangThreshold.Enabled = false; this.tbDSPALCHangThreshold.LargeChange = 1; this.tbDSPALCHangThreshold.Location = new System.Drawing.Point(8, 160); this.tbDSPALCHangThreshold.Maximum = 100; this.tbDSPALCHangThreshold.Name = "tbDSPALCHangThreshold"; this.tbDSPALCHangThreshold.Size = new System.Drawing.Size(128, 16); this.tbDSPALCHangThreshold.TabIndex = 42; this.tbDSPALCHangThreshold.TickFrequency = 10; this.tbDSPALCHangThreshold.Visible = false; // // udDSPALCHangTime // this.udDSPALCHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCHangTime.Location = new System.Drawing.Point(88, 120); this.udDSPALCHangTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPALCHangTime.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCHangTime.Name = "udDSPALCHangTime"; this.udDSPALCHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPALCHangTime.TabIndex = 17; this.udDSPALCHangTime.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPALCHangTime.ValueChanged += new System.EventHandler(this.udDSPALCHangTime_ValueChanged); this.udDSPALCHangTime.LostFocus += new System.EventHandler(this.udDSPALCHangTime_LostFocus); // // lblDSPALCHangTime // this.lblDSPALCHangTime.Image = null; this.lblDSPALCHangTime.Location = new System.Drawing.Point(8, 120); this.lblDSPALCHangTime.Name = "lblDSPALCHangTime"; this.lblDSPALCHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPALCHangTime.TabIndex = 16; this.lblDSPALCHangTime.Text = "Hang (ms):"; // // udDSPALCThreshold // this.udDSPALCThreshold.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCThreshold.Location = new System.Drawing.Point(88, 48); this.udDSPALCThreshold.Maximum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCThreshold.Minimum = new decimal(new int[] { 120, 0, 0, -2147483648}); this.udDSPALCThreshold.Name = "udDSPALCThreshold"; this.udDSPALCThreshold.Size = new System.Drawing.Size(48, 20); this.udDSPALCThreshold.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPALCThreshold, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPALCThreshold.Value = new decimal(new int[] { 120, 0, 0, -2147483648}); this.udDSPALCThreshold.Visible = false; this.udDSPALCThreshold.ValueChanged += new System.EventHandler(this.udDSPALCThreshold_ValueChanged); this.udDSPALCThreshold.LostFocus += new System.EventHandler(this.udDSPALCThreshold_LostFocus); // // udDSPALCSlope // this.udDSPALCSlope.Enabled = false; this.udDSPALCSlope.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCSlope.Location = new System.Drawing.Point(88, 24); this.udDSPALCSlope.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udDSPALCSlope.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCSlope.Name = "udDSPALCSlope"; this.udDSPALCSlope.Size = new System.Drawing.Size(40, 20); this.udDSPALCSlope.TabIndex = 13; this.udDSPALCSlope.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCSlope.Visible = false; this.udDSPALCSlope.LostFocus += new System.EventHandler(this.udDSPALCSlope_LostFocus); // // udDSPALCDecay // this.udDSPALCDecay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCDecay.Location = new System.Drawing.Point(88, 96); this.udDSPALCDecay.Maximum = new decimal(new int[] { 50, 0, 0, 0}); this.udDSPALCDecay.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCDecay.Name = "udDSPALCDecay"; this.udDSPALCDecay.Size = new System.Drawing.Size(48, 20); this.udDSPALCDecay.TabIndex = 12; this.udDSPALCDecay.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCDecay.ValueChanged += new System.EventHandler(this.udDSPALCDecay_ValueChanged); this.udDSPALCDecay.LostFocus += new System.EventHandler(this.udDSPALCDecay_LostFocus); // // lblDSPALCSlope // this.lblDSPALCSlope.Image = null; this.lblDSPALCSlope.Location = new System.Drawing.Point(8, 24); this.lblDSPALCSlope.Name = "lblDSPALCSlope"; this.lblDSPALCSlope.Size = new System.Drawing.Size(64, 16); this.lblDSPALCSlope.TabIndex = 11; this.lblDSPALCSlope.Text = "Slope (dB):"; this.lblDSPALCSlope.Visible = false; // // udDSPALCAttack // this.udDSPALCAttack.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCAttack.Location = new System.Drawing.Point(88, 72); this.udDSPALCAttack.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCAttack.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCAttack.Name = "udDSPALCAttack"; this.udDSPALCAttack.Size = new System.Drawing.Size(40, 20); this.udDSPALCAttack.TabIndex = 10; this.udDSPALCAttack.Value = new decimal(new int[] { 2, 0, 0, 0}); this.udDSPALCAttack.ValueChanged += new System.EventHandler(this.udDSPALCAttack_ValueChanged); this.udDSPALCAttack.LostFocus += new System.EventHandler(this.udDSPALCAttack_LostFocus); // // lblDSPALCDecay // this.lblDSPALCDecay.Image = null; this.lblDSPALCDecay.Location = new System.Drawing.Point(8, 96); this.lblDSPALCDecay.Name = "lblDSPALCDecay"; this.lblDSPALCDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPALCDecay.TabIndex = 9; this.lblDSPALCDecay.Text = "Decay (ms):"; // // lblDSPALCAttack // this.lblDSPALCAttack.Image = null; this.lblDSPALCAttack.Location = new System.Drawing.Point(8, 72); this.lblDSPALCAttack.Name = "lblDSPALCAttack"; this.lblDSPALCAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPALCAttack.TabIndex = 8; this.lblDSPALCAttack.Text = "Attack (ms):"; // // lblDSPALCThreshold // this.lblDSPALCThreshold.Image = null; this.lblDSPALCThreshold.Location = new System.Drawing.Point(8, 48); this.lblDSPALCThreshold.Name = "lblDSPALCThreshold"; this.lblDSPALCThreshold.Size = new System.Drawing.Size(88, 24); this.lblDSPALCThreshold.TabIndex = 7; this.lblDSPALCThreshold.Text = "Neg. Gain (dB):"; this.lblDSPALCThreshold.Visible = false; // // grpDSPAGC // this.grpDSPAGC.Controls.Add(this.tbDSPAGCHangThreshold); this.grpDSPAGC.Controls.Add(this.lblDSPAGCHangThreshold); this.grpDSPAGC.Controls.Add(this.lblDSPAGCHangTime); this.grpDSPAGC.Controls.Add(this.udDSPAGCHangTime); this.grpDSPAGC.Controls.Add(this.udDSPAGCMaxGaindB); this.grpDSPAGC.Controls.Add(this.udDSPAGCSlope); this.grpDSPAGC.Controls.Add(this.udDSPAGCDecay); this.grpDSPAGC.Controls.Add(this.lblDSPAGCSlope); this.grpDSPAGC.Controls.Add(this.udDSPAGCAttack); this.grpDSPAGC.Controls.Add(this.lblDSPAGCDecay); this.grpDSPAGC.Controls.Add(this.lblDSPAGCAttack); this.grpDSPAGC.Controls.Add(this.lblDSPAGCMaxGain); this.grpDSPAGC.Controls.Add(this.udDSPAGCFixedGaindB); this.grpDSPAGC.Controls.Add(this.lblDSPAGCFixed); this.grpDSPAGC.Location = new System.Drawing.Point(8, 8); this.grpDSPAGC.Name = "grpDSPAGC"; this.grpDSPAGC.Size = new System.Drawing.Size(168, 232); this.grpDSPAGC.TabIndex = 31; this.grpDSPAGC.TabStop = false; this.grpDSPAGC.Text = "AGC"; // // tbDSPAGCHangThreshold // this.tbDSPAGCHangThreshold.AutoSize = false; this.tbDSPAGCHangThreshold.LargeChange = 1; this.tbDSPAGCHangThreshold.Location = new System.Drawing.Point(8, 168); this.tbDSPAGCHangThreshold.Maximum = 100; this.tbDSPAGCHangThreshold.Name = "tbDSPAGCHangThreshold"; this.tbDSPAGCHangThreshold.Size = new System.Drawing.Size(144, 16); this.tbDSPAGCHangThreshold.TabIndex = 47; this.tbDSPAGCHangThreshold.TickFrequency = 10; this.tbDSPAGCHangThreshold.Scroll += new System.EventHandler(this.tbDSPAGCHangThreshold_Scroll); // // lblDSPAGCHangThreshold // this.lblDSPAGCHangThreshold.Image = null; this.lblDSPAGCHangThreshold.Location = new System.Drawing.Point(8, 144); this.lblDSPAGCHangThreshold.Name = "lblDSPAGCHangThreshold"; this.lblDSPAGCHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPAGCHangThreshold.TabIndex = 46; this.lblDSPAGCHangThreshold.Text = "Hang Threshold:"; // // lblDSPAGCHangTime // this.lblDSPAGCHangTime.Image = null; this.lblDSPAGCHangTime.Location = new System.Drawing.Point(8, 120); this.lblDSPAGCHangTime.Name = "lblDSPAGCHangTime"; this.lblDSPAGCHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPAGCHangTime.TabIndex = 45; this.lblDSPAGCHangTime.Text = "Hang (ms):"; // // udDSPAGCHangTime // this.udDSPAGCHangTime.Enabled = false; this.udDSPAGCHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCHangTime.Location = new System.Drawing.Point(104, 120); this.udDSPAGCHangTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPAGCHangTime.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCHangTime.Name = "udDSPAGCHangTime"; this.udDSPAGCHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPAGCHangTime.TabIndex = 44; this.udDSPAGCHangTime.Value = new decimal(new int[] { 250, 0, 0, 0}); this.udDSPAGCHangTime.ValueChanged += new System.EventHandler(this.udDSPAGCHangTime_ValueChanged); this.udDSPAGCHangTime.LostFocus += new System.EventHandler(this.udDSPAGCHangTime_LostFocus); // // udDSPAGCMaxGaindB // this.udDSPAGCMaxGaindB.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCMaxGaindB.Location = new System.Drawing.Point(104, 48); this.udDSPAGCMaxGaindB.Maximum = new decimal(new int[] { 120, 0, 0, 0}); this.udDSPAGCMaxGaindB.Minimum = new decimal(new int[] { 20, 0, 0, -2147483648}); this.udDSPAGCMaxGaindB.Name = "udDSPAGCMaxGaindB"; this.udDSPAGCMaxGaindB.Size = new System.Drawing.Size(40, 20); this.udDSPAGCMaxGaindB.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPAGCMaxGaindB, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPAGCMaxGaindB.Value = new decimal(new int[] { 90, 0, 0, 0}); this.udDSPAGCMaxGaindB.ValueChanged += new System.EventHandler(this.udDSPAGCMaxGaindB_ValueChanged); this.udDSPAGCMaxGaindB.LostFocus += new System.EventHandler(this.udDSPAGCMaxGaindB_LostFocus); // // udDSPAGCSlope // this.udDSPAGCSlope.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCSlope.Location = new System.Drawing.Point(104, 24); this.udDSPAGCSlope.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCSlope.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPAGCSlope.Name = "udDSPAGCSlope"; this.udDSPAGCSlope.Size = new System.Drawing.Size(40, 20); this.udDSPAGCSlope.TabIndex = 13; this.udDSPAGCSlope.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.udDSPAGCSlope.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPAGCSlope.ValueChanged += new System.EventHandler(this.udDSPAGCSlope_ValueChanged); this.udDSPAGCSlope.LostFocus += new System.EventHandler(this.udDSPAGCSlope_LostFocus); // // udDSPAGCDecay // this.udDSPAGCDecay.Enabled = false; this.udDSPAGCDecay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCDecay.Location = new System.Drawing.Point(104, 96); this.udDSPAGCDecay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPAGCDecay.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCDecay.Name = "udDSPAGCDecay"; this.udDSPAGCDecay.Size = new System.Drawing.Size(48, 20); this.udDSPAGCDecay.TabIndex = 12; this.udDSPAGCDecay.Value = new decimal(new int[] { 250, 0, 0, 0}); this.udDSPAGCDecay.ValueChanged += new System.EventHandler(this.udDSPAGCDecay_ValueChanged); this.udDSPAGCDecay.LostFocus += new System.EventHandler(this.udDSPAGCDecay_LostFocus); // // lblDSPAGCSlope // this.lblDSPAGCSlope.Image = null; this.lblDSPAGCSlope.Location = new System.Drawing.Point(8, 24); this.lblDSPAGCSlope.Name = "lblDSPAGCSlope"; this.lblDSPAGCSlope.Size = new System.Drawing.Size(80, 16); this.lblDSPAGCSlope.TabIndex = 11; this.lblDSPAGCSlope.Text = "Slope (dB):"; // // udDSPAGCAttack // this.udDSPAGCAttack.Enabled = false; this.udDSPAGCAttack.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCAttack.Location = new System.Drawing.Point(104, 72); this.udDSPAGCAttack.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCAttack.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCAttack.Name = "udDSPAGCAttack"; this.udDSPAGCAttack.Size = new System.Drawing.Size(40, 20); this.udDSPAGCAttack.TabIndex = 10; this.udDSPAGCAttack.Value = new decimal(new int[] { 2, 0, 0, 0}); this.udDSPAGCAttack.ValueChanged += new System.EventHandler(this.udDSPAGCAttack_ValueChanged); this.udDSPAGCAttack.LostFocus += new System.EventHandler(this.udDSPAGCAttack_LostFocus); // // lblDSPAGCDecay // this.lblDSPAGCDecay.Image = null; this.lblDSPAGCDecay.Location = new System.Drawing.Point(8, 96); this.lblDSPAGCDecay.Name = "lblDSPAGCDecay"; this.lblDSPAGCDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPAGCDecay.TabIndex = 9; this.lblDSPAGCDecay.Text = "Decay (ms):"; // // lblDSPAGCAttack // this.lblDSPAGCAttack.Image = null; this.lblDSPAGCAttack.Location = new System.Drawing.Point(8, 72); this.lblDSPAGCAttack.Name = "lblDSPAGCAttack"; this.lblDSPAGCAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPAGCAttack.TabIndex = 8; this.lblDSPAGCAttack.Text = "Attack (ms):"; // // lblDSPAGCMaxGain // this.lblDSPAGCMaxGain.Image = null; this.lblDSPAGCMaxGain.Location = new System.Drawing.Point(8, 48); this.lblDSPAGCMaxGain.Name = "lblDSPAGCMaxGain"; this.lblDSPAGCMaxGain.Size = new System.Drawing.Size(88, 24); this.lblDSPAGCMaxGain.TabIndex = 7; this.lblDSPAGCMaxGain.Text = "Max Gain (dB):"; // // udDSPAGCFixedGaindB // this.udDSPAGCFixedGaindB.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCFixedGaindB.Location = new System.Drawing.Point(104, 200); this.udDSPAGCFixedGaindB.Maximum = new decimal(new int[] { 120, 0, 0, 0}); this.udDSPAGCFixedGaindB.Minimum = new decimal(new int[] { 20, 0, 0, -2147483648}); this.udDSPAGCFixedGaindB.Name = "udDSPAGCFixedGaindB"; this.udDSPAGCFixedGaindB.Size = new System.Drawing.Size(40, 20); this.udDSPAGCFixedGaindB.TabIndex = 4; this.toolTip1.SetToolTip(this.udDSPAGCFixedGaindB, "When you choose Fixed AGC on the front panel, this number is used to multiply the" + " signal."); this.udDSPAGCFixedGaindB.Value = new decimal(new int[] { 75, 0, 0, 0}); this.udDSPAGCFixedGaindB.ValueChanged += new System.EventHandler(this.udDSPAGCFixedGaindB_ValueChanged); this.udDSPAGCFixedGaindB.LostFocus += new System.EventHandler(this.udDSPAGCFixedGaindB_LostFocus); // // lblDSPAGCFixed // this.lblDSPAGCFixed.Image = null; this.lblDSPAGCFixed.Location = new System.Drawing.Point(8, 200); this.lblDSPAGCFixed.Name = "lblDSPAGCFixed"; this.lblDSPAGCFixed.Size = new System.Drawing.Size(88, 16); this.lblDSPAGCFixed.TabIndex = 5; this.lblDSPAGCFixed.Text = "Fixed Gain (dB):"; // // tpTransmit // this.tpTransmit.Controls.Add(this.chkRememberTXProfileOnModeChange); this.tpTransmit.Controls.Add(this.chkAudioMicBoost); this.tpTransmit.Controls.Add(this.chkSaveTXProfileOnExit); this.tpTransmit.Controls.Add(this.chkAutoSaveTXProfile); this.tpTransmit.Controls.Add(this.chkTXLimitSlew); this.tpTransmit.Controls.Add(this.chkTXExpert); this.tpTransmit.Controls.Add(this.grpTXProfileDef); this.tpTransmit.Controls.Add(this.grpTXAM); this.tpTransmit.Controls.Add(this.grpTXMonitor); this.tpTransmit.Controls.Add(this.grpTXNoiseGate); this.tpTransmit.Controls.Add(this.grpTXProfile); this.tpTransmit.Controls.Add(this.grpPATune); this.tpTransmit.Controls.Add(this.grpTXFilter); this.tpTransmit.Controls.Add(this.chkDCBlock); this.tpTransmit.Controls.Add(this.grpTXVOX); this.tpTransmit.Controls.Add(this.grpTX1500); this.tpTransmit.Location = new System.Drawing.Point(4, 22); this.tpTransmit.Name = "tpTransmit"; this.tpTransmit.Size = new System.Drawing.Size(584, 286); this.tpTransmit.TabIndex = 5; this.tpTransmit.Text = "Transmit"; // // chkRememberTXProfileOnModeChange // this.chkRememberTXProfileOnModeChange.Image = null; this.chkRememberTXProfileOnModeChange.Location = new System.Drawing.Point(306, 194); this.chkRememberTXProfileOnModeChange.Name = "chkRememberTXProfileOnModeChange"; this.chkRememberTXProfileOnModeChange.Size = new System.Drawing.Size(235, 26); this.chkRememberTXProfileOnModeChange.TabIndex = 61; this.chkRememberTXProfileOnModeChange.Text = "Remember TX Profile on Mode Change"; this.toolTip1.SetToolTip(this.chkRememberTXProfileOnModeChange, "When checked the previous TX Profile used for a particular mode is remembered"); this.chkRememberTXProfileOnModeChange.CheckedChanged += new System.EventHandler(this.chkRememberTXProfileOnModeChange_CheckedChanged); // // chkAudioMicBoost // this.chkAudioMicBoost.Image = null; this.chkAudioMicBoost.Location = new System.Drawing.Point(306, 138); this.chkAudioMicBoost.Name = "chkAudioMicBoost"; this.chkAudioMicBoost.Size = new System.Drawing.Size(83, 26); this.chkAudioMicBoost.TabIndex = 60; this.chkAudioMicBoost.Text = "Mic Boost"; this.toolTip1.SetToolTip(this.chkAudioMicBoost, "Provided extra audio gain for low output microphones (usually not needed)"); this.chkAudioMicBoost.CheckedChanged += new System.EventHandler(this.chkAudioMicBoost_CheckedChanged); // // chkSaveTXProfileOnExit // this.chkSaveTXProfileOnExit.Checked = true; this.chkSaveTXProfileOnExit.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSaveTXProfileOnExit.Image = null; this.chkSaveTXProfileOnExit.Location = new System.Drawing.Point(306, 250); this.chkSaveTXProfileOnExit.Name = "chkSaveTXProfileOnExit"; this.chkSaveTXProfileOnExit.Size = new System.Drawing.Size(235, 26); this.chkSaveTXProfileOnExit.TabIndex = 59; this.chkSaveTXProfileOnExit.Text = "Auto Save TX Profile on PowerSDR close"; this.toolTip1.SetToolTip(this.chkSaveTXProfileOnExit, "Automatically saves the current TX Profile when PowerSDR is closed"); this.chkSaveTXProfileOnExit.CheckedChanged += new System.EventHandler(this.chkSaveTXProfileOnExit_CheckedChanged); // // chkAutoSaveTXProfile // this.chkAutoSaveTXProfile.Image = null; this.chkAutoSaveTXProfile.Location = new System.Drawing.Point(306, 222); this.chkAutoSaveTXProfile.Name = "chkAutoSaveTXProfile"; this.chkAutoSaveTXProfile.Size = new System.Drawing.Size(189, 26); this.chkAutoSaveTXProfile.TabIndex = 58; this.chkAutoSaveTXProfile.Text = "Auto Save TX Profile on change"; this.toolTip1.SetToolTip(this.chkAutoSaveTXProfile, "Automatically saves the current TX Profile if another profile is selected"); // // chkTXLimitSlew // this.chkTXLimitSlew.Image = null; this.chkTXLimitSlew.Location = new System.Drawing.Point(306, 82); this.chkTXLimitSlew.Name = "chkTXLimitSlew"; this.chkTXLimitSlew.Size = new System.Drawing.Size(83, 26); this.chkTXLimitSlew.TabIndex = 57; this.chkTXLimitSlew.Text = "Limit Slew"; this.toolTip1.SetToolTip(this.chkTXLimitSlew, "Ramps key-up to avoid unkey artifacts (induces additional delay) - This is useful" + " to avoid tripping amplifiers"); this.chkTXLimitSlew.CheckedChanged += new System.EventHandler(this.chkTXLimitSlew_CheckedChanged); // // chkTXExpert // this.chkTXExpert.Image = null; this.chkTXExpert.Location = new System.Drawing.Point(477, 3); this.chkTXExpert.Name = "chkTXExpert"; this.chkTXExpert.Size = new System.Drawing.Size(96, 24); this.chkTXExpert.TabIndex = 55; this.chkTXExpert.Text = "More Profiles"; this.toolTip1.SetToolTip(this.chkTXExpert, "Check to display additional default preset TX Profiles"); this.chkTXExpert.CheckedChanged += new System.EventHandler(this.chkTXExpert_CheckedChanged); // // grpTXProfileDef // this.grpTXProfileDef.Controls.Add(this.btnTXProfileDefImport); this.grpTXProfileDef.Controls.Add(this.lstTXProfileDef); this.grpTXProfileDef.Location = new System.Drawing.Point(445, 28); this.grpTXProfileDef.Name = "grpTXProfileDef"; this.grpTXProfileDef.Size = new System.Drawing.Size(136, 152); this.grpTXProfileDef.TabIndex = 54; this.grpTXProfileDef.TabStop = false; this.grpTXProfileDef.Text = "Additional TX Profiles"; this.grpTXProfileDef.Visible = false; // // btnTXProfileDefImport // this.btnTXProfileDefImport.Image = null; this.btnTXProfileDefImport.Location = new System.Drawing.Point(32, 120); this.btnTXProfileDefImport.Name = "btnTXProfileDefImport"; this.btnTXProfileDefImport.Size = new System.Drawing.Size(64, 24); this.btnTXProfileDefImport.TabIndex = 54; this.btnTXProfileDefImport.Text = "Import"; this.toolTip1.SetToolTip(this.btnTXProfileDefImport, "Highlight an additional preset TX Profile and then click on Import to add it to y" + "our active profiles"); this.btnTXProfileDefImport.Click += new System.EventHandler(this.btnTXProfileDefImport_Click); // // lstTXProfileDef // this.lstTXProfileDef.Location = new System.Drawing.Point(8, 16); this.lstTXProfileDef.Name = "lstTXProfileDef"; this.lstTXProfileDef.Size = new System.Drawing.Size(120, 95); this.lstTXProfileDef.TabIndex = 53; // // grpTXAM // this.grpTXAM.Controls.Add(this.lblTXAMCarrierLevel); this.grpTXAM.Controls.Add(this.udTXAMCarrierLevel); this.grpTXAM.Location = new System.Drawing.Point(302, 21); this.grpTXAM.Name = "grpTXAM"; this.grpTXAM.Size = new System.Drawing.Size(137, 56); this.grpTXAM.TabIndex = 52; this.grpTXAM.TabStop = false; this.grpTXAM.Text = "AM"; // // lblTXAMCarrierLevel // this.lblTXAMCarrierLevel.Image = null; this.lblTXAMCarrierLevel.Location = new System.Drawing.Point(1, 24); this.lblTXAMCarrierLevel.Name = "lblTXAMCarrierLevel"; this.lblTXAMCarrierLevel.Size = new System.Drawing.Size(72, 16); this.lblTXAMCarrierLevel.TabIndex = 5; this.lblTXAMCarrierLevel.Text = "Carrier Level:"; // // udTXAMCarrierLevel // this.udTXAMCarrierLevel.DecimalPlaces = 1; this.udTXAMCarrierLevel.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udTXAMCarrierLevel.Location = new System.Drawing.Point(76, 20); this.udTXAMCarrierLevel.Maximum = new decimal(new int[] { 50, 0, 0, 0}); this.udTXAMCarrierLevel.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXAMCarrierLevel.Name = "udTXAMCarrierLevel"; this.udTXAMCarrierLevel.Size = new System.Drawing.Size(56, 20); this.udTXAMCarrierLevel.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXAMCarrierLevel, "Adjusts the carrier level on AM (in approximate watts with Drive Level = 100 usin" + "g a 100W SDR) ."); this.udTXAMCarrierLevel.Value = new decimal(new int[] { 25, 0, 0, 0}); this.udTXAMCarrierLevel.ValueChanged += new System.EventHandler(this.udTXAMCarrierLevel_ValueChanged); this.udTXAMCarrierLevel.LostFocus += new System.EventHandler(this.udTXAMCarrierLevel_LostFocus); // // grpTXMonitor // this.grpTXMonitor.Controls.Add(this.lblTXAF); this.grpTXMonitor.Controls.Add(this.udTXAF); this.grpTXMonitor.Location = new System.Drawing.Point(152, 204); this.grpTXMonitor.Name = "grpTXMonitor"; this.grpTXMonitor.Size = new System.Drawing.Size(144, 76); this.grpTXMonitor.TabIndex = 51; this.grpTXMonitor.TabStop = false; this.grpTXMonitor.Text = "Monitor"; // // lblTXAF // this.lblTXAF.Image = null; this.lblTXAF.Location = new System.Drawing.Point(8, 24); this.lblTXAF.Name = "lblTXAF"; this.lblTXAF.Size = new System.Drawing.Size(40, 16); this.lblTXAF.TabIndex = 5; this.lblTXAF.Text = "TX AF:"; // // udTXAF // this.udTXAF.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXAF.Location = new System.Drawing.Point(56, 24); this.udTXAF.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTXAF.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXAF.Name = "udTXAF"; this.udTXAF.Size = new System.Drawing.Size(48, 20); this.udTXAF.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXAF, "AF value to use when in TX mode (with the Delta 44 only)."); this.udTXAF.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udTXAF.ValueChanged += new System.EventHandler(this.udTXAF_ValueChanged); this.udTXAF.LostFocus += new System.EventHandler(this.udTXAF_LostFocus); // // grpTXNoiseGate // this.grpTXNoiseGate.Controls.Add(this.udTXNoiseGateAttenuate); this.grpTXNoiseGate.Controls.Add(this.lblTXNoiseGateAttenuate); this.grpTXNoiseGate.Controls.Add(this.chkTXNoiseGateEnabled); this.grpTXNoiseGate.Controls.Add(this.udTXNoiseGate); this.grpTXNoiseGate.Controls.Add(this.lblTXNoiseGateThreshold); this.grpTXNoiseGate.Location = new System.Drawing.Point(152, 96); this.grpTXNoiseGate.Name = "grpTXNoiseGate"; this.grpTXNoiseGate.Size = new System.Drawing.Size(144, 102); this.grpTXNoiseGate.TabIndex = 49; this.grpTXNoiseGate.TabStop = false; this.grpTXNoiseGate.Text = "DE / Noise Gate"; // // udTXNoiseGateAttenuate // this.udTXNoiseGateAttenuate.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXNoiseGateAttenuate.Location = new System.Drawing.Point(88, 71); this.udTXNoiseGateAttenuate.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTXNoiseGateAttenuate.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXNoiseGateAttenuate.Name = "udTXNoiseGateAttenuate"; this.udTXNoiseGateAttenuate.Size = new System.Drawing.Size(48, 20); this.udTXNoiseGateAttenuate.TabIndex = 50; this.toolTip1.SetToolTip(this.udTXNoiseGateAttenuate, "Percent to attenuate when below DE threshold"); this.udTXNoiseGateAttenuate.Value = new decimal(new int[] { 80, 0, 0, 0}); this.udTXNoiseGateAttenuate.ValueChanged += new System.EventHandler(this.udTXNoiseGateAttenuate_ValueChanged); // // lblTXNoiseGateAttenuate // this.lblTXNoiseGateAttenuate.Image = null; this.lblTXNoiseGateAttenuate.Location = new System.Drawing.Point(8, 71); this.lblTXNoiseGateAttenuate.Name = "lblTXNoiseGateAttenuate"; this.lblTXNoiseGateAttenuate.Size = new System.Drawing.Size(82, 23); this.lblTXNoiseGateAttenuate.TabIndex = 51; this.lblTXNoiseGateAttenuate.Text = "Attenuate (%):"; // // chkTXNoiseGateEnabled // this.chkTXNoiseGateEnabled.Image = null; this.chkTXNoiseGateEnabled.Location = new System.Drawing.Point(16, 24); this.chkTXNoiseGateEnabled.Name = "chkTXNoiseGateEnabled"; this.chkTXNoiseGateEnabled.Size = new System.Drawing.Size(72, 16); this.chkTXNoiseGateEnabled.TabIndex = 49; this.chkTXNoiseGateEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkTXNoiseGateEnabled, "Enables the Downward Expander/Noise Gate to operate by setting the Threshold and " + "the Attenuate percentage factor"); this.chkTXNoiseGateEnabled.CheckedChanged += new System.EventHandler(this.chkTXNoiseGateEnabled_CheckedChanged); // // udTXNoiseGate // this.udTXNoiseGate.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXNoiseGate.Location = new System.Drawing.Point(88, 48); this.udTXNoiseGate.Maximum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXNoiseGate.Minimum = new decimal(new int[] { 160, 0, 0, -2147483648}); this.udTXNoiseGate.Name = "udTXNoiseGate"; this.udTXNoiseGate.Size = new System.Drawing.Size(48, 20); this.udTXNoiseGate.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXNoiseGate, "Signal level in dB above which to transmit audio."); this.udTXNoiseGate.Value = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udTXNoiseGate.ValueChanged += new System.EventHandler(this.udTXNoiseGate_ValueChanged); this.udTXNoiseGate.LostFocus += new System.EventHandler(this.udTXNoiseGate_LostFocus); // // lblTXNoiseGateThreshold // this.lblTXNoiseGateThreshold.Image = null; this.lblTXNoiseGateThreshold.Location = new System.Drawing.Point(8, 48); this.lblTXNoiseGateThreshold.Name = "lblTXNoiseGateThreshold"; this.lblTXNoiseGateThreshold.Size = new System.Drawing.Size(82, 23); this.lblTXNoiseGateThreshold.TabIndex = 5; this.lblTXNoiseGateThreshold.Text = "Threshold (dB):"; // // grpTXProfile // this.grpTXProfile.Controls.Add(this.btnTXProfileDelete); this.grpTXProfile.Controls.Add(this.btnTXProfileSave); this.grpTXProfile.Controls.Add(this.comboTXProfileName); this.grpTXProfile.Location = new System.Drawing.Point(8, 8); this.grpTXProfile.Name = "grpTXProfile"; this.grpTXProfile.Size = new System.Drawing.Size(136, 80); this.grpTXProfile.TabIndex = 23; this.grpTXProfile.TabStop = false; this.grpTXProfile.Text = "Profiles"; // // btnTXProfileDelete // this.btnTXProfileDelete.Image = null; this.btnTXProfileDelete.Location = new System.Drawing.Point(72, 48); this.btnTXProfileDelete.Name = "btnTXProfileDelete"; this.btnTXProfileDelete.Size = new System.Drawing.Size(48, 21); this.btnTXProfileDelete.TabIndex = 2; this.btnTXProfileDelete.Text = "Delete"; this.toolTip1.SetToolTip(this.btnTXProfileDelete, "Click to delete the currently selected TX Profile."); this.btnTXProfileDelete.Click += new System.EventHandler(this.btnTXProfileDelete_Click); // // btnTXProfileSave // this.btnTXProfileSave.Image = null; this.btnTXProfileSave.Location = new System.Drawing.Point(16, 48); this.btnTXProfileSave.Name = "btnTXProfileSave"; this.btnTXProfileSave.Size = new System.Drawing.Size(48, 21); this.btnTXProfileSave.TabIndex = 1; this.btnTXProfileSave.Text = "Save"; this.toolTip1.SetToolTip(this.btnTXProfileSave, "Click to save the current settings to a TX Profile."); this.btnTXProfileSave.Click += new System.EventHandler(this.btnTXProfileSave_Click); // // comboTXProfileName // this.comboTXProfileName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboTXProfileName.DropDownWidth = 104; this.comboTXProfileName.Location = new System.Drawing.Point(16, 24); this.comboTXProfileName.Name = "comboTXProfileName"; this.comboTXProfileName.Size = new System.Drawing.Size(104, 21); this.comboTXProfileName.TabIndex = 0; this.toolTip1.SetToolTip(this.comboTXProfileName, "Sets the current Transmit Profile to be used."); this.comboTXProfileName.SelectedIndexChanged += new System.EventHandler(this.comboTXProfileName_SelectedIndexChanged); // // grpPATune // this.grpPATune.Controls.Add(this.comboTXTUNMeter); this.grpPATune.Controls.Add(this.lblTXTUNMeter); this.grpPATune.Controls.Add(this.lblTransmitTunePower); this.grpPATune.Controls.Add(this.udTXTunePower); this.grpPATune.Location = new System.Drawing.Point(8, 96); this.grpPATune.Name = "grpPATune"; this.grpPATune.Size = new System.Drawing.Size(136, 80); this.grpPATune.TabIndex = 22; this.grpPATune.TabStop = false; this.grpPATune.Text = "Tune"; // // comboTXTUNMeter // this.comboTXTUNMeter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboTXTUNMeter.DropDownWidth = 104; this.comboTXTUNMeter.Items.AddRange(new object[] { "Fwd Pwr", "Ref Pwr", "SWR", "Off"}); this.comboTXTUNMeter.Location = new System.Drawing.Point(64, 48); this.comboTXTUNMeter.Name = "comboTXTUNMeter"; this.comboTXTUNMeter.Size = new System.Drawing.Size(64, 21); this.comboTXTUNMeter.TabIndex = 9; this.toolTip1.SetToolTip(this.comboTXTUNMeter, "Sets the TX Meter setting when using the TUN botton on the front panel"); this.comboTXTUNMeter.SelectedIndexChanged += new System.EventHandler(this.comboTXTUNMeter_SelectedIndexChanged); // // lblTXTUNMeter // this.lblTXTUNMeter.Image = null; this.lblTXTUNMeter.Location = new System.Drawing.Point(8, 48); this.lblTXTUNMeter.Name = "lblTXTUNMeter"; this.lblTXTUNMeter.Size = new System.Drawing.Size(56, 24); this.lblTXTUNMeter.TabIndex = 8; this.lblTXTUNMeter.Text = "TX Meter:"; this.lblTXTUNMeter.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // lblTransmitTunePower // this.lblTransmitTunePower.Image = null; this.lblTransmitTunePower.Location = new System.Drawing.Point(8, 24); this.lblTransmitTunePower.Name = "lblTransmitTunePower"; this.lblTransmitTunePower.Size = new System.Drawing.Size(64, 16); this.lblTransmitTunePower.TabIndex = 5; this.lblTransmitTunePower.Text = "Drive"; // // udTXTunePower // this.udTXTunePower.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXTunePower.Location = new System.Drawing.Point(72, 24); this.udTXTunePower.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTXTunePower.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXTunePower.Name = "udTXTunePower"; this.udTXTunePower.Size = new System.Drawing.Size(48, 20); this.udTXTunePower.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXTunePower, "Power used when using the TUN button on the front panel."); this.udTXTunePower.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udTXTunePower.ValueChanged += new System.EventHandler(this.udTransmitTunePower_ValueChanged); this.udTXTunePower.LostFocus += new System.EventHandler(this.udTXTunePower_LostFocus); // // grpTXFilter // this.grpTXFilter.Controls.Add(this.lblTXFilterHigh); this.grpTXFilter.Controls.Add(this.udTXFilterLow); this.grpTXFilter.Controls.Add(this.lblTXFilterLow); this.grpTXFilter.Controls.Add(this.udTXFilterHigh); this.grpTXFilter.Location = new System.Drawing.Point(152, 8); this.grpTXFilter.Name = "grpTXFilter"; this.grpTXFilter.Size = new System.Drawing.Size(144, 80); this.grpTXFilter.TabIndex = 19; this.grpTXFilter.TabStop = false; this.grpTXFilter.Text = "Transmit Filter"; // // lblTXFilterHigh // this.lblTXFilterHigh.Image = null; this.lblTXFilterHigh.Location = new System.Drawing.Point(16, 24); this.lblTXFilterHigh.Name = "lblTXFilterHigh"; this.lblTXFilterHigh.Size = new System.Drawing.Size(40, 23); this.lblTXFilterHigh.TabIndex = 3; this.lblTXFilterHigh.Text = "High:"; // // udTXFilterLow // this.udTXFilterLow.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udTXFilterLow.Location = new System.Drawing.Point(56, 48); this.udTXFilterLow.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTXFilterLow.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXFilterLow.Name = "udTXFilterLow"; this.udTXFilterLow.Size = new System.Drawing.Size(56, 20); this.udTXFilterLow.TabIndex = 2; this.toolTip1.SetToolTip(this.udTXFilterLow, "Low Frequency TX Filter Cutoff"); this.udTXFilterLow.Value = new decimal(new int[] { 200, 0, 0, 0}); this.udTXFilterLow.ValueChanged += new System.EventHandler(this.udTXFilterLow_ValueChanged); this.udTXFilterLow.LostFocus += new System.EventHandler(this.udTXFilterLow_LostFocus); // // lblTXFilterLow // this.lblTXFilterLow.Image = null; this.lblTXFilterLow.Location = new System.Drawing.Point(16, 48); this.lblTXFilterLow.Name = "lblTXFilterLow"; this.lblTXFilterLow.Size = new System.Drawing.Size(40, 23); this.lblTXFilterLow.TabIndex = 1; this.lblTXFilterLow.Text = "Low:"; // // udTXFilterHigh // this.udTXFilterHigh.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udTXFilterHigh.Location = new System.Drawing.Point(56, 24); this.udTXFilterHigh.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTXFilterHigh.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXFilterHigh.Name = "udTXFilterHigh"; this.udTXFilterHigh.Size = new System.Drawing.Size(56, 20); this.udTXFilterHigh.TabIndex = 0; this.toolTip1.SetToolTip(this.udTXFilterHigh, "High Frequency TX Filter Cutoff"); this.udTXFilterHigh.Value = new decimal(new int[] { 3100, 0, 0, 0}); this.udTXFilterHigh.ValueChanged += new System.EventHandler(this.udTXFilterHigh_ValueChanged); this.udTXFilterHigh.LostFocus += new System.EventHandler(this.udTXFilterHigh_LostFocus); // // chkDCBlock // this.chkDCBlock.Image = null; this.chkDCBlock.Location = new System.Drawing.Point(306, 110); this.chkDCBlock.Name = "chkDCBlock"; this.chkDCBlock.Size = new System.Drawing.Size(72, 26); this.chkDCBlock.TabIndex = 48; this.chkDCBlock.Text = "DC Block"; this.toolTip1.SetToolTip(this.chkDCBlock, "Enable this to engage a digital LPF"); this.chkDCBlock.CheckedChanged += new System.EventHandler(this.chkDCBlock_CheckedChanged); // // grpTXVOX // this.grpTXVOX.Controls.Add(this.lblTXVOXHangTime); this.grpTXVOX.Controls.Add(this.udTXVOXHangTime); this.grpTXVOX.Controls.Add(this.chkTXVOXEnabled); this.grpTXVOX.Controls.Add(this.lblTXVOXThreshold); this.grpTXVOX.Controls.Add(this.udTXVOXThreshold); this.grpTXVOX.Location = new System.Drawing.Point(8, 184); this.grpTXVOX.Name = "grpTXVOX"; this.grpTXVOX.Size = new System.Drawing.Size(136, 96); this.grpTXVOX.TabIndex = 50; this.grpTXVOX.TabStop = false; this.grpTXVOX.Text = "VOX"; // // lblTXVOXHangTime // this.lblTXVOXHangTime.Image = null; this.lblTXVOXHangTime.Location = new System.Drawing.Point(8, 72); this.lblTXVOXHangTime.Name = "lblTXVOXHangTime"; this.lblTXVOXHangTime.Size = new System.Drawing.Size(64, 16); this.lblTXVOXHangTime.TabIndex = 52; this.lblTXVOXHangTime.Text = "Delay (ms):"; // // udTXVOXHangTime // this.udTXVOXHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXVOXHangTime.Location = new System.Drawing.Point(72, 72); this.udTXVOXHangTime.Maximum = new decimal(new int[] { 10000, 0, 0, 0}); this.udTXVOXHangTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXVOXHangTime.Name = "udTXVOXHangTime"; this.udTXVOXHangTime.Size = new System.Drawing.Size(56, 20); this.udTXVOXHangTime.TabIndex = 51; this.toolTip1.SetToolTip(this.udTXVOXHangTime, "The amount of time in ms to stay in TX mode after the last signal above the thres" + "hold."); this.udTXVOXHangTime.Value = new decimal(new int[] { 250, 0, 0, 0}); this.udTXVOXHangTime.ValueChanged += new System.EventHandler(this.udTXVOXHangTime_ValueChanged); this.udTXVOXHangTime.LostFocus += new System.EventHandler(this.udTXVOXHangTime_LostFocus); // // chkTXVOXEnabled // this.chkTXVOXEnabled.Image = null; this.chkTXVOXEnabled.Location = new System.Drawing.Point(16, 24); this.chkTXVOXEnabled.Name = "chkTXVOXEnabled"; this.chkTXVOXEnabled.Size = new System.Drawing.Size(72, 16); this.chkTXVOXEnabled.TabIndex = 50; this.chkTXVOXEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkTXVOXEnabled, "Enables VOX operation using the parameters below."); this.chkTXVOXEnabled.CheckedChanged += new System.EventHandler(this.chkTXVOXEnabled_CheckedChanged); // // lblTXVOXThreshold // this.lblTXVOXThreshold.Image = null; this.lblTXVOXThreshold.Location = new System.Drawing.Point(8, 48); this.lblTXVOXThreshold.Name = "lblTXVOXThreshold"; this.lblTXVOXThreshold.Size = new System.Drawing.Size(64, 16); this.lblTXVOXThreshold.TabIndex = 5; this.lblTXVOXThreshold.Text = "Sensitivity:"; // // udTXVOXThreshold // this.udTXVOXThreshold.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXVOXThreshold.Location = new System.Drawing.Point(72, 48); this.udTXVOXThreshold.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udTXVOXThreshold.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXVOXThreshold.Name = "udTXVOXThreshold"; this.udTXVOXThreshold.Size = new System.Drawing.Size(48, 20); this.udTXVOXThreshold.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXVOXThreshold, "Numeric sample value above which triggers the VOX circuit."); this.udTXVOXThreshold.Value = new decimal(new int[] { 90, 0, 0, 0}); this.udTXVOXThreshold.ValueChanged += new System.EventHandler(this.udTXVOXThreshold_ValueChanged); this.udTXVOXThreshold.LostFocus += new System.EventHandler(this.udTXVOXThreshold_LostFocus); // // grpTX1500 // this.grpTX1500.Controls.Add(this.lblTX1500Blanking); this.grpTX1500.Controls.Add(this.udTX1500PhoneBlanking); this.grpTX1500.Location = new System.Drawing.Point(8, 184); this.grpTX1500.Name = "grpTX1500"; this.grpTX1500.Size = new System.Drawing.Size(136, 96); this.grpTX1500.TabIndex = 56; this.grpTX1500.TabStop = false; this.grpTX1500.Text = "FLEX-1500"; this.grpTX1500.Visible = false; // // lblTX1500Blanking // this.lblTX1500Blanking.Image = null; this.lblTX1500Blanking.Location = new System.Drawing.Point(8, 18); this.lblTX1500Blanking.Name = "lblTX1500Blanking"; this.lblTX1500Blanking.Size = new System.Drawing.Size(64, 42); this.lblTX1500Blanking.TabIndex = 5; this.lblTX1500Blanking.Text = "Phone Transition Blanking:"; // // udTX1500PhoneBlanking // this.udTX1500PhoneBlanking.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTX1500PhoneBlanking.Location = new System.Drawing.Point(72, 23); this.udTX1500PhoneBlanking.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udTX1500PhoneBlanking.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udTX1500PhoneBlanking.Name = "udTX1500PhoneBlanking"; this.udTX1500PhoneBlanking.Size = new System.Drawing.Size(48, 20); this.udTX1500PhoneBlanking.TabIndex = 4; this.toolTip1.SetToolTip(this.udTX1500PhoneBlanking, "Sets the time to blank the audio during RX/TX transitions. The optimal value for" + " this will vary depending on the system and driver in use."); this.udTX1500PhoneBlanking.Value = new decimal(new int[] { 200, 0, 0, 0}); this.udTX1500PhoneBlanking.ValueChanged += new System.EventHandler(this.udTX1500Blanking_ValueChanged); // // tpPowerAmplifier // this.tpPowerAmplifier.Controls.Add(this.rtxtPACalReq); this.tpPowerAmplifier.Controls.Add(this.grpPABandOffset); this.tpPowerAmplifier.Controls.Add(this.chkPANewCal); this.tpPowerAmplifier.Controls.Add(this.grpPAGainByBand); this.tpPowerAmplifier.Location = new System.Drawing.Point(4, 22); this.tpPowerAmplifier.Name = "tpPowerAmplifier"; this.tpPowerAmplifier.Size = new System.Drawing.Size(584, 286); this.tpPowerAmplifier.TabIndex = 8; this.tpPowerAmplifier.Text = "PA Settings"; // // rtxtPACalReq // this.rtxtPACalReq.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rtxtPACalReq.Location = new System.Drawing.Point(272, 16); this.rtxtPACalReq.Name = "rtxtPACalReq"; this.rtxtPACalReq.ReadOnly = true; this.rtxtPACalReq.Size = new System.Drawing.Size(224, 112); this.rtxtPACalReq.TabIndex = 82; this.rtxtPACalReq.Text = resources.GetString("rtxtPACalReq.Text"); // // grpPABandOffset // this.grpPABandOffset.Controls.Add(this.lblPABandOffset10); this.grpPABandOffset.Controls.Add(this.lblPABandOffset12); this.grpPABandOffset.Controls.Add(this.lblPABandOffset15); this.grpPABandOffset.Controls.Add(this.lblPABandOffset17); this.grpPABandOffset.Controls.Add(this.lblPABandOffset20); this.grpPABandOffset.Controls.Add(this.lblPABandOffset30); this.grpPABandOffset.Controls.Add(this.lblPABandOffset40); this.grpPABandOffset.Controls.Add(this.lblPABandOffset60); this.grpPABandOffset.Controls.Add(this.lblPABandOffset80); this.grpPABandOffset.Controls.Add(this.lblPABandOffset160); this.grpPABandOffset.Controls.Add(this.udPAADC17); this.grpPABandOffset.Controls.Add(this.udPAADC15); this.grpPABandOffset.Controls.Add(this.udPAADC20); this.grpPABandOffset.Controls.Add(this.udPAADC12); this.grpPABandOffset.Controls.Add(this.udPAADC10); this.grpPABandOffset.Controls.Add(this.udPAADC160); this.grpPABandOffset.Controls.Add(this.udPAADC80); this.grpPABandOffset.Controls.Add(this.udPAADC60); this.grpPABandOffset.Controls.Add(this.udPAADC40); this.grpPABandOffset.Controls.Add(this.udPAADC30); this.grpPABandOffset.Location = new System.Drawing.Point(272, 8); this.grpPABandOffset.Name = "grpPABandOffset"; this.grpPABandOffset.Size = new System.Drawing.Size(208, 152); this.grpPABandOffset.TabIndex = 81; this.grpPABandOffset.TabStop = false; this.grpPABandOffset.Text = "ADC Offset (ADC bits)"; this.grpPABandOffset.Visible = false; // // lblPABandOffset10 // this.lblPABandOffset10.Image = null; this.lblPABandOffset10.Location = new System.Drawing.Point(104, 120); this.lblPABandOffset10.Name = "lblPABandOffset10"; this.lblPABandOffset10.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset10.TabIndex = 90; this.lblPABandOffset10.Text = "10m:"; // // lblPABandOffset12 // this.lblPABandOffset12.Image = null; this.lblPABandOffset12.Location = new System.Drawing.Point(104, 96); this.lblPABandOffset12.Name = "lblPABandOffset12"; this.lblPABandOffset12.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset12.TabIndex = 89; this.lblPABandOffset12.Text = "12m:"; // // lblPABandOffset15 // this.lblPABandOffset15.Image = null; this.lblPABandOffset15.Location = new System.Drawing.Point(104, 72); this.lblPABandOffset15.Name = "lblPABandOffset15"; this.lblPABandOffset15.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset15.TabIndex = 88; this.lblPABandOffset15.Text = "15m:"; // // lblPABandOffset17 // this.lblPABandOffset17.Image = null; this.lblPABandOffset17.Location = new System.Drawing.Point(104, 48); this.lblPABandOffset17.Name = "lblPABandOffset17"; this.lblPABandOffset17.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset17.TabIndex = 87; this.lblPABandOffset17.Text = "17m:"; // // lblPABandOffset20 // this.lblPABandOffset20.Image = null; this.lblPABandOffset20.Location = new System.Drawing.Point(104, 24); this.lblPABandOffset20.Name = "lblPABandOffset20"; this.lblPABandOffset20.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset20.TabIndex = 86; this.lblPABandOffset20.Text = "20m:"; // // lblPABandOffset30 // this.lblPABandOffset30.Image = null; this.lblPABandOffset30.Location = new System.Drawing.Point(16, 120); this.lblPABandOffset30.Name = "lblPABandOffset30"; this.lblPABandOffset30.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset30.TabIndex = 85; this.lblPABandOffset30.Text = "30m:"; // // lblPABandOffset40 // this.lblPABandOffset40.Image = null; this.lblPABandOffset40.Location = new System.Drawing.Point(16, 96); this.lblPABandOffset40.Name = "lblPABandOffset40"; this.lblPABandOffset40.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset40.TabIndex = 84; this.lblPABandOffset40.Text = "40m:"; // // lblPABandOffset60 // this.lblPABandOffset60.Image = null; this.lblPABandOffset60.Location = new System.Drawing.Point(16, 72); this.lblPABandOffset60.Name = "lblPABandOffset60"; this.lblPABandOffset60.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset60.TabIndex = 83; this.lblPABandOffset60.Text = "60m:"; // // lblPABandOffset80 // this.lblPABandOffset80.Image = null; this.lblPABandOffset80.Location = new System.Drawing.Point(16, 48); this.lblPABandOffset80.Name = "lblPABandOffset80"; this.lblPABandOffset80.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset80.TabIndex = 82; this.lblPABandOffset80.Text = "80m:"; // // lblPABandOffset160 // this.lblPABandOffset160.Image = null; this.lblPABandOffset160.Location = new System.Drawing.Point(16, 24); this.lblPABandOffset160.Name = "lblPABandOffset160"; this.lblPABandOffset160.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset160.TabIndex = 81; this.lblPABandOffset160.Text = "160m:"; // // udPAADC17 // this.udPAADC17.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC17.Location = new System.Drawing.Point(144, 48); this.udPAADC17.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC17.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC17.Name = "udPAADC17"; this.udPAADC17.Size = new System.Drawing.Size(48, 20); this.udPAADC17.TabIndex = 77; this.udPAADC17.Value = new decimal(new int[] { 108, 0, 0, 0}); this.udPAADC17.LostFocus += new System.EventHandler(this.udPAADC17_LostFocus); // // udPAADC15 // this.udPAADC15.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC15.Location = new System.Drawing.Point(144, 72); this.udPAADC15.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC15.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC15.Name = "udPAADC15"; this.udPAADC15.Size = new System.Drawing.Size(48, 20); this.udPAADC15.TabIndex = 78; this.udPAADC15.Value = new decimal(new int[] { 108, 0, 0, 0}); this.udPAADC15.LostFocus += new System.EventHandler(this.udPAADC15_LostFocus); // // udPAADC20 // this.udPAADC20.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC20.Location = new System.Drawing.Point(144, 24); this.udPAADC20.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC20.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC20.Name = "udPAADC20"; this.udPAADC20.Size = new System.Drawing.Size(48, 20); this.udPAADC20.TabIndex = 76; this.udPAADC20.Value = new decimal(new int[] { 108, 0, 0, 0 }); this.udPAADC20.LostFocus += new System.EventHandler(this.udPAADC20_LostFocus); // // udPAADC12 // this.udPAADC12.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPAADC12.Location = new System.Drawing.Point(144, 96); this.udPAADC12.Maximum = new decimal(new int[] { 255, 0, 0, 0 }); this.udPAADC12.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPAADC12.Name = "udPAADC12"; this.udPAADC12.Size = new System.Drawing.Size(48, 20); this.udPAADC12.TabIndex = 79; this.udPAADC12.Value = new decimal(new int[] { 110, 0, 0, 0 }); this.udPAADC12.LostFocus += new System.EventHandler(this.udPAADC12_LostFocus); // // udPAADC10 // this.udPAADC10.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPAADC10.Location = new System.Drawing.Point(144, 120); this.udPAADC10.Maximum = new decimal(new int[] { 255, 0, 0, 0 }); this.udPAADC10.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPAADC10.Name = "udPAADC10"; this.udPAADC10.Size = new System.Drawing.Size(48, 20); this.udPAADC10.TabIndex = 80; this.udPAADC10.Value = new decimal(new int[] { 111, 0, 0, 0 }); this.udPAADC10.LostFocus += new System.EventHandler(this.udPAADC10_LostFocus); // // udPAADC160 // this.udPAADC160.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPAADC160.Location = new System.Drawing.Point(56, 24); this.udPAADC160.Maximum = new decimal(new int[] { 255, 0, 0, 0 }); this.udPAADC160.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPAADC160.Name = "udPAADC160"; this.udPAADC160.Size = new System.Drawing.Size(48, 20); this.udPAADC160.TabIndex = 71; this.udPAADC160.Value = new decimal(new int[] { 107, 0, 0, 0 }); this.udPAADC160.LostFocus += new System.EventHandler(this.udPAADC160_LostFocus); // // udPAADC80 // this.udPAADC80.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPAADC80.Location = new System.Drawing.Point(56, 48); this.udPAADC80.Maximum = new decimal(new int[] { 255, 0, 0, 0 }); this.udPAADC80.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPAADC80.Name = "udPAADC80"; this.udPAADC80.Size = new System.Drawing.Size(48, 20); this.udPAADC80.TabIndex = 72; this.udPAADC80.Value = new decimal(new int[] { 107, 0, 0, 0 }); this.udPAADC80.LostFocus += new System.EventHandler(this.udPAADC80_LostFocus); // // udPAADC60 // this.udPAADC60.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPAADC60.Location = new System.Drawing.Point(56, 72); this.udPAADC60.Maximum = new decimal(new int[] { 255, 0, 0, 0 }); this.udPAADC60.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPAADC60.Name = "udPAADC60"; this.udPAADC60.Size = new System.Drawing.Size(48, 20); this.udPAADC60.TabIndex = 73; this.udPAADC60.Value = new decimal(new int[] { 107, 0, 0, 0 }); this.udPAADC60.LostFocus += new System.EventHandler(this.udPAADC60_LostFocus); // // udPAADC40 // this.udPAADC40.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPAADC40.Location = new System.Drawing.Point(56, 96); this.udPAADC40.Maximum = new decimal(new int[] { 255, 0, 0, 0 }); this.udPAADC40.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPAADC40.Name = "udPAADC40"; this.udPAADC40.Size = new System.Drawing.Size(48, 20); this.udPAADC40.TabIndex = 74; this.udPAADC40.Value = new decimal(new int[] { 106, 0, 0, 0 }); this.udPAADC40.LostFocus += new System.EventHandler(this.udPAADC40_LostFocus); // // udPAADC30 // this.udPAADC30.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPAADC30.Location = new System.Drawing.Point(56, 120); this.udPAADC30.Maximum = new decimal(new int[] { 255, 0, 0, 0 }); this.udPAADC30.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPAADC30.Name = "udPAADC30"; this.udPAADC30.Size = new System.Drawing.Size(48, 20); this.udPAADC30.TabIndex = 75; this.udPAADC30.Value = new decimal(new int[] { 108, 0, 0, 0 }); this.udPAADC30.LostFocus += new System.EventHandler(this.udPAADC30_LostFocus); // // chkPANewCal // this.chkPANewCal.Image = null; this.chkPANewCal.Location = new System.Drawing.Point(280, 176); this.chkPANewCal.Name = "chkPANewCal"; this.chkPANewCal.Size = new System.Drawing.Size(120, 32); this.chkPANewCal.TabIndex = 83; this.chkPANewCal.Text = "Use Advanced Calibration Routine"; this.chkPANewCal.CheckedChanged += new System.EventHandler(this.chkPANewCal_CheckedChanged); // // grpPAGainByBand // this.grpPAGainByBand.Controls.Add(this.udPACalPower); this.grpPAGainByBand.Controls.Add(this.lblPACalTarget); this.grpPAGainByBand.Controls.Add(this.chkPA10); this.grpPAGainByBand.Controls.Add(this.chkPA12); this.grpPAGainByBand.Controls.Add(this.chkPA15); this.grpPAGainByBand.Controls.Add(this.chkPA17); this.grpPAGainByBand.Controls.Add(this.chkPA20); this.grpPAGainByBand.Controls.Add(this.chkPA30); this.grpPAGainByBand.Controls.Add(this.chkPA40); this.grpPAGainByBand.Controls.Add(this.chkPA60); this.grpPAGainByBand.Controls.Add(this.chkPA80); this.grpPAGainByBand.Controls.Add(this.chkPA160); this.grpPAGainByBand.Controls.Add(this.radPACalSelBands); this.grpPAGainByBand.Controls.Add(this.radPACalAllBands); this.grpPAGainByBand.Controls.Add(this.btnPAGainReset); this.grpPAGainByBand.Controls.Add(this.btnPAGainCalibration); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand10); this.grpPAGainByBand.Controls.Add(this.udPAGain10); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand12); this.grpPAGainByBand.Controls.Add(this.udPAGain12); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand15); this.grpPAGainByBand.Controls.Add(this.udPAGain15); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand17); this.grpPAGainByBand.Controls.Add(this.udPAGain17); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand20); this.grpPAGainByBand.Controls.Add(this.udPAGain20); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand30); this.grpPAGainByBand.Controls.Add(this.udPAGain30); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand40); this.grpPAGainByBand.Controls.Add(this.udPAGain40); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand60); this.grpPAGainByBand.Controls.Add(this.udPAGain60); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand80); this.grpPAGainByBand.Controls.Add(this.udPAGain80); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand160); this.grpPAGainByBand.Controls.Add(this.udPAGain160); this.grpPAGainByBand.Controls.Add(this.chkPA6); this.grpPAGainByBand.Location = new System.Drawing.Point(8, 8); this.grpPAGainByBand.Name = "grpPAGainByBand"; this.grpPAGainByBand.Size = new System.Drawing.Size(256, 272); this.grpPAGainByBand.TabIndex = 1; this.grpPAGainByBand.TabStop = false; this.grpPAGainByBand.Text = "Gain By Band (dB)"; this.grpPAGainByBand.Visible = false; // // udPACalPower // this.udPACalPower.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPACalPower.Location = new System.Drawing.Point(96, 160); this.udPACalPower.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPACalPower.Minimum = new decimal(new int[] { 1, 0, 0, 0 }); this.udPACalPower.Name = "udPACalPower"; this.udPACalPower.Size = new System.Drawing.Size(40, 20); this.udPACalPower.TabIndex = 35; this.udPACalPower.Value = new decimal(new int[] { 100, 0, 0, 0 }); // // lblPACalTarget // this.lblPACalTarget.Image = null; this.lblPACalTarget.Location = new System.Drawing.Point(88, 144); this.lblPACalTarget.Name = "lblPACalTarget"; this.lblPACalTarget.Size = new System.Drawing.Size(64, 16); this.lblPACalTarget.TabIndex = 34; this.lblPACalTarget.Text = "Cal Target:"; // // chkPA10 // this.chkPA10.Image = null; this.chkPA10.Location = new System.Drawing.Point(176, 248); this.chkPA10.Name = "chkPA10"; this.chkPA10.Size = new System.Drawing.Size(36, 16); this.chkPA10.TabIndex = 33; this.chkPA10.Text = "10"; this.chkPA10.Visible = false; // // chkPA12 // this.chkPA12.Image = null; this.chkPA12.Location = new System.Drawing.Point(136, 248); this.chkPA12.Name = "chkPA12"; this.chkPA12.Size = new System.Drawing.Size(36, 16); this.chkPA12.TabIndex = 32; this.chkPA12.Text = "12"; this.chkPA12.Visible = false; // // chkPA15 // this.chkPA15.Image = null; this.chkPA15.Location = new System.Drawing.Point(96, 248); this.chkPA15.Name = "chkPA15"; this.chkPA15.Size = new System.Drawing.Size(36, 16); this.chkPA15.TabIndex = 31; this.chkPA15.Text = "15"; this.chkPA15.Visible = false; // // chkPA17 // this.chkPA17.Image = null; this.chkPA17.Location = new System.Drawing.Point(56, 248); this.chkPA17.Name = "chkPA17"; this.chkPA17.Size = new System.Drawing.Size(36, 16); this.chkPA17.TabIndex = 30; this.chkPA17.Text = "17"; this.chkPA17.Visible = false; // // chkPA20 // this.chkPA20.Image = null; this.chkPA20.Location = new System.Drawing.Point(8, 248); this.chkPA20.Name = "chkPA20"; this.chkPA20.Size = new System.Drawing.Size(36, 16); this.chkPA20.TabIndex = 29; this.chkPA20.Text = "20"; this.chkPA20.Visible = false; // // chkPA30 // this.chkPA30.Image = null; this.chkPA30.Location = new System.Drawing.Point(176, 224); this.chkPA30.Name = "chkPA30"; this.chkPA30.Size = new System.Drawing.Size(36, 16); this.chkPA30.TabIndex = 28; this.chkPA30.Text = "30"; this.chkPA30.Visible = false; // // chkPA40 // this.chkPA40.Image = null; this.chkPA40.Location = new System.Drawing.Point(136, 224); this.chkPA40.Name = "chkPA40"; this.chkPA40.Size = new System.Drawing.Size(40, 16); this.chkPA40.TabIndex = 27; this.chkPA40.Text = "40"; this.chkPA40.Visible = false; // // chkPA60 // this.chkPA60.Image = null; this.chkPA60.Location = new System.Drawing.Point(96, 224); this.chkPA60.Name = "chkPA60"; this.chkPA60.Size = new System.Drawing.Size(40, 16); this.chkPA60.TabIndex = 26; this.chkPA60.Text = "60"; this.chkPA60.Visible = false; // // chkPA80 // this.chkPA80.Image = null; this.chkPA80.Location = new System.Drawing.Point(56, 224); this.chkPA80.Name = "chkPA80"; this.chkPA80.Size = new System.Drawing.Size(40, 16); this.chkPA80.TabIndex = 25; this.chkPA80.Text = "80"; this.chkPA80.Visible = false; // // chkPA160 // this.chkPA160.Image = null; this.chkPA160.Location = new System.Drawing.Point(8, 224); this.chkPA160.Name = "chkPA160"; this.chkPA160.Size = new System.Drawing.Size(48, 16); this.chkPA160.TabIndex = 24; this.chkPA160.Text = "160"; this.chkPA160.Visible = false; // // radPACalSelBands // this.radPACalSelBands.Image = null; this.radPACalSelBands.Location = new System.Drawing.Point(96, 184); this.radPACalSelBands.Name = "radPACalSelBands"; this.radPACalSelBands.Size = new System.Drawing.Size(112, 32); this.radPACalSelBands.TabIndex = 23; this.radPACalSelBands.Text = "Selected Bands (checked below)"; // // radPACalAllBands // this.radPACalAllBands.Checked = true; this.radPACalAllBands.Image = null; this.radPACalAllBands.Location = new System.Drawing.Point(16, 184); this.radPACalAllBands.Name = "radPACalAllBands"; this.radPACalAllBands.Size = new System.Drawing.Size(72, 32); this.radPACalAllBands.TabIndex = 22; this.radPACalAllBands.TabStop = true; this.radPACalAllBands.Text = "All Bands"; this.radPACalAllBands.CheckedChanged += new System.EventHandler(this.radPACalAllBands_CheckedChanged); // // btnPAGainReset // this.btnPAGainReset.Image = null; this.btnPAGainReset.Location = new System.Drawing.Point(152, 152); this.btnPAGainReset.Name = "btnPAGainReset"; this.btnPAGainReset.Size = new System.Drawing.Size(48, 23); this.btnPAGainReset.TabIndex = 21; this.btnPAGainReset.Text = "Reset"; this.toolTip1.SetToolTip(this.btnPAGainReset, "Reset all Gain values to the default 48.0dB"); this.btnPAGainReset.Click += new System.EventHandler(this.btnPAGainReset_Click); // // btnPAGainCalibration // this.btnPAGainCalibration.Image = null; this.btnPAGainCalibration.Location = new System.Drawing.Point(16, 152); this.btnPAGainCalibration.Name = "btnPAGainCalibration"; this.btnPAGainCalibration.Size = new System.Drawing.Size(64, 23); this.btnPAGainCalibration.TabIndex = 20; this.btnPAGainCalibration.Text = "Calibrate"; this.btnPAGainCalibration.Click += new System.EventHandler(this.btnPAGainCalibration_Click); // // lblPAGainByBand10 // this.lblPAGainByBand10.Image = null; this.lblPAGainByBand10.Location = new System.Drawing.Point(112, 120); this.lblPAGainByBand10.Name = "lblPAGainByBand10"; this.lblPAGainByBand10.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand10.TabIndex = 19; this.lblPAGainByBand10.Text = "10m:"; // // udPAGain10 // this.udPAGain10.DecimalPlaces = 1; this.udPAGain10.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain10.Location = new System.Drawing.Point(152, 120); this.udPAGain10.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain10.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain10.Name = "udPAGain10"; this.udPAGain10.Size = new System.Drawing.Size(48, 20); this.udPAGain10.TabIndex = 18; this.udPAGain10.Value = new decimal(new int[] { 430, 0, 0, 65536 }); this.udPAGain10.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain10.LostFocus += new System.EventHandler(this.udPAGain10_LostFocus); // // lblPAGainByBand12 // this.lblPAGainByBand12.Image = null; this.lblPAGainByBand12.Location = new System.Drawing.Point(112, 96); this.lblPAGainByBand12.Name = "lblPAGainByBand12"; this.lblPAGainByBand12.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand12.TabIndex = 17; this.lblPAGainByBand12.Text = "12m:"; // // udPAGain12 // this.udPAGain12.DecimalPlaces = 1; this.udPAGain12.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain12.Location = new System.Drawing.Point(152, 96); this.udPAGain12.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain12.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain12.Name = "udPAGain12"; this.udPAGain12.Size = new System.Drawing.Size(48, 20); this.udPAGain12.TabIndex = 16; this.udPAGain12.Value = new decimal(new int[] { 474, 0, 0, 65536 }); this.udPAGain12.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain12.LostFocus += new System.EventHandler(this.udPAGain12_LostFocus); // // lblPAGainByBand15 // this.lblPAGainByBand15.Image = null; this.lblPAGainByBand15.Location = new System.Drawing.Point(112, 72); this.lblPAGainByBand15.Name = "lblPAGainByBand15"; this.lblPAGainByBand15.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand15.TabIndex = 15; this.lblPAGainByBand15.Text = "15m:"; // // udPAGain15 // this.udPAGain15.DecimalPlaces = 1; this.udPAGain15.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain15.Location = new System.Drawing.Point(152, 72); this.udPAGain15.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain15.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain15.Name = "udPAGain15"; this.udPAGain15.Size = new System.Drawing.Size(48, 20); this.udPAGain15.TabIndex = 14; this.udPAGain15.Value = new decimal(new int[] { 481, 0, 0, 65536 }); this.udPAGain15.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain15.LostFocus += new System.EventHandler(this.udPAGain15_LostFocus); // // lblPAGainByBand17 // this.lblPAGainByBand17.Image = null; this.lblPAGainByBand17.Location = new System.Drawing.Point(112, 48); this.lblPAGainByBand17.Name = "lblPAGainByBand17"; this.lblPAGainByBand17.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand17.TabIndex = 13; this.lblPAGainByBand17.Text = "17m:"; // // udPAGain17 // this.udPAGain17.DecimalPlaces = 1; this.udPAGain17.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain17.Location = new System.Drawing.Point(152, 48); this.udPAGain17.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain17.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain17.Name = "udPAGain17"; this.udPAGain17.Size = new System.Drawing.Size(48, 20); this.udPAGain17.TabIndex = 12; this.udPAGain17.Value = new decimal(new int[] { 493, 0, 0, 65536 }); this.udPAGain17.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain17.LostFocus += new System.EventHandler(this.udPAGain17_LostFocus); // // lblPAGainByBand20 // this.lblPAGainByBand20.Image = null; this.lblPAGainByBand20.Location = new System.Drawing.Point(112, 24); this.lblPAGainByBand20.Name = "lblPAGainByBand20"; this.lblPAGainByBand20.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand20.TabIndex = 11; this.lblPAGainByBand20.Text = "20m:"; // // udPAGain20 // this.udPAGain20.DecimalPlaces = 1; this.udPAGain20.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain20.Location = new System.Drawing.Point(152, 24); this.udPAGain20.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain20.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain20.Name = "udPAGain20"; this.udPAGain20.Size = new System.Drawing.Size(48, 20); this.udPAGain20.TabIndex = 10; this.udPAGain20.Value = new decimal(new int[] { 483, 0, 0, 65536 }); this.udPAGain20.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain20.LostFocus += new System.EventHandler(this.udPAGain20_LostFocus); // // lblPAGainByBand30 // this.lblPAGainByBand30.Image = null; this.lblPAGainByBand30.Location = new System.Drawing.Point(16, 120); this.lblPAGainByBand30.Name = "lblPAGainByBand30"; this.lblPAGainByBand30.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand30.TabIndex = 9; this.lblPAGainByBand30.Text = "30m:"; // // udPAGain30 // this.udPAGain30.DecimalPlaces = 1; this.udPAGain30.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain30.Location = new System.Drawing.Point(56, 120); this.udPAGain30.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain30.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain30.Name = "udPAGain30"; this.udPAGain30.Size = new System.Drawing.Size(48, 20); this.udPAGain30.TabIndex = 8; this.udPAGain30.Value = new decimal(new int[] { 489, 0, 0, 65536 }); this.udPAGain30.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain30.LostFocus += new System.EventHandler(this.udPAGain30_LostFocus); // // lblPAGainByBand40 // this.lblPAGainByBand40.Image = null; this.lblPAGainByBand40.Location = new System.Drawing.Point(16, 96); this.lblPAGainByBand40.Name = "lblPAGainByBand40"; this.lblPAGainByBand40.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand40.TabIndex = 7; this.lblPAGainByBand40.Text = "40m:"; // // udPAGain40 // this.udPAGain40.DecimalPlaces = 1; this.udPAGain40.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain40.Location = new System.Drawing.Point(56, 96); this.udPAGain40.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain40.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain40.Name = "udPAGain40"; this.udPAGain40.Size = new System.Drawing.Size(48, 20); this.udPAGain40.TabIndex = 6; this.udPAGain40.Value = new decimal(new int[] { 469, 0, 0, 65536 }); this.udPAGain40.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain40.LostFocus += new System.EventHandler(this.udPAGain40_LostFocus); // // lblPAGainByBand60 // this.lblPAGainByBand60.Image = null; this.lblPAGainByBand60.Location = new System.Drawing.Point(16, 72); this.lblPAGainByBand60.Name = "lblPAGainByBand60"; this.lblPAGainByBand60.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand60.TabIndex = 5; this.lblPAGainByBand60.Text = "60m:"; // // udPAGain60 // this.udPAGain60.DecimalPlaces = 1; this.udPAGain60.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udPAGain60.Location = new System.Drawing.Point(56, 72); this.udPAGain60.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPAGain60.Minimum = new decimal(new int[] { 38, 0, 0, 0 }); this.udPAGain60.Name = "udPAGain60"; this.udPAGain60.Size = new System.Drawing.Size(48, 20); this.udPAGain60.TabIndex = 4; this.udPAGain60.Value = new decimal(new int[] { 474, 0, 0, 65536 }); this.udPAGain60.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain60.LostFocus += new System.EventHandler(this.udPAGain60_LostFocus); // // lblPAGainByBand80 // this.lblPAGainByBand80.Image = null; this.lblPAGainByBand80.Location = new System.Drawing.Point(16, 48); this.lblPAGainByBand80.Name = "lblPAGainByBand80"; this.lblPAGainByBand80.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand80.TabIndex = 3; this.lblPAGainByBand80.Text = "80m:"; // // udPAGain80 // this.udPAGain80.DecimalPlaces = 1; this.udPAGain80.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain80.Location = new System.Drawing.Point(56, 48); this.udPAGain80.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udPAGain80.Minimum = new decimal(new int[] { 38, 0, 0, 0}); this.udPAGain80.Name = "udPAGain80"; this.udPAGain80.Size = new System.Drawing.Size(48, 20); this.udPAGain80.TabIndex = 2; this.udPAGain80.Value = new decimal(new int[] { 480, 0, 0, 65536}); this.udPAGain80.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain80.LostFocus += new System.EventHandler(this.udPAGain80_LostFocus); // // lblPAGainByBand160 // this.lblPAGainByBand160.Image = null; this.lblPAGainByBand160.Location = new System.Drawing.Point(16, 24); this.lblPAGainByBand160.Name = "lblPAGainByBand160"; this.lblPAGainByBand160.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand160.TabIndex = 1; this.lblPAGainByBand160.Text = "160m:"; // // udPAGain160 // this.udPAGain160.DecimalPlaces = 1; this.udPAGain160.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain160.Location = new System.Drawing.Point(56, 24); this.udPAGain160.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udPAGain160.Minimum = new decimal(new int[] { 38, 0, 0, 0}); this.udPAGain160.Name = "udPAGain160"; this.udPAGain160.Size = new System.Drawing.Size(48, 20); this.udPAGain160.TabIndex = 0; this.udPAGain160.Value = new decimal(new int[] { 490, 0, 0, 65536}); this.udPAGain160.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain160.LostFocus += new System.EventHandler(this.udPAGain160_LostFocus); // // chkPA6 // this.chkPA6.Image = null; this.chkPA6.Location = new System.Drawing.Point(216, 248); this.chkPA6.Name = "chkPA6"; this.chkPA6.Size = new System.Drawing.Size(36, 16); this.chkPA6.TabIndex = 84; this.chkPA6.Text = "6"; this.chkPA6.Visible = false; // // tpAppearance // this.tpAppearance.Controls.Add(this.tcAppearance); this.tpAppearance.Location = new System.Drawing.Point(4, 22); this.tpAppearance.Name = "tpAppearance"; this.tpAppearance.Size = new System.Drawing.Size(584, 286); this.tpAppearance.TabIndex = 6; this.tpAppearance.Text = "Appearance"; // // tcAppearance // this.tcAppearance.Controls.Add(this.tpAppearanceGeneral); this.tcAppearance.Controls.Add(this.tpAppearanceDisplay); this.tcAppearance.Controls.Add(this.tpAppearanceMeter); this.tcAppearance.Location = new System.Drawing.Point(0, 0); this.tcAppearance.Name = "tcAppearance"; this.tcAppearance.SelectedIndex = 0; this.tcAppearance.Size = new System.Drawing.Size(600, 344); this.tcAppearance.TabIndex = 40; // // tpAppearanceGeneral // this.tpAppearanceGeneral.BackColor = System.Drawing.SystemColors.Control; this.tpAppearanceGeneral.Controls.Add(this.btnSkinExport); this.tpAppearanceGeneral.Controls.Add(this.grpAppSkins); this.tpAppearanceGeneral.Controls.Add(this.lblGenBackground); this.tpAppearanceGeneral.Controls.Add(this.clrbtnGenBackground); this.tpAppearanceGeneral.Controls.Add(this.grpAppearanceBand); this.tpAppearanceGeneral.Controls.Add(this.grpAppearanceVFO); this.tpAppearanceGeneral.Controls.Add(this.clrbtnBtnSel); this.tpAppearanceGeneral.Controls.Add(this.lblAppearanceGenBtnSel); this.tpAppearanceGeneral.Location = new System.Drawing.Point(4, 22); this.tpAppearanceGeneral.Name = "tpAppearanceGeneral"; this.tpAppearanceGeneral.Size = new System.Drawing.Size(592, 318); this.tpAppearanceGeneral.TabIndex = 0; this.tpAppearanceGeneral.Text = "General"; // // btnSkinExport // this.btnSkinExport.Image = null; this.btnSkinExport.Location = new System.Drawing.Point(16, 65); this.btnSkinExport.Name = "btnSkinExport"; this.btnSkinExport.Size = new System.Drawing.Size(51, 23); this.btnSkinExport.TabIndex = 86; this.btnSkinExport.Text = "Export"; this.btnSkinExport.UseVisualStyleBackColor = true; this.btnSkinExport.Visible = false; this.btnSkinExport.Click += new System.EventHandler(this.btnSkinExport_Click); // // grpAppSkins // this.grpAppSkins.Controls.Add(this.comboAppSkin); this.grpAppSkins.Location = new System.Drawing.Point(10, 8); this.grpAppSkins.Name = "grpAppSkins"; this.grpAppSkins.Size = new System.Drawing.Size(128, 48); this.grpAppSkins.TabIndex = 85; this.grpAppSkins.TabStop = false; this.grpAppSkins.Text = "Skins"; // // comboAppSkin // this.comboAppSkin.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAppSkin.FormattingEnabled = true; this.comboAppSkin.Location = new System.Drawing.Point(6, 19); this.comboAppSkin.Name = "comboAppSkin"; this.comboAppSkin.Size = new System.Drawing.Size(116, 21); this.comboAppSkin.TabIndex = 0; this.comboAppSkin.SelectedIndexChanged += new System.EventHandler(this.comboAppSkin_SelectedIndexChanged); // // lblGenBackground // this.lblGenBackground.Image = null; this.lblGenBackground.Location = new System.Drawing.Point(16, 136); this.lblGenBackground.Name = "lblGenBackground"; this.lblGenBackground.Size = new System.Drawing.Size(72, 32); this.lblGenBackground.TabIndex = 84; this.lblGenBackground.Text = "Overall Background:"; this.lblGenBackground.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.lblGenBackground.Visible = false; // // clrbtnGenBackground // this.clrbtnGenBackground.Automatic = "Automatic"; this.clrbtnGenBackground.Color = System.Drawing.SystemColors.ControlDark; this.clrbtnGenBackground.Image = null; this.clrbtnGenBackground.Location = new System.Drawing.Point(88, 136); this.clrbtnGenBackground.MoreColors = "More Colors..."; this.clrbtnGenBackground.Name = "clrbtnGenBackground"; this.clrbtnGenBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnGenBackground.TabIndex = 83; this.clrbtnGenBackground.Visible = false; this.clrbtnGenBackground.Changed += new System.EventHandler(this.clrbtnGenBackground_Changed); // // grpAppearanceBand // this.grpAppearanceBand.Controls.Add(this.clrbtnBandBackground); this.grpAppearanceBand.Controls.Add(this.lblBandBackground); this.grpAppearanceBand.Controls.Add(this.clrbtnBandLight); this.grpAppearanceBand.Controls.Add(this.clrbtnBandDark); this.grpAppearanceBand.Controls.Add(this.lblBandLight); this.grpAppearanceBand.Controls.Add(this.lblBandDark); this.grpAppearanceBand.Controls.Add(this.clrbtnOutOfBand); this.grpAppearanceBand.Controls.Add(this.lblOutOfBand); this.grpAppearanceBand.Location = new System.Drawing.Point(296, 8); this.grpAppearanceBand.Name = "grpAppearanceBand"; this.grpAppearanceBand.Size = new System.Drawing.Size(144, 152); this.grpAppearanceBand.TabIndex = 74; this.grpAppearanceBand.TabStop = false; this.grpAppearanceBand.Text = "Band Data"; // // clrbtnBandBackground // this.clrbtnBandBackground.Automatic = "Automatic"; this.clrbtnBandBackground.Color = System.Drawing.Color.Black; this.clrbtnBandBackground.Image = null; this.clrbtnBandBackground.Location = new System.Drawing.Point(88, 120); this.clrbtnBandBackground.MoreColors = "More Colors..."; this.clrbtnBandBackground.Name = "clrbtnBandBackground"; this.clrbtnBandBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnBandBackground.TabIndex = 75; this.clrbtnBandBackground.Changed += new System.EventHandler(this.clrbtnBandBackground_Changed); // // lblBandBackground // this.lblBandBackground.Image = null; this.lblBandBackground.Location = new System.Drawing.Point(16, 120); this.lblBandBackground.Name = "lblBandBackground"; this.lblBandBackground.Size = new System.Drawing.Size(72, 24); this.lblBandBackground.TabIndex = 74; this.lblBandBackground.Text = "Background:"; // // clrbtnBandLight // this.clrbtnBandLight.Automatic = "Automatic"; this.clrbtnBandLight.Color = System.Drawing.Color.Lime; this.clrbtnBandLight.Image = null; this.clrbtnBandLight.Location = new System.Drawing.Point(88, 56); this.clrbtnBandLight.MoreColors = "More Colors..."; this.clrbtnBandLight.Name = "clrbtnBandLight"; this.clrbtnBandLight.Size = new System.Drawing.Size(40, 23); this.clrbtnBandLight.TabIndex = 70; this.clrbtnBandLight.Changed += new System.EventHandler(this.clrbtnBandLight_Changed); // // clrbtnBandDark // this.clrbtnBandDark.Automatic = "Automatic"; this.clrbtnBandDark.Color = System.Drawing.Color.Green; this.clrbtnBandDark.Image = null; this.clrbtnBandDark.Location = new System.Drawing.Point(88, 24); this.clrbtnBandDark.MoreColors = "More Colors..."; this.clrbtnBandDark.Name = "clrbtnBandDark"; this.clrbtnBandDark.Size = new System.Drawing.Size(40, 23); this.clrbtnBandDark.TabIndex = 69; this.clrbtnBandDark.Changed += new System.EventHandler(this.clrbtnBandDark_Changed); // // lblBandLight // this.lblBandLight.Image = null; this.lblBandLight.Location = new System.Drawing.Point(16, 56); this.lblBandLight.Name = "lblBandLight"; this.lblBandLight.Size = new System.Drawing.Size(64, 24); this.lblBandLight.TabIndex = 63; this.lblBandLight.Text = "Active:"; // // lblBandDark // this.lblBandDark.Image = null; this.lblBandDark.Location = new System.Drawing.Point(16, 24); this.lblBandDark.Name = "lblBandDark"; this.lblBandDark.Size = new System.Drawing.Size(64, 24); this.lblBandDark.TabIndex = 61; this.lblBandDark.Text = "Inactive:"; // // clrbtnOutOfBand // this.clrbtnOutOfBand.Automatic = "Automatic"; this.clrbtnOutOfBand.Color = System.Drawing.Color.DimGray; this.clrbtnOutOfBand.Image = null; this.clrbtnOutOfBand.Location = new System.Drawing.Point(88, 88); this.clrbtnOutOfBand.MoreColors = "More Colors..."; this.clrbtnOutOfBand.Name = "clrbtnOutOfBand"; this.clrbtnOutOfBand.Size = new System.Drawing.Size(40, 23); this.clrbtnOutOfBand.TabIndex = 73; this.clrbtnOutOfBand.Changed += new System.EventHandler(this.clrbtnOutOfBand_Changed); // // lblOutOfBand // this.lblOutOfBand.Image = null; this.lblOutOfBand.Location = new System.Drawing.Point(16, 88); this.lblOutOfBand.Name = "lblOutOfBand"; this.lblOutOfBand.Size = new System.Drawing.Size(72, 24); this.lblOutOfBand.TabIndex = 72; this.lblOutOfBand.Text = "Out Of Band:"; // // grpAppearanceVFO // this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOBackground); this.grpAppearanceVFO.Controls.Add(this.lblVFOBackground); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOSmallColor); this.grpAppearanceVFO.Controls.Add(this.lblVFOSmallColor); this.grpAppearanceVFO.Controls.Add(this.chkVFOSmallLSD); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOLight); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFODark); this.grpAppearanceVFO.Controls.Add(this.lblVFOPowerOn); this.grpAppearanceVFO.Controls.Add(this.lblVFOPowerOff); this.grpAppearanceVFO.Location = new System.Drawing.Point(144, 8); this.grpAppearanceVFO.Name = "grpAppearanceVFO"; this.grpAppearanceVFO.Size = new System.Drawing.Size(144, 184); this.grpAppearanceVFO.TabIndex = 39; this.grpAppearanceVFO.TabStop = false; this.grpAppearanceVFO.Text = "VFO"; // // clrbtnVFOBackground // this.clrbtnVFOBackground.Automatic = "Automatic"; this.clrbtnVFOBackground.Color = System.Drawing.Color.Black; this.clrbtnVFOBackground.Image = null; this.clrbtnVFOBackground.Location = new System.Drawing.Point(88, 88); this.clrbtnVFOBackground.MoreColors = "More Colors..."; this.clrbtnVFOBackground.Name = "clrbtnVFOBackground"; this.clrbtnVFOBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOBackground.TabIndex = 73; this.clrbtnVFOBackground.Changed += new System.EventHandler(this.clrbtnVFOBackground_Changed); // // lblVFOBackground // this.lblVFOBackground.Image = null; this.lblVFOBackground.Location = new System.Drawing.Point(16, 88); this.lblVFOBackground.Name = "lblVFOBackground"; this.lblVFOBackground.Size = new System.Drawing.Size(72, 24); this.lblVFOBackground.TabIndex = 72; this.lblVFOBackground.Text = "Background:"; // // clrbtnVFOSmallColor // this.clrbtnVFOSmallColor.Automatic = "Automatic"; this.clrbtnVFOSmallColor.Color = System.Drawing.Color.OrangeRed; this.clrbtnVFOSmallColor.Image = null; this.clrbtnVFOSmallColor.Location = new System.Drawing.Point(88, 152); this.clrbtnVFOSmallColor.MoreColors = "More Colors..."; this.clrbtnVFOSmallColor.Name = "clrbtnVFOSmallColor"; this.clrbtnVFOSmallColor.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOSmallColor.TabIndex = 71; this.clrbtnVFOSmallColor.Changed += new System.EventHandler(this.clrbtnVFOSmallColor_Changed); // // lblVFOSmallColor // this.lblVFOSmallColor.Image = null; this.lblVFOSmallColor.Location = new System.Drawing.Point(16, 152); this.lblVFOSmallColor.Name = "lblVFOSmallColor"; this.lblVFOSmallColor.Size = new System.Drawing.Size(72, 24); this.lblVFOSmallColor.TabIndex = 70; this.lblVFOSmallColor.Text = "Small Color:"; // // chkVFOSmallLSD // this.chkVFOSmallLSD.Checked = true; this.chkVFOSmallLSD.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVFOSmallLSD.Image = null; this.chkVFOSmallLSD.Location = new System.Drawing.Point(16, 120); this.chkVFOSmallLSD.Name = "chkVFOSmallLSD"; this.chkVFOSmallLSD.Size = new System.Drawing.Size(104, 24); this.chkVFOSmallLSD.TabIndex = 69; this.chkVFOSmallLSD.Text = "Small 3 Digits"; this.chkVFOSmallLSD.CheckedChanged += new System.EventHandler(this.chkVFOSmallLSD_CheckedChanged); // // clrbtnVFOLight // this.clrbtnVFOLight.Automatic = "Automatic"; this.clrbtnVFOLight.Color = System.Drawing.Color.Yellow; this.clrbtnVFOLight.Image = null; this.clrbtnVFOLight.Location = new System.Drawing.Point(88, 56); this.clrbtnVFOLight.MoreColors = "More Colors..."; this.clrbtnVFOLight.Name = "clrbtnVFOLight"; this.clrbtnVFOLight.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOLight.TabIndex = 68; this.clrbtnVFOLight.Changed += new System.EventHandler(this.clrbtnVFOLight_Changed); // // clrbtnVFODark // this.clrbtnVFODark.Automatic = "Automatic"; this.clrbtnVFODark.Color = System.Drawing.Color.Olive; this.clrbtnVFODark.Image = null; this.clrbtnVFODark.Location = new System.Drawing.Point(88, 24); this.clrbtnVFODark.MoreColors = "More Colors..."; this.clrbtnVFODark.Name = "clrbtnVFODark"; this.clrbtnVFODark.Size = new System.Drawing.Size(40, 23); this.clrbtnVFODark.TabIndex = 67; this.clrbtnVFODark.Changed += new System.EventHandler(this.clrbtnVFODark_Changed); // // lblVFOPowerOn // this.lblVFOPowerOn.Image = null; this.lblVFOPowerOn.Location = new System.Drawing.Point(16, 56); this.lblVFOPowerOn.Name = "lblVFOPowerOn"; this.lblVFOPowerOn.Size = new System.Drawing.Size(64, 24); this.lblVFOPowerOn.TabIndex = 59; this.lblVFOPowerOn.Text = "Active:"; // // lblVFOPowerOff // this.lblVFOPowerOff.Image = null; this.lblVFOPowerOff.Location = new System.Drawing.Point(16, 24); this.lblVFOPowerOff.Name = "lblVFOPowerOff"; this.lblVFOPowerOff.Size = new System.Drawing.Size(64, 24); this.lblVFOPowerOff.TabIndex = 57; this.lblVFOPowerOff.Text = "Inactive:"; // // clrbtnBtnSel // this.clrbtnBtnSel.Automatic = "Automatic"; this.clrbtnBtnSel.Color = System.Drawing.Color.Yellow; this.clrbtnBtnSel.Image = null; this.clrbtnBtnSel.Location = new System.Drawing.Point(88, 101); this.clrbtnBtnSel.MoreColors = "More Colors..."; this.clrbtnBtnSel.Name = "clrbtnBtnSel"; this.clrbtnBtnSel.Size = new System.Drawing.Size(40, 23); this.clrbtnBtnSel.TabIndex = 66; this.clrbtnBtnSel.Changed += new System.EventHandler(this.clrbtnBtnSel_Changed); // // lblAppearanceGenBtnSel // this.lblAppearanceGenBtnSel.Image = null; this.lblAppearanceGenBtnSel.Location = new System.Drawing.Point(16, 101); this.lblAppearanceGenBtnSel.Name = "lblAppearanceGenBtnSel"; this.lblAppearanceGenBtnSel.Size = new System.Drawing.Size(64, 32); this.lblAppearanceGenBtnSel.TabIndex = 55; this.lblAppearanceGenBtnSel.Text = "Button Selected:"; // // tpAppearanceDisplay // this.tpAppearanceDisplay.BackColor = System.Drawing.SystemColors.Control; this.tpAppearanceDisplay.Controls.Add(this.grpMainDisplay); this.tpAppearanceDisplay.Controls.Add(this.grpAppPanadapter); this.tpAppearanceDisplay.Controls.Add(this.grpDisplayPeakCursor); this.tpAppearanceDisplay.Location = new System.Drawing.Point(4, 22); this.tpAppearanceDisplay.Name = "tpAppearanceDisplay"; this.tpAppearanceDisplay.Size = new System.Drawing.Size(592, 318); this.tpAppearanceDisplay.TabIndex = 1; this.tpAppearanceDisplay.Text = "Display"; // // grpMainDisplay // this.grpMainDisplay.Controls.Add(this.clrbtnText); this.grpMainDisplay.Controls.Add(this.lblDisplayBackgroundColor); this.grpMainDisplay.Controls.Add(this.udDisplayLineWidth); this.grpMainDisplay.Controls.Add(this.lblDisplayDataLineColor); this.grpMainDisplay.Controls.Add(this.lblDisplayTextColor); this.grpMainDisplay.Controls.Add(this.lblDisplayLineWidth); this.grpMainDisplay.Controls.Add(this.clrbtnBackground); this.grpMainDisplay.Controls.Add(this.clrbtnGrid); this.grpMainDisplay.Controls.Add(this.lblDisplayZeroLineColor); this.grpMainDisplay.Controls.Add(this.clrbtnZeroLine); this.grpMainDisplay.Controls.Add(this.lblDisplayGridColor); this.grpMainDisplay.Controls.Add(this.clrbtnDataLine); this.grpMainDisplay.Location = new System.Drawing.Point(8, 6); this.grpMainDisplay.Name = "grpMainDisplay"; this.grpMainDisplay.Size = new System.Drawing.Size(373, 100); this.grpMainDisplay.TabIndex = 78; this.grpMainDisplay.TabStop = false; this.grpMainDisplay.Text = "Main Display"; // // clrbtnText // this.clrbtnText.Automatic = "Automatic"; this.clrbtnText.Color = System.Drawing.Color.Yellow; this.clrbtnText.Image = null; this.clrbtnText.Location = new System.Drawing.Point(200, 16); this.clrbtnText.MoreColors = "More Colors..."; this.clrbtnText.Name = "clrbtnText"; this.clrbtnText.Size = new System.Drawing.Size(40, 23); this.clrbtnText.TabIndex = 72; this.clrbtnText.Changed += new System.EventHandler(this.clrbtnText_Changed); // // lblDisplayBackgroundColor // this.lblDisplayBackgroundColor.Image = null; this.lblDisplayBackgroundColor.Location = new System.Drawing.Point(8, 21); this.lblDisplayBackgroundColor.Name = "lblDisplayBackgroundColor"; this.lblDisplayBackgroundColor.Size = new System.Drawing.Size(73, 24); this.lblDisplayBackgroundColor.TabIndex = 34; this.lblDisplayBackgroundColor.Text = "Background:"; // // udDisplayLineWidth // this.udDisplayLineWidth.DecimalPlaces = 1; this.udDisplayLineWidth.Increment = new decimal(new int[] { 1, 0, 0, 65536 }); this.udDisplayLineWidth.Location = new System.Drawing.Point(316, 61); this.udDisplayLineWidth.Maximum = new decimal(new int[] { 50, 0, 0, 65536 }); this.udDisplayLineWidth.Minimum = new decimal(new int[] { 1, 0, 0, 65536 }); this.udDisplayLineWidth.Name = "udDisplayLineWidth"; this.udDisplayLineWidth.Size = new System.Drawing.Size(40, 20); this.udDisplayLineWidth.TabIndex = 42; this.udDisplayLineWidth.Value = new decimal(new int[] { 10, 0, 0, 65536 }); this.udDisplayLineWidth.ValueChanged += new System.EventHandler(this.udDisplayLineWidth_ValueChanged); this.udDisplayLineWidth.LostFocus += new System.EventHandler(this.udDisplayLineWidth_LostFocus); // // lblDisplayDataLineColor // this.lblDisplayDataLineColor.Image = null; this.lblDisplayDataLineColor.Location = new System.Drawing.Point(132, 61); this.lblDisplayDataLineColor.Name = "lblDisplayDataLineColor"; this.lblDisplayDataLineColor.Size = new System.Drawing.Size(56, 24); this.lblDisplayDataLineColor.TabIndex = 41; this.lblDisplayDataLineColor.Text = "Data Line:"; // // lblDisplayTextColor // this.lblDisplayTextColor.Image = null; this.lblDisplayTextColor.Location = new System.Drawing.Point(130, 20); this.lblDisplayTextColor.Name = "lblDisplayTextColor"; this.lblDisplayTextColor.Size = new System.Drawing.Size(64, 24); this.lblDisplayTextColor.TabIndex = 39; this.lblDisplayTextColor.Text = "Text Color:"; // // lblDisplayLineWidth // this.lblDisplayLineWidth.Image = null; this.lblDisplayLineWidth.Location = new System.Drawing.Point(256, 61); this.lblDisplayLineWidth.Name = "lblDisplayLineWidth"; this.lblDisplayLineWidth.Size = new System.Drawing.Size(64, 36); this.lblDisplayLineWidth.TabIndex = 43; this.lblDisplayLineWidth.Text = "Data Line Width:"; // // clrbtnBackground // this.clrbtnBackground.Automatic = "Automatic"; this.clrbtnBackground.Color = System.Drawing.Color.Black; this.clrbtnBackground.Image = null; this.clrbtnBackground.Location = new System.Drawing.Point(80, 16); this.clrbtnBackground.MoreColors = "More Colors..."; this.clrbtnBackground.Name = "clrbtnBackground"; this.clrbtnBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnBackground.TabIndex = 68; this.clrbtnBackground.Changed += new System.EventHandler(this.clrbtnBackground_Changed); // // clrbtnGrid // this.clrbtnGrid.Automatic = "Automatic"; this.clrbtnGrid.Color = System.Drawing.Color.Purple; this.clrbtnGrid.Image = null; this.clrbtnGrid.Location = new System.Drawing.Point(316, 16); this.clrbtnGrid.MoreColors = "More Colors..."; this.clrbtnGrid.Name = "clrbtnGrid"; this.clrbtnGrid.Size = new System.Drawing.Size(40, 23); this.clrbtnGrid.TabIndex = 69; this.clrbtnGrid.Changed += new System.EventHandler(this.clrbtnGrid_Changed); // // lblDisplayZeroLineColor // this.lblDisplayZeroLineColor.Image = null; this.lblDisplayZeroLineColor.Location = new System.Drawing.Point(9, 61); this.lblDisplayZeroLineColor.Name = "lblDisplayZeroLineColor"; this.lblDisplayZeroLineColor.Size = new System.Drawing.Size(72, 24); this.lblDisplayZeroLineColor.TabIndex = 36; this.lblDisplayZeroLineColor.Text = "Zero Line:"; // // clrbtnZeroLine // this.clrbtnZeroLine.Automatic = "Automatic"; this.clrbtnZeroLine.Color = System.Drawing.Color.Red; this.clrbtnZeroLine.Image = null; this.clrbtnZeroLine.Location = new System.Drawing.Point(80, 56); this.clrbtnZeroLine.MoreColors = "More Colors..."; this.clrbtnZeroLine.Name = "clrbtnZeroLine"; this.clrbtnZeroLine.Size = new System.Drawing.Size(40, 23); this.clrbtnZeroLine.TabIndex = 70; this.clrbtnZeroLine.Changed += new System.EventHandler(this.clrbtnZeroLine_Changed); // // lblDisplayGridColor // this.lblDisplayGridColor.Image = null; this.lblDisplayGridColor.Location = new System.Drawing.Point(256, 21); this.lblDisplayGridColor.Name = "lblDisplayGridColor"; this.lblDisplayGridColor.Size = new System.Drawing.Size(62, 24); this.lblDisplayGridColor.TabIndex = 35; this.lblDisplayGridColor.Text = "Grid Color:"; // // clrbtnDataLine // this.clrbtnDataLine.Automatic = "Automatic"; this.clrbtnDataLine.Color = System.Drawing.Color.White; this.clrbtnDataLine.Image = null; this.clrbtnDataLine.Location = new System.Drawing.Point(200, 57); this.clrbtnDataLine.MoreColors = "More Colors..."; this.clrbtnDataLine.Name = "clrbtnDataLine"; this.clrbtnDataLine.Size = new System.Drawing.Size(40, 23); this.clrbtnDataLine.TabIndex = 73; this.clrbtnDataLine.Changed += new System.EventHandler(this.clrbtnDataLine_Changed); // // grpAppPanadapter // this.grpAppPanadapter.Controls.Add(this.lblBandSegmentBoxLineWidth); this.grpAppPanadapter.Controls.Add(this.udBandSegmentBoxLineWidth); this.grpAppPanadapter.Controls.Add(this.lblBandSegmentBox); this.grpAppPanadapter.Controls.Add(this.clrbtnBandSegmentBox); this.grpAppPanadapter.Controls.Add(this.lblMultiRXFilterAlpha); this.grpAppPanadapter.Controls.Add(this.chkShowFreqOffset); this.grpAppPanadapter.Controls.Add(this.tbMultiRXFilterAlpha); this.grpAppPanadapter.Controls.Add(this.clrbtnTXFilter); this.grpAppPanadapter.Controls.Add(this.lblRX1FilterAlpha); this.grpAppPanadapter.Controls.Add(this.lblTXFilterColor); this.grpAppPanadapter.Controls.Add(this.clrbtnSubRXZero); this.grpAppPanadapter.Controls.Add(this.tbRX1FilterAlpha); this.grpAppPanadapter.Controls.Add(this.lblSubRXZeroLine); this.grpAppPanadapter.Controls.Add(this.clrbtnSubRXFilter); this.grpAppPanadapter.Controls.Add(this.lblSubRXFilterColor); this.grpAppPanadapter.Controls.Add(this.clrbtnBandEdge); this.grpAppPanadapter.Controls.Add(this.lblBandEdge); this.grpAppPanadapter.Controls.Add(this.lblDisplayFilterColor); this.grpAppPanadapter.Controls.Add(this.clrbtnFilter); this.grpAppPanadapter.Location = new System.Drawing.Point(8, 112); this.grpAppPanadapter.Name = "grpAppPanadapter"; this.grpAppPanadapter.Size = new System.Drawing.Size(373, 152); this.grpAppPanadapter.TabIndex = 77; this.grpAppPanadapter.TabStop = false; this.grpAppPanadapter.Text = "Panadapter"; this.grpAppPanadapter.Enter += new System.EventHandler(this.grpAppPanadapter_Enter); // // lblBandSegmentBoxLineWidth // this.lblBandSegmentBoxLineWidth.Image = null; this.lblBandSegmentBoxLineWidth.Location = new System.Drawing.Point(228, 107); this.lblBandSegmentBoxLineWidth.Name = "lblBandSegmentBoxLineWidth"; this.lblBandSegmentBoxLineWidth.Size = new System.Drawing.Size(84, 34); this.lblBandSegmentBoxLineWidth.TabIndex = 87; this.lblBandSegmentBoxLineWidth.Text = "Band Segment Box Line Width:"; // // udBandSegmentBoxLineWidth // this.udBandSegmentBoxLineWidth.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.udBandSegmentBoxLineWidth.DecimalPlaces = 1; this.udBandSegmentBoxLineWidth.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udBandSegmentBoxLineWidth.Location = new System.Drawing.Point(316, 110); this.udBandSegmentBoxLineWidth.Maximum = new decimal(new int[] { 50, 0, 0, 65536 }); this.udBandSegmentBoxLineWidth.Minimum = new decimal(new int[] { 1, 0, 0, 0 }); this.udBandSegmentBoxLineWidth.Name = "udBandSegmentBoxLineWidth"; this.udBandSegmentBoxLineWidth.Size = new System.Drawing.Size(40, 20); this.udBandSegmentBoxLineWidth.TabIndex = 86; this.udBandSegmentBoxLineWidth.Value = new decimal(new int[] { 1, 0, 0, 0 }); this.udBandSegmentBoxLineWidth.ValueChanged += new System.EventHandler(this.udBandSegmentBoxLineWidth_ValueChanged); this.udBandSegmentBoxLineWidth.LostFocus += new System.EventHandler(this.udBandSegmentBoxLineWidth_LostFocus); // // lblBandSegmentBox // this.lblBandSegmentBox.Image = null; this.lblBandSegmentBox.Location = new System.Drawing.Point(256, 57); this.lblBandSegmentBox.Name = "lblBandSegmentBox"; this.lblBandSegmentBox.Size = new System.Drawing.Size(56, 40); this.lblBandSegmentBox.TabIndex = 85; this.lblBandSegmentBox.Text = "Band Segment Box Color:"; // // clrbtnBandSegmentBox // this.clrbtnBandSegmentBox.Automatic = "Automatic"; this.clrbtnBandSegmentBox.Color = System.Drawing.Color.Lime; this.clrbtnBandSegmentBox.Image = null; this.clrbtnBandSegmentBox.Location = new System.Drawing.Point(316, 65); this.clrbtnBandSegmentBox.MoreColors = "More Colors..."; this.clrbtnBandSegmentBox.Name = "clrbtnBandSegmentBox"; this.clrbtnBandSegmentBox.Size = new System.Drawing.Size(40, 23); this.clrbtnBandSegmentBox.TabIndex = 84; this.toolTip1.SetToolTip(this.clrbtnBandSegmentBox, "Changes the color of Band Segment boxes"); this.clrbtnBandSegmentBox.Changed += new System.EventHandler(this.clrbtnBandSegmentBox_Changed); // // lblMultiRXFilterAlpha // this.lblMultiRXFilterAlpha.Image = null; this.lblMultiRXFilterAlpha.Location = new System.Drawing.Point(9, 120); this.lblMultiRXFilterAlpha.Name = "lblMultiRXFilterAlpha"; this.lblMultiRXFilterAlpha.Size = new System.Drawing.Size(40, 18); this.lblMultiRXFilterAlpha.TabIndex = 83; this.lblMultiRXFilterAlpha.Text = "Alpha:"; // // chkShowFreqOffset // this.chkShowFreqOffset.Image = null; this.chkShowFreqOffset.Location = new System.Drawing.Point(135, 105); this.chkShowFreqOffset.Name = "chkShowFreqOffset"; this.chkShowFreqOffset.Size = new System.Drawing.Size(87, 32); this.chkShowFreqOffset.TabIndex = 77; this.chkShowFreqOffset.Text = "Show Freq Offset"; this.toolTip1.SetToolTip(this.chkShowFreqOffset, "Show the frequency offset from the VFO rather than the actual frequency in MHz on" + " the display."); this.chkShowFreqOffset.CheckedChanged += new System.EventHandler(this.chkShowFreqOffset_CheckedChanged); // // tbMultiRXFilterAlpha // this.tbMultiRXFilterAlpha.AutoSize = false; this.tbMultiRXFilterAlpha.Location = new System.Drawing.Point(54, 123); this.tbMultiRXFilterAlpha.Maximum = 255; this.tbMultiRXFilterAlpha.Name = "tbMultiRXFilterAlpha"; this.tbMultiRXFilterAlpha.Size = new System.Drawing.Size(66, 18); this.tbMultiRXFilterAlpha.TabIndex = 82; this.tbMultiRXFilterAlpha.TickFrequency = 64; this.tbMultiRXFilterAlpha.Value = 97; this.tbMultiRXFilterAlpha.Scroll += new System.EventHandler(this.tbMultiRXFilterAlpha_Scroll); // // clrbtnTXFilter // this.clrbtnTXFilter.Automatic = "Automatic"; this.clrbtnTXFilter.Color = System.Drawing.Color.Yellow; this.clrbtnTXFilter.Image = null; this.clrbtnTXFilter.Location = new System.Drawing.Point(200, 24); this.clrbtnTXFilter.MoreColors = "More Colors..."; this.clrbtnTXFilter.Name = "clrbtnTXFilter"; this.clrbtnTXFilter.Size = new System.Drawing.Size(40, 23); this.clrbtnTXFilter.TabIndex = 76; this.clrbtnTXFilter.Changed += new System.EventHandler(this.clrbtnTXFilter_Changed); // // lblRX1FilterAlpha // this.lblRX1FilterAlpha.Image = null; this.lblRX1FilterAlpha.Location = new System.Drawing.Point(8, 57); this.lblRX1FilterAlpha.Name = "lblRX1FilterAlpha"; this.lblRX1FilterAlpha.Size = new System.Drawing.Size(40, 18); this.lblRX1FilterAlpha.TabIndex = 79; this.lblRX1FilterAlpha.Text = "Alpha:"; // // lblTXFilterColor // this.lblTXFilterColor.Image = null; this.lblTXFilterColor.Location = new System.Drawing.Point(130, 24); this.lblTXFilterColor.Name = "lblTXFilterColor"; this.lblTXFilterColor.Size = new System.Drawing.Size(64, 32); this.lblTXFilterColor.TabIndex = 75; this.lblTXFilterColor.Text = "TX Filter Color:"; // // clrbtnSubRXZero // this.clrbtnSubRXZero.Automatic = "Automatic"; this.clrbtnSubRXZero.Color = System.Drawing.Color.LightSkyBlue; this.clrbtnSubRXZero.Image = null; this.clrbtnSubRXZero.Location = new System.Drawing.Point(200, 65); this.clrbtnSubRXZero.MoreColors = "More Colors..."; this.clrbtnSubRXZero.Name = "clrbtnSubRXZero"; this.clrbtnSubRXZero.Size = new System.Drawing.Size(40, 23); this.clrbtnSubRXZero.TabIndex = 81; this.clrbtnSubRXZero.Changed += new System.EventHandler(this.clrbtnSubRXZero_Changed); // // tbRX1FilterAlpha // this.tbRX1FilterAlpha.AutoSize = false; this.tbRX1FilterAlpha.Location = new System.Drawing.Point(54, 57); this.tbRX1FilterAlpha.Maximum = 255; this.tbRX1FilterAlpha.Name = "tbRX1FilterAlpha"; this.tbRX1FilterAlpha.Size = new System.Drawing.Size(66, 18); this.tbRX1FilterAlpha.TabIndex = 78; this.tbRX1FilterAlpha.TickFrequency = 64; this.tbRX1FilterAlpha.Value = 97; this.tbRX1FilterAlpha.Scroll += new System.EventHandler(this.tbRX1FilterAlpha_Scroll); // // lblSubRXZeroLine // this.lblSubRXZeroLine.Image = null; this.lblSubRXZeroLine.Location = new System.Drawing.Point(132, 65); this.lblSubRXZeroLine.Name = "lblSubRXZeroLine"; this.lblSubRXZeroLine.Size = new System.Drawing.Size(64, 32); this.lblSubRXZeroLine.TabIndex = 80; this.lblSubRXZeroLine.Text = "MultiRX Zero Line:"; // // clrbtnSubRXFilter // this.clrbtnSubRXFilter.Automatic = "Automatic"; this.clrbtnSubRXFilter.Color = System.Drawing.Color.Blue; this.clrbtnSubRXFilter.Image = null; this.clrbtnSubRXFilter.Location = new System.Drawing.Point(80, 88); this.clrbtnSubRXFilter.MoreColors = "More Colors..."; this.clrbtnSubRXFilter.Name = "clrbtnSubRXFilter"; this.clrbtnSubRXFilter.Size = new System.Drawing.Size(40, 23); this.clrbtnSubRXFilter.TabIndex = 79; this.clrbtnSubRXFilter.Changed += new System.EventHandler(this.clrbtnSubRXFilter_Changed); // // lblSubRXFilterColor // this.lblSubRXFilterColor.Image = null; this.lblSubRXFilterColor.Location = new System.Drawing.Point(9, 88); this.lblSubRXFilterColor.Name = "lblSubRXFilterColor"; this.lblSubRXFilterColor.Size = new System.Drawing.Size(64, 32); this.lblSubRXFilterColor.TabIndex = 78; this.lblSubRXFilterColor.Text = "MultiRX Filter Color:"; // // clrbtnBandEdge // this.clrbtnBandEdge.Automatic = "Automatic"; this.clrbtnBandEdge.Color = System.Drawing.Color.Red; this.clrbtnBandEdge.Image = null; this.clrbtnBandEdge.Location = new System.Drawing.Point(316, 24); this.clrbtnBandEdge.MoreColors = "More Colors..."; this.clrbtnBandEdge.Name = "clrbtnBandEdge"; this.clrbtnBandEdge.Size = new System.Drawing.Size(40, 23); this.clrbtnBandEdge.TabIndex = 71; this.clrbtnBandEdge.Changed += new System.EventHandler(this.clrbtnBandEdge_Changed); // // lblBandEdge // this.lblBandEdge.Image = null; this.lblBandEdge.Location = new System.Drawing.Point(256, 22); this.lblBandEdge.Name = "lblBandEdge"; this.lblBandEdge.Size = new System.Drawing.Size(64, 34); this.lblBandEdge.TabIndex = 65; this.lblBandEdge.Text = "Band Edge Color:"; this.lblBandEdge.Click += new System.EventHandler(this.lblBandEdge_Click); // // lblDisplayFilterColor // this.lblDisplayFilterColor.Image = null; this.lblDisplayFilterColor.Location = new System.Drawing.Point(8, 24); this.lblDisplayFilterColor.Name = "lblDisplayFilterColor"; this.lblDisplayFilterColor.Size = new System.Drawing.Size(64, 32); this.lblDisplayFilterColor.TabIndex = 45; this.lblDisplayFilterColor.Text = "Main RX Filter Color:"; // // clrbtnFilter // this.clrbtnFilter.Automatic = "Automatic"; this.clrbtnFilter.Color = System.Drawing.Color.White; this.clrbtnFilter.Image = null; this.clrbtnFilter.Location = new System.Drawing.Point(80, 24); this.clrbtnFilter.MoreColors = "More Colors..."; this.clrbtnFilter.Name = "clrbtnFilter"; this.clrbtnFilter.Size = new System.Drawing.Size(40, 23); this.clrbtnFilter.TabIndex = 71; this.clrbtnFilter.Changed += new System.EventHandler(this.clrbtnFilter_Changed); // // grpDisplayPeakCursor // this.grpDisplayPeakCursor.Controls.Add(this.clrbtnPeakBackground); this.grpDisplayPeakCursor.Controls.Add(this.lblPeakBackground); this.grpDisplayPeakCursor.Controls.Add(this.clrbtnPeakText); this.grpDisplayPeakCursor.Controls.Add(this.lblPeakText); this.grpDisplayPeakCursor.Location = new System.Drawing.Point(387, 6); this.grpDisplayPeakCursor.Name = "grpDisplayPeakCursor"; this.grpDisplayPeakCursor.Size = new System.Drawing.Size(136, 100); this.grpDisplayPeakCursor.TabIndex = 74; this.grpDisplayPeakCursor.TabStop = false; this.grpDisplayPeakCursor.Text = "Cursor/Peak Readout"; // // clrbtnPeakBackground // this.clrbtnPeakBackground.Automatic = "Automatic"; this.clrbtnPeakBackground.Color = System.Drawing.Color.Black; this.clrbtnPeakBackground.Image = null; this.clrbtnPeakBackground.Location = new System.Drawing.Point(78, 57); this.clrbtnPeakBackground.MoreColors = "More Colors..."; this.clrbtnPeakBackground.Name = "clrbtnPeakBackground"; this.clrbtnPeakBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnPeakBackground.TabIndex = 73; this.clrbtnPeakBackground.Changed += new System.EventHandler(this.clrbtnPeakBackground_Changed); // // lblPeakBackground // this.lblPeakBackground.Image = null; this.lblPeakBackground.Location = new System.Drawing.Point(8, 61); this.lblPeakBackground.Name = "lblPeakBackground"; this.lblPeakBackground.Size = new System.Drawing.Size(72, 24); this.lblPeakBackground.TabIndex = 72; this.lblPeakBackground.Text = "Background:"; // // clrbtnPeakText // this.clrbtnPeakText.Automatic = "Automatic"; this.clrbtnPeakText.Color = System.Drawing.Color.DodgerBlue; this.clrbtnPeakText.Image = null; this.clrbtnPeakText.Location = new System.Drawing.Point(78, 16); this.clrbtnPeakText.MoreColors = "More Colors..."; this.clrbtnPeakText.Name = "clrbtnPeakText"; this.clrbtnPeakText.Size = new System.Drawing.Size(40, 23); this.clrbtnPeakText.TabIndex = 71; this.clrbtnPeakText.Changed += new System.EventHandler(this.clrbtnPeakText_Changed); // // lblPeakText // this.lblPeakText.Image = null; this.lblPeakText.Location = new System.Drawing.Point(8, 24); this.lblPeakText.Name = "lblPeakText"; this.lblPeakText.Size = new System.Drawing.Size(64, 24); this.lblPeakText.TabIndex = 65; this.lblPeakText.Text = "Peak Text:"; // // tpAppearanceMeter // this.tpAppearanceMeter.BackColor = System.Drawing.SystemColors.Control; this.tpAppearanceMeter.Controls.Add(this.labelTS2); this.tpAppearanceMeter.Controls.Add(this.clrbtnMeterDigBackground); this.tpAppearanceMeter.Controls.Add(this.lblMeterDigitalText); this.tpAppearanceMeter.Controls.Add(this.clrbtnMeterDigText); this.tpAppearanceMeter.Controls.Add(this.grpMeterEdge); this.tpAppearanceMeter.Controls.Add(this.grpAppearanceMeter); this.tpAppearanceMeter.Controls.Add(this.lblMeterType); this.tpAppearanceMeter.Controls.Add(this.comboMeterType); this.tpAppearanceMeter.Location = new System.Drawing.Point(4, 22); this.tpAppearanceMeter.Name = "tpAppearanceMeter"; this.tpAppearanceMeter.Size = new System.Drawing.Size(592, 318); this.tpAppearanceMeter.TabIndex = 2; this.tpAppearanceMeter.Text = "Meter"; // // labelTS2 // this.labelTS2.Image = null; this.labelTS2.Location = new System.Drawing.Point(24, 80); this.labelTS2.Name = "labelTS2"; this.labelTS2.Size = new System.Drawing.Size(72, 32); this.labelTS2.TabIndex = 83; this.labelTS2.Text = "Digital Background:"; // // clrbtnMeterDigBackground // this.clrbtnMeterDigBackground.Automatic = "Automatic"; this.clrbtnMeterDigBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterDigBackground.Image = null; this.clrbtnMeterDigBackground.Location = new System.Drawing.Point(96, 80); this.clrbtnMeterDigBackground.MoreColors = "More Colors..."; this.clrbtnMeterDigBackground.Name = "clrbtnMeterDigBackground"; this.clrbtnMeterDigBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterDigBackground.TabIndex = 84; this.clrbtnMeterDigBackground.Changed += new System.EventHandler(this.clrbtnMeterDigBackground_Changed); // // lblMeterDigitalText // this.lblMeterDigitalText.Image = null; this.lblMeterDigitalText.Location = new System.Drawing.Point(24, 48); this.lblMeterDigitalText.Name = "lblMeterDigitalText"; this.lblMeterDigitalText.Size = new System.Drawing.Size(72, 24); this.lblMeterDigitalText.TabIndex = 81; this.lblMeterDigitalText.Text = "Digital Text:"; // // clrbtnMeterDigText // this.clrbtnMeterDigText.Automatic = "Automatic"; this.clrbtnMeterDigText.Color = System.Drawing.Color.Yellow; this.clrbtnMeterDigText.Image = null; this.clrbtnMeterDigText.Location = new System.Drawing.Point(96, 48); this.clrbtnMeterDigText.MoreColors = "More Colors..."; this.clrbtnMeterDigText.Name = "clrbtnMeterDigText"; this.clrbtnMeterDigText.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterDigText.TabIndex = 82; this.clrbtnMeterDigText.Changed += new System.EventHandler(this.clrbtnMeterDigText_Changed); // // grpMeterEdge // this.grpMeterEdge.Controls.Add(this.clrbtnEdgeIndicator); this.grpMeterEdge.Controls.Add(this.labelTS1); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeBackground); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeBackground); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeHigh); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeHigh); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeLow); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeLow); this.grpMeterEdge.Location = new System.Drawing.Point(312, 8); this.grpMeterEdge.Name = "grpMeterEdge"; this.grpMeterEdge.Size = new System.Drawing.Size(136, 160); this.grpMeterEdge.TabIndex = 80; this.grpMeterEdge.TabStop = false; this.grpMeterEdge.Text = "Edge Style"; // // clrbtnEdgeIndicator // this.clrbtnEdgeIndicator.Automatic = "Automatic"; this.clrbtnEdgeIndicator.Color = System.Drawing.Color.Yellow; this.clrbtnEdgeIndicator.ForeColor = System.Drawing.Color.Black; this.clrbtnEdgeIndicator.Image = null; this.clrbtnEdgeIndicator.Location = new System.Drawing.Point(80, 120); this.clrbtnEdgeIndicator.MoreColors = "More Colors..."; this.clrbtnEdgeIndicator.Name = "clrbtnEdgeIndicator"; this.clrbtnEdgeIndicator.Size = new System.Drawing.Size(40, 23); this.clrbtnEdgeIndicator.TabIndex = 79; this.clrbtnEdgeIndicator.Changed += new System.EventHandler(this.clrbtnEdgeIndicator_Changed); // // labelTS1 // this.labelTS1.Image = null; this.labelTS1.Location = new System.Drawing.Point(8, 120); this.labelTS1.Name = "labelTS1"; this.labelTS1.Size = new System.Drawing.Size(56, 24); this.labelTS1.TabIndex = 78; this.labelTS1.Text = "Indicator:"; // // clrbtnMeterEdgeBackground // this.clrbtnMeterEdgeBackground.Automatic = "Automatic"; this.clrbtnMeterEdgeBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterEdgeBackground.ForeColor = System.Drawing.Color.Black; this.clrbtnMeterEdgeBackground.Image = null; this.clrbtnMeterEdgeBackground.Location = new System.Drawing.Point(80, 88); this.clrbtnMeterEdgeBackground.MoreColors = "More Colors..."; this.clrbtnMeterEdgeBackground.Name = "clrbtnMeterEdgeBackground"; this.clrbtnMeterEdgeBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeBackground.TabIndex = 77; this.clrbtnMeterEdgeBackground.Changed += new System.EventHandler(this.clrbtnMeterEdgeBackground_Changed); // // lblMeterEdgeBackground // this.lblMeterEdgeBackground.Image = null; this.lblMeterEdgeBackground.Location = new System.Drawing.Point(8, 88); this.lblMeterEdgeBackground.Name = "lblMeterEdgeBackground"; this.lblMeterEdgeBackground.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeBackground.TabIndex = 76; this.lblMeterEdgeBackground.Text = "Background:"; // // clrbtnMeterEdgeHigh // this.clrbtnMeterEdgeHigh.Automatic = "Automatic"; this.clrbtnMeterEdgeHigh.Color = System.Drawing.Color.Red; this.clrbtnMeterEdgeHigh.Image = null; this.clrbtnMeterEdgeHigh.Location = new System.Drawing.Point(80, 56); this.clrbtnMeterEdgeHigh.MoreColors = "More Colors..."; this.clrbtnMeterEdgeHigh.Name = "clrbtnMeterEdgeHigh"; this.clrbtnMeterEdgeHigh.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeHigh.TabIndex = 75; this.clrbtnMeterEdgeHigh.Changed += new System.EventHandler(this.clrbtnMeterEdgeHigh_Changed); // // lblMeterEdgeHigh // this.lblMeterEdgeHigh.Image = null; this.lblMeterEdgeHigh.Location = new System.Drawing.Point(8, 56); this.lblMeterEdgeHigh.Name = "lblMeterEdgeHigh"; this.lblMeterEdgeHigh.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeHigh.TabIndex = 53; this.lblMeterEdgeHigh.Text = "High Color:"; // // lblMeterEdgeLow // this.lblMeterEdgeLow.Image = null; this.lblMeterEdgeLow.Location = new System.Drawing.Point(8, 24); this.lblMeterEdgeLow.Name = "lblMeterEdgeLow"; this.lblMeterEdgeLow.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeLow.TabIndex = 51; this.lblMeterEdgeLow.Text = "Low Color:"; // // clrbtnMeterEdgeLow // this.clrbtnMeterEdgeLow.Automatic = "Automatic"; this.clrbtnMeterEdgeLow.Color = System.Drawing.Color.White; this.clrbtnMeterEdgeLow.Image = null; this.clrbtnMeterEdgeLow.Location = new System.Drawing.Point(80, 24); this.clrbtnMeterEdgeLow.MoreColors = "More Colors..."; this.clrbtnMeterEdgeLow.Name = "clrbtnMeterEdgeLow"; this.clrbtnMeterEdgeLow.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeLow.TabIndex = 74; this.clrbtnMeterEdgeLow.Changed += new System.EventHandler(this.clrbtnMeterEdgeLow_Changed); // // grpAppearanceMeter // this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterBackground); this.grpAppearanceMeter.Controls.Add(this.lblMeterBackground); this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterRight); this.grpAppearanceMeter.Controls.Add(this.lblAppearanceMeterRight); this.grpAppearanceMeter.Controls.Add(this.lblAppearanceMeterLeft); this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterLeft); this.grpAppearanceMeter.Location = new System.Drawing.Point(168, 8); this.grpAppearanceMeter.Name = "grpAppearanceMeter"; this.grpAppearanceMeter.Size = new System.Drawing.Size(136, 120); this.grpAppearanceMeter.TabIndex = 38; this.grpAppearanceMeter.TabStop = false; this.grpAppearanceMeter.Text = "Original Style"; // // clrbtnMeterBackground // this.clrbtnMeterBackground.Automatic = "Automatic"; this.clrbtnMeterBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterBackground.Image = null; this.clrbtnMeterBackground.Location = new System.Drawing.Point(80, 88); this.clrbtnMeterBackground.MoreColors = "More Colors..."; this.clrbtnMeterBackground.Name = "clrbtnMeterBackground"; this.clrbtnMeterBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterBackground.TabIndex = 77; this.clrbtnMeterBackground.Changed += new System.EventHandler(this.clrbtnMeterBackground_Changed); // // lblMeterBackground // this.lblMeterBackground.Image = null; this.lblMeterBackground.Location = new System.Drawing.Point(8, 88); this.lblMeterBackground.Name = "lblMeterBackground"; this.lblMeterBackground.Size = new System.Drawing.Size(72, 24); this.lblMeterBackground.TabIndex = 76; this.lblMeterBackground.Text = "Background:"; // // clrbtnMeterRight // this.clrbtnMeterRight.Automatic = "Automatic"; this.clrbtnMeterRight.Color = System.Drawing.Color.Lime; this.clrbtnMeterRight.Image = null; this.clrbtnMeterRight.Location = new System.Drawing.Point(80, 56); this.clrbtnMeterRight.MoreColors = "More Colors..."; this.clrbtnMeterRight.Name = "clrbtnMeterRight"; this.clrbtnMeterRight.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterRight.TabIndex = 75; this.clrbtnMeterRight.Changed += new System.EventHandler(this.clrbtnMeterRight_Changed); // // lblAppearanceMeterRight // this.lblAppearanceMeterRight.Image = null; this.lblAppearanceMeterRight.Location = new System.Drawing.Point(8, 56); this.lblAppearanceMeterRight.Name = "lblAppearanceMeterRight"; this.lblAppearanceMeterRight.Size = new System.Drawing.Size(72, 24); this.lblAppearanceMeterRight.TabIndex = 53; this.lblAppearanceMeterRight.Text = "Right Color:"; // // lblAppearanceMeterLeft // this.lblAppearanceMeterLeft.Image = null; this.lblAppearanceMeterLeft.Location = new System.Drawing.Point(8, 24); this.lblAppearanceMeterLeft.Name = "lblAppearanceMeterLeft"; this.lblAppearanceMeterLeft.Size = new System.Drawing.Size(72, 24); this.lblAppearanceMeterLeft.TabIndex = 51; this.lblAppearanceMeterLeft.Text = "Left Color:"; // // clrbtnMeterLeft // this.clrbtnMeterLeft.Automatic = "Automatic"; this.clrbtnMeterLeft.Color = System.Drawing.Color.Green; this.clrbtnMeterLeft.Image = null; this.clrbtnMeterLeft.Location = new System.Drawing.Point(80, 24); this.clrbtnMeterLeft.MoreColors = "More Colors..."; this.clrbtnMeterLeft.Name = "clrbtnMeterLeft"; this.clrbtnMeterLeft.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterLeft.TabIndex = 74; this.clrbtnMeterLeft.Changed += new System.EventHandler(this.clrbtnMeterLeft_Changed); // // lblMeterType // this.lblMeterType.Image = null; this.lblMeterType.Location = new System.Drawing.Point(16, 16); this.lblMeterType.Name = "lblMeterType"; this.lblMeterType.Size = new System.Drawing.Size(64, 24); this.lblMeterType.TabIndex = 79; this.lblMeterType.Text = "Meter Type:"; // // comboMeterType // this.comboMeterType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboMeterType.DropDownWidth = 80; this.comboMeterType.Items.AddRange(new object[] { "Original","Edge"}); this.comboMeterType.Location = new System.Drawing.Point(80, 16); this.comboMeterType.Name = "comboMeterType"; this.comboMeterType.Size = new System.Drawing.Size(80, 21); this.comboMeterType.TabIndex = 78; this.toolTip1.SetToolTip(this.comboMeterType, "Changes the appearance of the Multimeter on the front panel."); this.comboMeterType.SelectedIndexChanged += new System.EventHandler(this.comboMeterType_SelectedIndexChanged); // // tpKeyboard // this.tpKeyboard.Controls.Add(this.grpKBXIT); this.tpKeyboard.Controls.Add(this.grpKBRIT); this.tpKeyboard.Controls.Add(this.grpKBMode); this.tpKeyboard.Controls.Add(this.grpKBBand); this.tpKeyboard.Controls.Add(this.grpKBTune); this.tpKeyboard.Controls.Add(this.grpKBFilter); this.tpKeyboard.Controls.Add(this.grpKBCW); this.tpKeyboard.Location = new System.Drawing.Point(4, 22); this.tpKeyboard.Name = "tpKeyboard"; this.tpKeyboard.Size = new System.Drawing.Size(584, 286); this.tpKeyboard.TabIndex = 4; this.tpKeyboard.Text = "Keyboard"; // // grpKBXIT // this.grpKBXIT.Controls.Add(this.lblKBXITUp); this.grpKBXIT.Controls.Add(this.lblKBXITDown); this.grpKBXIT.Controls.Add(this.comboKBXITUp); this.grpKBXIT.Controls.Add(this.comboKBXITDown); this.grpKBXIT.Location = new System.Drawing.Point(136, 192); this.grpKBXIT.Name = "grpKBXIT"; this.grpKBXIT.Size = new System.Drawing.Size(112, 72); this.grpKBXIT.TabIndex = 16; this.grpKBXIT.TabStop = false; this.grpKBXIT.Text = "XIT"; // // lblKBXITUp // this.lblKBXITUp.Image = null; this.lblKBXITUp.Location = new System.Drawing.Point(8, 16); this.lblKBXITUp.Name = "lblKBXITUp"; this.lblKBXITUp.Size = new System.Drawing.Size(40, 16); this.lblKBXITUp.TabIndex = 10; this.lblKBXITUp.Text = "Up:"; this.lblKBXITUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBXITDown // this.lblKBXITDown.Image = null; this.lblKBXITDown.Location = new System.Drawing.Point(8, 40); this.lblKBXITDown.Name = "lblKBXITDown"; this.lblKBXITDown.Size = new System.Drawing.Size(40, 16); this.lblKBXITDown.TabIndex = 9; this.lblKBXITDown.Text = "Down:"; this.lblKBXITDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBXITUp // this.comboKBXITUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBXITUp.DropDownWidth = 56; this.comboKBXITUp.Location = new System.Drawing.Point(48, 16); this.comboKBXITUp.Name = "comboKBXITUp"; this.comboKBXITUp.Size = new System.Drawing.Size(56, 21); this.comboKBXITUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBXITUp, "Adjust XIT control up 1kHz."); this.comboKBXITUp.SelectedIndexChanged += new System.EventHandler(this.comboKBXITUp_SelectedIndexChanged); // // comboKBXITDown // this.comboKBXITDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBXITDown.DropDownWidth = 56; this.comboKBXITDown.Location = new System.Drawing.Point(48, 40); this.comboKBXITDown.Name = "comboKBXITDown"; this.comboKBXITDown.Size = new System.Drawing.Size(56, 21); this.comboKBXITDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBXITDown, "Adjust the XIT control down 1kHz."); this.comboKBXITDown.SelectedIndexChanged += new System.EventHandler(this.comboKBXITDown_SelectedIndexChanged); // // grpKBRIT // this.grpKBRIT.Controls.Add(this.lblKBRitUp); this.grpKBRIT.Controls.Add(this.lblKBRITDown); this.grpKBRIT.Controls.Add(this.comboKBRITUp); this.grpKBRIT.Controls.Add(this.comboKBRITDown); this.grpKBRIT.Location = new System.Drawing.Point(8, 192); this.grpKBRIT.Name = "grpKBRIT"; this.grpKBRIT.Size = new System.Drawing.Size(112, 72); this.grpKBRIT.TabIndex = 15; this.grpKBRIT.TabStop = false; this.grpKBRIT.Text = "RIT"; // // lblKBRitUp // this.lblKBRitUp.Image = null; this.lblKBRitUp.Location = new System.Drawing.Point(8, 16); this.lblKBRitUp.Name = "lblKBRitUp"; this.lblKBRitUp.Size = new System.Drawing.Size(40, 16); this.lblKBRitUp.TabIndex = 10; this.lblKBRitUp.Text = "Up:"; this.lblKBRitUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBRITDown // this.lblKBRITDown.Image = null; this.lblKBRITDown.Location = new System.Drawing.Point(8, 40); this.lblKBRITDown.Name = "lblKBRITDown"; this.lblKBRITDown.Size = new System.Drawing.Size(40, 16); this.lblKBRITDown.TabIndex = 9; this.lblKBRITDown.Text = "Down:"; this.lblKBRITDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBRITUp // this.comboKBRITUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBRITUp.DropDownWidth = 56; this.comboKBRITUp.Location = new System.Drawing.Point(48, 16); this.comboKBRITUp.Name = "comboKBRITUp"; this.comboKBRITUp.Size = new System.Drawing.Size(56, 21); this.comboKBRITUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBRITUp, "Adjust RIT control up 1kHz."); this.comboKBRITUp.SelectedIndexChanged += new System.EventHandler(this.comboKBRITUp_SelectedIndexChanged); // // comboKBRITDown // this.comboKBRITDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBRITDown.DropDownWidth = 56; this.comboKBRITDown.Location = new System.Drawing.Point(48, 40); this.comboKBRITDown.Name = "comboKBRITDown"; this.comboKBRITDown.Size = new System.Drawing.Size(56, 21); this.comboKBRITDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBRITDown, "Adjust RIT control down 1kHz."); this.comboKBRITDown.SelectedIndexChanged += new System.EventHandler(this.comboKBRITDown_SelectedIndexChanged); // // grpKBMode // this.grpKBMode.Controls.Add(this.lblKBModeUp); this.grpKBMode.Controls.Add(this.lblKBModeDown); this.grpKBMode.Controls.Add(this.comboKBModeUp); this.grpKBMode.Controls.Add(this.comboKBModeDown); this.grpKBMode.Location = new System.Drawing.Point(264, 112); this.grpKBMode.Name = "grpKBMode"; this.grpKBMode.Size = new System.Drawing.Size(112, 72); this.grpKBMode.TabIndex = 14; this.grpKBMode.TabStop = false; this.grpKBMode.Text = "Mode"; // // lblKBModeUp // this.lblKBModeUp.Image = null; this.lblKBModeUp.Location = new System.Drawing.Point(8, 16); this.lblKBModeUp.Name = "lblKBModeUp"; this.lblKBModeUp.Size = new System.Drawing.Size(40, 16); this.lblKBModeUp.TabIndex = 10; this.lblKBModeUp.Text = "Up:"; this.lblKBModeUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBModeDown // this.lblKBModeDown.Image = null; this.lblKBModeDown.Location = new System.Drawing.Point(8, 40); this.lblKBModeDown.Name = "lblKBModeDown"; this.lblKBModeDown.Size = new System.Drawing.Size(40, 16); this.lblKBModeDown.TabIndex = 9; this.lblKBModeDown.Text = "Down:"; this.lblKBModeDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBModeUp // this.comboKBModeUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBModeUp.DropDownWidth = 56; this.comboKBModeUp.Location = new System.Drawing.Point(48, 16); this.comboKBModeUp.Name = "comboKBModeUp"; this.comboKBModeUp.Size = new System.Drawing.Size(56, 21); this.comboKBModeUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBModeUp, "Select the Next mode."); this.comboKBModeUp.SelectedIndexChanged += new System.EventHandler(this.comboKBModeUp_SelectedIndexChanged); // // comboKBModeDown // this.comboKBModeDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBModeDown.DropDownWidth = 56; this.comboKBModeDown.Location = new System.Drawing.Point(48, 40); this.comboKBModeDown.Name = "comboKBModeDown"; this.comboKBModeDown.Size = new System.Drawing.Size(56, 21); this.comboKBModeDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBModeDown, "Select the Previous mode."); this.comboKBModeDown.SelectedIndexChanged += new System.EventHandler(this.comboKBModeDown_SelectedIndexChanged); // // grpKBBand // this.grpKBBand.Controls.Add(this.lblKBBandUp); this.grpKBBand.Controls.Add(this.lblKBBandDown); this.grpKBBand.Controls.Add(this.comboKBBandUp); this.grpKBBand.Controls.Add(this.comboKBBandDown); this.grpKBBand.Location = new System.Drawing.Point(8, 112); this.grpKBBand.Name = "grpKBBand"; this.grpKBBand.Size = new System.Drawing.Size(112, 72); this.grpKBBand.TabIndex = 12; this.grpKBBand.TabStop = false; this.grpKBBand.Text = "Band"; // // lblKBBandUp // this.lblKBBandUp.Image = null; this.lblKBBandUp.Location = new System.Drawing.Point(8, 16); this.lblKBBandUp.Name = "lblKBBandUp"; this.lblKBBandUp.Size = new System.Drawing.Size(40, 16); this.lblKBBandUp.TabIndex = 10; this.lblKBBandUp.Text = "Up:"; this.lblKBBandUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBBandDown // this.lblKBBandDown.Image = null; this.lblKBBandDown.Location = new System.Drawing.Point(8, 40); this.lblKBBandDown.Name = "lblKBBandDown"; this.lblKBBandDown.Size = new System.Drawing.Size(40, 16); this.lblKBBandDown.TabIndex = 9; this.lblKBBandDown.Text = "Down:"; this.lblKBBandDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBBandUp // this.comboKBBandUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBBandUp.DropDownWidth = 56; this.comboKBBandUp.Location = new System.Drawing.Point(48, 16); this.comboKBBandUp.Name = "comboKBBandUp"; this.comboKBBandUp.Size = new System.Drawing.Size(56, 21); this.comboKBBandUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBBandUp, "Jump to the next band stack memory."); this.comboKBBandUp.SelectedIndexChanged += new System.EventHandler(this.comboKBBandUp_SelectedIndexChanged); // // comboKBBandDown // this.comboKBBandDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBBandDown.DropDownWidth = 56; this.comboKBBandDown.Location = new System.Drawing.Point(48, 40); this.comboKBBandDown.Name = "comboKBBandDown"; this.comboKBBandDown.Size = new System.Drawing.Size(56, 21); this.comboKBBandDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBBandDown, "Jump to the previous band stack memory."); this.comboKBBandDown.SelectedIndexChanged += new System.EventHandler(this.comboKBBandDown_SelectedIndexChanged); // // grpKBTune // this.grpKBTune.Controls.Add(this.lblKBTuneDigit); this.grpKBTune.Controls.Add(this.lblKBTune7); this.grpKBTune.Controls.Add(this.lblKBTune6); this.grpKBTune.Controls.Add(this.lblKBTune5); this.grpKBTune.Controls.Add(this.lblKBTune4); this.grpKBTune.Controls.Add(this.lblKBTune3); this.grpKBTune.Controls.Add(this.lblKBTune2); this.grpKBTune.Controls.Add(this.comboKBTuneUp7); this.grpKBTune.Controls.Add(this.comboKBTuneDown7); this.grpKBTune.Controls.Add(this.comboKBTuneUp6); this.grpKBTune.Controls.Add(this.comboKBTuneDown6); this.grpKBTune.Controls.Add(this.comboKBTuneUp5); this.grpKBTune.Controls.Add(this.comboKBTuneDown5); this.grpKBTune.Controls.Add(this.comboKBTuneUp4); this.grpKBTune.Controls.Add(this.comboKBTuneDown4); this.grpKBTune.Controls.Add(this.lblKBTune1); this.grpKBTune.Controls.Add(this.lblKBTuneUp); this.grpKBTune.Controls.Add(this.lblKBTuneDown); this.grpKBTune.Controls.Add(this.comboKBTuneUp3); this.grpKBTune.Controls.Add(this.comboKBTuneDown3); this.grpKBTune.Controls.Add(this.comboKBTuneUp1); this.grpKBTune.Controls.Add(this.comboKBTuneUp2); this.grpKBTune.Controls.Add(this.comboKBTuneDown1); this.grpKBTune.Controls.Add(this.comboKBTuneDown2); this.grpKBTune.Location = new System.Drawing.Point(8, 8); this.grpKBTune.Name = "grpKBTune"; this.grpKBTune.Size = new System.Drawing.Size(456, 96); this.grpKBTune.TabIndex = 11; this.grpKBTune.TabStop = false; this.grpKBTune.Text = "Tune"; // // lblKBTuneDigit // this.lblKBTuneDigit.Image = null; this.lblKBTuneDigit.Location = new System.Drawing.Point(16, 16); this.lblKBTuneDigit.Name = "lblKBTuneDigit"; this.lblKBTuneDigit.Size = new System.Drawing.Size(32, 16); this.lblKBTuneDigit.TabIndex = 26; this.lblKBTuneDigit.Text = "Digit"; // // lblKBTune7 // this.lblKBTune7.Image = null; this.lblKBTune7.Location = new System.Drawing.Point(392, 16); this.lblKBTune7.Name = "lblKBTune7"; this.lblKBTune7.Size = new System.Drawing.Size(56, 16); this.lblKBTune7.TabIndex = 25; this.lblKBTune7.Text = "0.00000x"; this.lblKBTune7.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune6 // this.lblKBTune6.Image = null; this.lblKBTune6.Location = new System.Drawing.Point(336, 16); this.lblKBTune6.Name = "lblKBTune6"; this.lblKBTune6.Size = new System.Drawing.Size(56, 16); this.lblKBTune6.TabIndex = 24; this.lblKBTune6.Text = "0.0000x0"; this.lblKBTune6.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune5 // this.lblKBTune5.Image = null; this.lblKBTune5.Location = new System.Drawing.Point(280, 16); this.lblKBTune5.Name = "lblKBTune5"; this.lblKBTune5.Size = new System.Drawing.Size(56, 16); this.lblKBTune5.TabIndex = 23; this.lblKBTune5.Text = "0.000x00"; this.lblKBTune5.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune4 // this.lblKBTune4.Image = null; this.lblKBTune4.Location = new System.Drawing.Point(224, 16); this.lblKBTune4.Name = "lblKBTune4"; this.lblKBTune4.Size = new System.Drawing.Size(56, 16); this.lblKBTune4.TabIndex = 22; this.lblKBTune4.Text = "0.00x000"; this.lblKBTune4.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune3 // this.lblKBTune3.Image = null; this.lblKBTune3.Location = new System.Drawing.Point(168, 16); this.lblKBTune3.Name = "lblKBTune3"; this.lblKBTune3.Size = new System.Drawing.Size(56, 16); this.lblKBTune3.TabIndex = 21; this.lblKBTune3.Text = "0.0x0000"; this.lblKBTune3.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune2 // this.lblKBTune2.Image = null; this.lblKBTune2.Location = new System.Drawing.Point(112, 16); this.lblKBTune2.Name = "lblKBTune2"; this.lblKBTune2.Size = new System.Drawing.Size(56, 16); this.lblKBTune2.TabIndex = 20; this.lblKBTune2.Text = "0.x00000"; this.lblKBTune2.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBTuneUp7 // this.comboKBTuneUp7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp7.DropDownWidth = 56; this.comboKBTuneUp7.Location = new System.Drawing.Point(392, 40); this.comboKBTuneUp7.Name = "comboKBTuneUp7"; this.comboKBTuneUp7.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp7.TabIndex = 19; this.toolTip1.SetToolTip(this.comboKBTuneUp7, "Tune Up 1Hz"); this.comboKBTuneUp7.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp7_SelectedIndexChanged); // // comboKBTuneDown7 // this.comboKBTuneDown7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown7.DropDownWidth = 56; this.comboKBTuneDown7.Location = new System.Drawing.Point(392, 64); this.comboKBTuneDown7.Name = "comboKBTuneDown7"; this.comboKBTuneDown7.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown7.TabIndex = 18; this.toolTip1.SetToolTip(this.comboKBTuneDown7, "Tune Down 1Hz"); this.comboKBTuneDown7.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown7_SelectedIndexChanged); // // comboKBTuneUp6 // this.comboKBTuneUp6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp6.DropDownWidth = 56; this.comboKBTuneUp6.Location = new System.Drawing.Point(336, 40); this.comboKBTuneUp6.Name = "comboKBTuneUp6"; this.comboKBTuneUp6.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp6.TabIndex = 17; this.toolTip1.SetToolTip(this.comboKBTuneUp6, "Tune Up 10Hz"); this.comboKBTuneUp6.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp6_SelectedIndexChanged); // // comboKBTuneDown6 // this.comboKBTuneDown6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown6.DropDownWidth = 56; this.comboKBTuneDown6.Location = new System.Drawing.Point(336, 64); this.comboKBTuneDown6.Name = "comboKBTuneDown6"; this.comboKBTuneDown6.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown6.TabIndex = 16; this.toolTip1.SetToolTip(this.comboKBTuneDown6, "Tune Down 10Hz"); this.comboKBTuneDown6.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown6_SelectedIndexChanged); // // comboKBTuneUp5 // this.comboKBTuneUp5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp5.DropDownWidth = 56; this.comboKBTuneUp5.Location = new System.Drawing.Point(280, 40); this.comboKBTuneUp5.Name = "comboKBTuneUp5"; this.comboKBTuneUp5.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp5.TabIndex = 15; this.toolTip1.SetToolTip(this.comboKBTuneUp5, "Tune Up 100Hz"); this.comboKBTuneUp5.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp5_SelectedIndexChanged); // // comboKBTuneDown5 // this.comboKBTuneDown5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown5.DropDownWidth = 56; this.comboKBTuneDown5.Location = new System.Drawing.Point(280, 64); this.comboKBTuneDown5.Name = "comboKBTuneDown5"; this.comboKBTuneDown5.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown5.TabIndex = 14; this.toolTip1.SetToolTip(this.comboKBTuneDown5, "Tune Down 100Hz"); this.comboKBTuneDown5.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown5_SelectedIndexChanged); // // comboKBTuneUp4 // this.comboKBTuneUp4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp4.DropDownWidth = 56; this.comboKBTuneUp4.Location = new System.Drawing.Point(224, 40); this.comboKBTuneUp4.Name = "comboKBTuneUp4"; this.comboKBTuneUp4.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp4.TabIndex = 13; this.toolTip1.SetToolTip(this.comboKBTuneUp4, "Tune Up 1kHz"); this.comboKBTuneUp4.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp4_SelectedIndexChanged); // // comboKBTuneDown4 // this.comboKBTuneDown4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown4.DropDownWidth = 56; this.comboKBTuneDown4.Location = new System.Drawing.Point(224, 64); this.comboKBTuneDown4.Name = "comboKBTuneDown4"; this.comboKBTuneDown4.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown4.TabIndex = 12; this.toolTip1.SetToolTip(this.comboKBTuneDown4, "Tune Down 1kHz"); this.comboKBTuneDown4.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown4_SelectedIndexChanged); // // lblKBTune1 // this.lblKBTune1.Image = null; this.lblKBTune1.Location = new System.Drawing.Point(48, 16); this.lblKBTune1.Name = "lblKBTune1"; this.lblKBTune1.Size = new System.Drawing.Size(56, 16); this.lblKBTune1.TabIndex = 11; this.lblKBTune1.Text = "x.000000"; this.lblKBTune1.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTuneUp // this.lblKBTuneUp.Image = null; this.lblKBTuneUp.Location = new System.Drawing.Point(8, 40); this.lblKBTuneUp.Name = "lblKBTuneUp"; this.lblKBTuneUp.Size = new System.Drawing.Size(40, 16); this.lblKBTuneUp.TabIndex = 8; this.lblKBTuneUp.Text = "Up:"; this.lblKBTuneUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTuneDown // this.lblKBTuneDown.Image = null; this.lblKBTuneDown.Location = new System.Drawing.Point(8, 64); this.lblKBTuneDown.Name = "lblKBTuneDown"; this.lblKBTuneDown.Size = new System.Drawing.Size(40, 16); this.lblKBTuneDown.TabIndex = 7; this.lblKBTuneDown.Text = "Down:"; this.lblKBTuneDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBTuneUp3 // this.comboKBTuneUp3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp3.DropDownWidth = 56; this.comboKBTuneUp3.Location = new System.Drawing.Point(168, 40); this.comboKBTuneUp3.Name = "comboKBTuneUp3"; this.comboKBTuneUp3.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp3.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBTuneUp3, "Tune Up 10kHz"); this.comboKBTuneUp3.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp3_SelectedIndexChanged); // // comboKBTuneDown3 // this.comboKBTuneDown3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown3.DropDownWidth = 56; this.comboKBTuneDown3.Location = new System.Drawing.Point(168, 64); this.comboKBTuneDown3.Name = "comboKBTuneDown3"; this.comboKBTuneDown3.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown3.TabIndex = 1; this.toolTip1.SetToolTip(this.comboKBTuneDown3, "Tune Down 10kHz"); this.comboKBTuneDown3.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown3_SelectedIndexChanged); // // comboKBTuneUp1 // this.comboKBTuneUp1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp1.DropDownWidth = 56; this.comboKBTuneUp1.Location = new System.Drawing.Point(48, 40); this.comboKBTuneUp1.Name = "comboKBTuneUp1"; this.comboKBTuneUp1.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp1.TabIndex = 4; this.toolTip1.SetToolTip(this.comboKBTuneUp1, "Tune Up 1MHz"); this.comboKBTuneUp1.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp1_SelectedIndexChanged); // // comboKBTuneUp2 // this.comboKBTuneUp2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp2.DropDownWidth = 56; this.comboKBTuneUp2.Location = new System.Drawing.Point(112, 40); this.comboKBTuneUp2.Name = "comboKBTuneUp2"; this.comboKBTuneUp2.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp2.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBTuneUp2, "Tune Up 100kHz"); this.comboKBTuneUp2.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp2_SelectedIndexChanged); // // comboKBTuneDown1 // this.comboKBTuneDown1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown1.DropDownWidth = 56; this.comboKBTuneDown1.Location = new System.Drawing.Point(48, 64); this.comboKBTuneDown1.Name = "comboKBTuneDown1"; this.comboKBTuneDown1.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboKBTuneDown1, "Tune Down 1MHz"); this.comboKBTuneDown1.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown1_SelectedIndexChanged); // // comboKBTuneDown2 // this.comboKBTuneDown2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown2.DropDownWidth = 56; this.comboKBTuneDown2.Location = new System.Drawing.Point(112, 64); this.comboKBTuneDown2.Name = "comboKBTuneDown2"; this.comboKBTuneDown2.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown2.TabIndex = 2; this.toolTip1.SetToolTip(this.comboKBTuneDown2, "Tune Down 100kHz"); this.comboKBTuneDown2.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown2_SelectedIndexChanged); // // grpKBFilter // this.grpKBFilter.Controls.Add(this.lblKBFilterUp); this.grpKBFilter.Controls.Add(this.lblKBFilterDown); this.grpKBFilter.Controls.Add(this.comboKBFilterUp); this.grpKBFilter.Controls.Add(this.comboKBFilterDown); this.grpKBFilter.Location = new System.Drawing.Point(136, 112); this.grpKBFilter.Name = "grpKBFilter"; this.grpKBFilter.Size = new System.Drawing.Size(112, 72); this.grpKBFilter.TabIndex = 13; this.grpKBFilter.TabStop = false; this.grpKBFilter.Text = "Filter"; // // lblKBFilterUp // this.lblKBFilterUp.Image = null; this.lblKBFilterUp.Location = new System.Drawing.Point(8, 16); this.lblKBFilterUp.Name = "lblKBFilterUp"; this.lblKBFilterUp.Size = new System.Drawing.Size(40, 16); this.lblKBFilterUp.TabIndex = 10; this.lblKBFilterUp.Text = "Up:"; this.lblKBFilterUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBFilterDown // this.lblKBFilterDown.Image = null; this.lblKBFilterDown.Location = new System.Drawing.Point(8, 40); this.lblKBFilterDown.Name = "lblKBFilterDown"; this.lblKBFilterDown.Size = new System.Drawing.Size(40, 16); this.lblKBFilterDown.TabIndex = 9; this.lblKBFilterDown.Text = "Down:"; this.lblKBFilterDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBFilterUp // this.comboKBFilterUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBFilterUp.DropDownWidth = 56; this.comboKBFilterUp.Location = new System.Drawing.Point(48, 16); this.comboKBFilterUp.Name = "comboKBFilterUp"; this.comboKBFilterUp.Size = new System.Drawing.Size(56, 21); this.comboKBFilterUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBFilterUp, "Select the Next filter."); this.comboKBFilterUp.SelectedIndexChanged += new System.EventHandler(this.comboKBFilterUp_SelectedIndexChanged); // // comboKBFilterDown // this.comboKBFilterDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBFilterDown.DropDownWidth = 56; this.comboKBFilterDown.Location = new System.Drawing.Point(48, 40); this.comboKBFilterDown.Name = "comboKBFilterDown"; this.comboKBFilterDown.Size = new System.Drawing.Size(56, 21); this.comboKBFilterDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBFilterDown, "Select the Previous filter."); this.comboKBFilterDown.SelectedIndexChanged += new System.EventHandler(this.comboKBFilterDown_SelectedIndexChanged); // // grpKBCW // this.grpKBCW.Controls.Add(this.lblKBCWDot); this.grpKBCW.Controls.Add(this.lblKBCWDash); this.grpKBCW.Controls.Add(this.comboKBCWDot); this.grpKBCW.Controls.Add(this.comboKBCWDash); this.grpKBCW.Location = new System.Drawing.Point(264, 192); this.grpKBCW.Name = "grpKBCW"; this.grpKBCW.Size = new System.Drawing.Size(112, 72); this.grpKBCW.TabIndex = 13; this.grpKBCW.TabStop = false; this.grpKBCW.Text = "CW"; this.grpKBCW.Visible = false; // // lblKBCWDot // this.lblKBCWDot.Image = null; this.lblKBCWDot.Location = new System.Drawing.Point(8, 16); this.lblKBCWDot.Name = "lblKBCWDot"; this.lblKBCWDot.Size = new System.Drawing.Size(40, 16); this.lblKBCWDot.TabIndex = 10; this.lblKBCWDot.Text = "Dot:"; this.lblKBCWDot.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBCWDash // this.lblKBCWDash.Image = null; this.lblKBCWDash.Location = new System.Drawing.Point(8, 40); this.lblKBCWDash.Name = "lblKBCWDash"; this.lblKBCWDash.Size = new System.Drawing.Size(40, 16); this.lblKBCWDash.TabIndex = 9; this.lblKBCWDash.Text = "Dash:"; this.lblKBCWDash.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBCWDot // this.comboKBCWDot.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWDot.DropDownWidth = 56; this.comboKBCWDot.Location = new System.Drawing.Point(48, 16); this.comboKBCWDot.Name = "comboKBCWDot"; this.comboKBCWDot.Size = new System.Drawing.Size(56, 21); this.comboKBCWDot.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBCWDot, "Note: Only works with old keyer."); this.comboKBCWDot.SelectedIndexChanged += new System.EventHandler(this.comboKBCWDot_SelectedIndexChanged); // // comboKBCWDash // this.comboKBCWDash.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWDash.DropDownWidth = 56; this.comboKBCWDash.Location = new System.Drawing.Point(48, 40); this.comboKBCWDash.Name = "comboKBCWDash"; this.comboKBCWDash.Size = new System.Drawing.Size(56, 21); this.comboKBCWDash.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBCWDash, "Note: Only works with old keyer."); this.comboKBCWDash.SelectedIndexChanged += new System.EventHandler(this.comboKBCWDash_SelectedIndexChanged); // // tpExtCtrl // this.tpExtCtrl.Controls.Add(this.chkExtEnable); this.tpExtCtrl.Controls.Add(this.grpExtTX); this.tpExtCtrl.Controls.Add(this.grpExtRX); this.tpExtCtrl.Location = new System.Drawing.Point(4, 22); this.tpExtCtrl.Name = "tpExtCtrl"; this.tpExtCtrl.Size = new System.Drawing.Size(584, 286); this.tpExtCtrl.TabIndex = 11; this.tpExtCtrl.Text = "Ext. Ctrl"; // // chkExtEnable // this.chkExtEnable.Image = null; this.chkExtEnable.Location = new System.Drawing.Point(360, 16); this.chkExtEnable.Name = "chkExtEnable"; this.chkExtEnable.Size = new System.Drawing.Size(64, 24); this.chkExtEnable.TabIndex = 9; this.chkExtEnable.Text = "Enable"; this.toolTip1.SetToolTip(this.chkExtEnable, "Check this box to enable the matrix to the left to control the X2 pins."); this.chkExtEnable.CheckedChanged += new System.EventHandler(this.chkExtEnable_CheckedChanged); // // grpExtTX // this.grpExtTX.Controls.Add(this.lblExtTXX26); this.grpExtTX.Controls.Add(this.chkExtTX26); this.grpExtTX.Controls.Add(this.chkExtTX66); this.grpExtTX.Controls.Add(this.chkExtTX106); this.grpExtTX.Controls.Add(this.chkExtTX126); this.grpExtTX.Controls.Add(this.chkExtTX156); this.grpExtTX.Controls.Add(this.chkExtTX176); this.grpExtTX.Controls.Add(this.chkExtTX206); this.grpExtTX.Controls.Add(this.chkExtTX306); this.grpExtTX.Controls.Add(this.chkExtTX406); this.grpExtTX.Controls.Add(this.chkExtTX606); this.grpExtTX.Controls.Add(this.chkExtTX806); this.grpExtTX.Controls.Add(this.chkExtTX1606); this.grpExtTX.Controls.Add(this.lblExtTXX25); this.grpExtTX.Controls.Add(this.lblExtTXX24); this.grpExtTX.Controls.Add(this.lblExtTXX23); this.grpExtTX.Controls.Add(this.lblExtTXX22); this.grpExtTX.Controls.Add(this.lblExtTX2); this.grpExtTX.Controls.Add(this.chkExtTX23); this.grpExtTX.Controls.Add(this.chkExtTX22); this.grpExtTX.Controls.Add(this.chkExtTX21); this.grpExtTX.Controls.Add(this.chkExtTX25); this.grpExtTX.Controls.Add(this.chkExtTX24); this.grpExtTX.Controls.Add(this.lblExtTX6); this.grpExtTX.Controls.Add(this.chkExtTX63); this.grpExtTX.Controls.Add(this.chkExtTX62); this.grpExtTX.Controls.Add(this.chkExtTX61); this.grpExtTX.Controls.Add(this.chkExtTX65); this.grpExtTX.Controls.Add(this.chkExtTX64); this.grpExtTX.Controls.Add(this.lblExtTX10); this.grpExtTX.Controls.Add(this.chkExtTX103); this.grpExtTX.Controls.Add(this.chkExtTX102); this.grpExtTX.Controls.Add(this.chkExtTX101); this.grpExtTX.Controls.Add(this.chkExtTX105); this.grpExtTX.Controls.Add(this.chkExtTX104); this.grpExtTX.Controls.Add(this.lblExtTX12); this.grpExtTX.Controls.Add(this.chkExtTX123); this.grpExtTX.Controls.Add(this.chkExtTX122); this.grpExtTX.Controls.Add(this.chkExtTX121); this.grpExtTX.Controls.Add(this.chkExtTX125); this.grpExtTX.Controls.Add(this.chkExtTX124); this.grpExtTX.Controls.Add(this.lblExtTX15); this.grpExtTX.Controls.Add(this.chkExtTX153); this.grpExtTX.Controls.Add(this.chkExtTX152); this.grpExtTX.Controls.Add(this.chkExtTX151); this.grpExtTX.Controls.Add(this.chkExtTX155); this.grpExtTX.Controls.Add(this.chkExtTX154); this.grpExtTX.Controls.Add(this.lblExtTX17); this.grpExtTX.Controls.Add(this.chkExtTX173); this.grpExtTX.Controls.Add(this.chkExtTX172); this.grpExtTX.Controls.Add(this.chkExtTX171); this.grpExtTX.Controls.Add(this.chkExtTX175); this.grpExtTX.Controls.Add(this.chkExtTX174); this.grpExtTX.Controls.Add(this.lblExtTX20); this.grpExtTX.Controls.Add(this.chkExtTX203); this.grpExtTX.Controls.Add(this.chkExtTX202); this.grpExtTX.Controls.Add(this.chkExtTX201); this.grpExtTX.Controls.Add(this.chkExtTX205); this.grpExtTX.Controls.Add(this.chkExtTX204); this.grpExtTX.Controls.Add(this.lblExtTX30); this.grpExtTX.Controls.Add(this.chkExtTX303); this.grpExtTX.Controls.Add(this.chkExtTX302); this.grpExtTX.Controls.Add(this.chkExtTX301); this.grpExtTX.Controls.Add(this.chkExtTX305); this.grpExtTX.Controls.Add(this.chkExtTX304); this.grpExtTX.Controls.Add(this.lblExtTX40); this.grpExtTX.Controls.Add(this.chkExtTX403); this.grpExtTX.Controls.Add(this.chkExtTX402); this.grpExtTX.Controls.Add(this.chkExtTX401); this.grpExtTX.Controls.Add(this.chkExtTX405); this.grpExtTX.Controls.Add(this.chkExtTX404); this.grpExtTX.Controls.Add(this.lblExtTX60); this.grpExtTX.Controls.Add(this.chkExtTX603); this.grpExtTX.Controls.Add(this.chkExtTX602); this.grpExtTX.Controls.Add(this.chkExtTX601); this.grpExtTX.Controls.Add(this.chkExtTX605); this.grpExtTX.Controls.Add(this.chkExtTX604); this.grpExtTX.Controls.Add(this.lblExtTX80); this.grpExtTX.Controls.Add(this.chkExtTX803); this.grpExtTX.Controls.Add(this.chkExtTX802); this.grpExtTX.Controls.Add(this.chkExtTX801); this.grpExtTX.Controls.Add(this.chkExtTX805); this.grpExtTX.Controls.Add(this.chkExtTX804); this.grpExtTX.Controls.Add(this.lblExtTXX2Pins); this.grpExtTX.Controls.Add(this.lblExtTXBand); this.grpExtTX.Controls.Add(this.lblExtTX160); this.grpExtTX.Controls.Add(this.chkExtTX1603); this.grpExtTX.Controls.Add(this.chkExtTX1602); this.grpExtTX.Controls.Add(this.chkExtTX1601); this.grpExtTX.Controls.Add(this.lblExtTXX21); this.grpExtTX.Controls.Add(this.chkExtTX1605); this.grpExtTX.Controls.Add(this.chkExtTX1604); this.grpExtTX.Enabled = false; this.grpExtTX.Location = new System.Drawing.Point(184, 8); this.grpExtTX.Name = "grpExtTX"; this.grpExtTX.Size = new System.Drawing.Size(168, 264); this.grpExtTX.TabIndex = 8; this.grpExtTX.TabStop = false; this.grpExtTX.Text = "Transmit"; // // lblExtTXX26 // this.lblExtTXX26.Image = null; this.lblExtTXX26.Location = new System.Drawing.Point(144, 40); this.lblExtTXX26.Name = "lblExtTXX26"; this.lblExtTXX26.Size = new System.Drawing.Size(16, 16); this.lblExtTXX26.TabIndex = 171; this.lblExtTXX26.Text = "6"; this.lblExtTXX26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtTX26 // this.chkExtTX26.Image = null; this.chkExtTX26.Location = new System.Drawing.Point(144, 240); this.chkExtTX26.Name = "chkExtTX26"; this.chkExtTX26.Size = new System.Drawing.Size(16, 16); this.chkExtTX26.TabIndex = 170; this.chkExtTX26.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX66 // this.chkExtTX66.Image = null; this.chkExtTX66.Location = new System.Drawing.Point(144, 224); this.chkExtTX66.Name = "chkExtTX66"; this.chkExtTX66.Size = new System.Drawing.Size(16, 16); this.chkExtTX66.TabIndex = 169; this.chkExtTX66.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX106 // this.chkExtTX106.Image = null; this.chkExtTX106.Location = new System.Drawing.Point(144, 208); this.chkExtTX106.Name = "chkExtTX106"; this.chkExtTX106.Size = new System.Drawing.Size(16, 16); this.chkExtTX106.TabIndex = 168; this.chkExtTX106.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX126 // this.chkExtTX126.Image = null; this.chkExtTX126.Location = new System.Drawing.Point(144, 192); this.chkExtTX126.Name = "chkExtTX126"; this.chkExtTX126.Size = new System.Drawing.Size(16, 16); this.chkExtTX126.TabIndex = 167; this.chkExtTX126.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX156 // this.chkExtTX156.Image = null; this.chkExtTX156.Location = new System.Drawing.Point(144, 176); this.chkExtTX156.Name = "chkExtTX156"; this.chkExtTX156.Size = new System.Drawing.Size(16, 16); this.chkExtTX156.TabIndex = 166; this.chkExtTX156.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX176 // this.chkExtTX176.Image = null; this.chkExtTX176.Location = new System.Drawing.Point(144, 160); this.chkExtTX176.Name = "chkExtTX176"; this.chkExtTX176.Size = new System.Drawing.Size(16, 16); this.chkExtTX176.TabIndex = 165; this.chkExtTX176.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX206 // this.chkExtTX206.Image = null; this.chkExtTX206.Location = new System.Drawing.Point(144, 144); this.chkExtTX206.Name = "chkExtTX206"; this.chkExtTX206.Size = new System.Drawing.Size(16, 16); this.chkExtTX206.TabIndex = 164; this.chkExtTX206.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX306 // this.chkExtTX306.Image = null; this.chkExtTX306.Location = new System.Drawing.Point(144, 128); this.chkExtTX306.Name = "chkExtTX306"; this.chkExtTX306.Size = new System.Drawing.Size(16, 16); this.chkExtTX306.TabIndex = 163; this.chkExtTX306.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX406 // this.chkExtTX406.Image = null; this.chkExtTX406.Location = new System.Drawing.Point(144, 112); this.chkExtTX406.Name = "chkExtTX406"; this.chkExtTX406.Size = new System.Drawing.Size(16, 16); this.chkExtTX406.TabIndex = 162; this.chkExtTX406.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX606 // this.chkExtTX606.Image = null; this.chkExtTX606.Location = new System.Drawing.Point(144, 96); this.chkExtTX606.Name = "chkExtTX606"; this.chkExtTX606.Size = new System.Drawing.Size(16, 16); this.chkExtTX606.TabIndex = 161; this.chkExtTX606.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX806 // this.chkExtTX806.Image = null; this.chkExtTX806.Location = new System.Drawing.Point(144, 80); this.chkExtTX806.Name = "chkExtTX806"; this.chkExtTX806.Size = new System.Drawing.Size(16, 16); this.chkExtTX806.TabIndex = 160; this.chkExtTX806.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX1606 // this.chkExtTX1606.Image = null; this.chkExtTX1606.Location = new System.Drawing.Point(144, 64); this.chkExtTX1606.Name = "chkExtTX1606"; this.chkExtTX1606.Size = new System.Drawing.Size(16, 16); this.chkExtTX1606.TabIndex = 159; this.chkExtTX1606.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // lblExtTXX25 // this.lblExtTXX25.Image = null; this.lblExtTXX25.Location = new System.Drawing.Point(128, 40); this.lblExtTXX25.Name = "lblExtTXX25"; this.lblExtTXX25.Size = new System.Drawing.Size(16, 16); this.lblExtTXX25.TabIndex = 158; this.lblExtTXX25.Text = "5"; this.lblExtTXX25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXX24 // this.lblExtTXX24.Image = null; this.lblExtTXX24.Location = new System.Drawing.Point(112, 40); this.lblExtTXX24.Name = "lblExtTXX24"; this.lblExtTXX24.Size = new System.Drawing.Size(16, 16); this.lblExtTXX24.TabIndex = 157; this.lblExtTXX24.Text = "4"; this.lblExtTXX24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXX23 // this.lblExtTXX23.Image = null; this.lblExtTXX23.Location = new System.Drawing.Point(96, 40); this.lblExtTXX23.Name = "lblExtTXX23"; this.lblExtTXX23.Size = new System.Drawing.Size(16, 16); this.lblExtTXX23.TabIndex = 156; this.lblExtTXX23.Text = "3"; this.lblExtTXX23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXX22 // this.lblExtTXX22.Image = null; this.lblExtTXX22.Location = new System.Drawing.Point(80, 40); this.lblExtTXX22.Name = "lblExtTXX22"; this.lblExtTXX22.Size = new System.Drawing.Size(16, 16); this.lblExtTXX22.TabIndex = 155; this.lblExtTXX22.Text = "2"; this.lblExtTXX22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTX2 // this.lblExtTX2.Image = null; this.lblExtTX2.Location = new System.Drawing.Point(12, 240); this.lblExtTX2.Name = "lblExtTX2"; this.lblExtTX2.Size = new System.Drawing.Size(40, 16); this.lblExtTX2.TabIndex = 154; this.lblExtTX2.Text = "2m"; // // chkExtTX23 // this.chkExtTX23.Image = null; this.chkExtTX23.Location = new System.Drawing.Point(96, 240); this.chkExtTX23.Name = "chkExtTX23"; this.chkExtTX23.Size = new System.Drawing.Size(16, 16); this.chkExtTX23.TabIndex = 151; this.chkExtTX23.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX22 // this.chkExtTX22.Image = null; this.chkExtTX22.Location = new System.Drawing.Point(80, 240); this.chkExtTX22.Name = "chkExtTX22"; this.chkExtTX22.Size = new System.Drawing.Size(16, 16); this.chkExtTX22.TabIndex = 150; this.chkExtTX22.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX21 // this.chkExtTX21.Image = null; this.chkExtTX21.Location = new System.Drawing.Point(64, 240); this.chkExtTX21.Name = "chkExtTX21"; this.chkExtTX21.Size = new System.Drawing.Size(16, 16); this.chkExtTX21.TabIndex = 149; this.chkExtTX21.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX25 // this.chkExtTX25.Image = null; this.chkExtTX25.Location = new System.Drawing.Point(128, 240); this.chkExtTX25.Name = "chkExtTX25"; this.chkExtTX25.Size = new System.Drawing.Size(16, 16); this.chkExtTX25.TabIndex = 153; this.chkExtTX25.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX24 // this.chkExtTX24.Image = null; this.chkExtTX24.Location = new System.Drawing.Point(112, 240); this.chkExtTX24.Name = "chkExtTX24"; this.chkExtTX24.Size = new System.Drawing.Size(16, 16); this.chkExtTX24.TabIndex = 152; this.chkExtTX24.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // lblExtTX6 // this.lblExtTX6.Image = null; this.lblExtTX6.Location = new System.Drawing.Point(12, 224); this.lblExtTX6.Name = "lblExtTX6"; this.lblExtTX6.Size = new System.Drawing.Size(40, 16); this.lblExtTX6.TabIndex = 148; this.lblExtTX6.Text = "6m"; // // chkExtTX63 // this.chkExtTX63.Image = null; this.chkExtTX63.Location = new System.Drawing.Point(96, 224); this.chkExtTX63.Name = "chkExtTX63"; this.chkExtTX63.Size = new System.Drawing.Size(16, 16); this.chkExtTX63.TabIndex = 145; this.chkExtTX63.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX62 // this.chkExtTX62.Image = null; this.chkExtTX62.Location = new System.Drawing.Point(80, 224); this.chkExtTX62.Name = "chkExtTX62"; this.chkExtTX62.Size = new System.Drawing.Size(16, 16); this.chkExtTX62.TabIndex = 144; this.chkExtTX62.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX61 // this.chkExtTX61.Image = null; this.chkExtTX61.Location = new System.Drawing.Point(64, 224); this.chkExtTX61.Name = "chkExtTX61"; this.chkExtTX61.Size = new System.Drawing.Size(16, 16); this.chkExtTX61.TabIndex = 143; this.chkExtTX61.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX65 // this.chkExtTX65.Image = null; this.chkExtTX65.Location = new System.Drawing.Point(128, 224); this.chkExtTX65.Name = "chkExtTX65"; this.chkExtTX65.Size = new System.Drawing.Size(16, 16); this.chkExtTX65.TabIndex = 147; this.chkExtTX65.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX64 // this.chkExtTX64.Image = null; this.chkExtTX64.Location = new System.Drawing.Point(112, 224); this.chkExtTX64.Name = "chkExtTX64"; this.chkExtTX64.Size = new System.Drawing.Size(16, 16); this.chkExtTX64.TabIndex = 146; this.chkExtTX64.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // lblExtTX10 // this.lblExtTX10.Image = null; this.lblExtTX10.Location = new System.Drawing.Point(12, 208); this.lblExtTX10.Name = "lblExtTX10"; this.lblExtTX10.Size = new System.Drawing.Size(40, 16); this.lblExtTX10.TabIndex = 142; this.lblExtTX10.Text = "10m"; // // chkExtTX103 // this.chkExtTX103.Image = null; this.chkExtTX103.Location = new System.Drawing.Point(96, 208); this.chkExtTX103.Name = "chkExtTX103"; this.chkExtTX103.Size = new System.Drawing.Size(16, 16); this.chkExtTX103.TabIndex = 139; this.chkExtTX103.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX102 // this.chkExtTX102.Image = null; this.chkExtTX102.Location = new System.Drawing.Point(80, 208); this.chkExtTX102.Name = "chkExtTX102"; this.chkExtTX102.Size = new System.Drawing.Size(16, 16); this.chkExtTX102.TabIndex = 138; this.chkExtTX102.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX101 // this.chkExtTX101.Image = null; this.chkExtTX101.Location = new System.Drawing.Point(64, 208); this.chkExtTX101.Name = "chkExtTX101"; this.chkExtTX101.Size = new System.Drawing.Size(16, 16); this.chkExtTX101.TabIndex = 137; this.chkExtTX101.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX105 // this.chkExtTX105.Image = null; this.chkExtTX105.Location = new System.Drawing.Point(128, 208); this.chkExtTX105.Name = "chkExtTX105"; this.chkExtTX105.Size = new System.Drawing.Size(16, 16); this.chkExtTX105.TabIndex = 141; this.chkExtTX105.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX104 // this.chkExtTX104.Image = null; this.chkExtTX104.Location = new System.Drawing.Point(112, 208); this.chkExtTX104.Name = "chkExtTX104"; this.chkExtTX104.Size = new System.Drawing.Size(16, 16); this.chkExtTX104.TabIndex = 140; this.chkExtTX104.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // lblExtTX12 // this.lblExtTX12.Image = null; this.lblExtTX12.Location = new System.Drawing.Point(12, 192); this.lblExtTX12.Name = "lblExtTX12"; this.lblExtTX12.Size = new System.Drawing.Size(40, 16); this.lblExtTX12.TabIndex = 136; this.lblExtTX12.Text = "12m"; // // chkExtTX123 // this.chkExtTX123.Image = null; this.chkExtTX123.Location = new System.Drawing.Point(96, 192); this.chkExtTX123.Name = "chkExtTX123"; this.chkExtTX123.Size = new System.Drawing.Size(16, 16); this.chkExtTX123.TabIndex = 133; this.chkExtTX123.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX122 // this.chkExtTX122.Image = null; this.chkExtTX122.Location = new System.Drawing.Point(80, 192); this.chkExtTX122.Name = "chkExtTX122"; this.chkExtTX122.Size = new System.Drawing.Size(16, 16); this.chkExtTX122.TabIndex = 132; this.chkExtTX122.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX121 // this.chkExtTX121.Image = null; this.chkExtTX121.Location = new System.Drawing.Point(64, 192); this.chkExtTX121.Name = "chkExtTX121"; this.chkExtTX121.Size = new System.Drawing.Size(16, 16); this.chkExtTX121.TabIndex = 131; this.chkExtTX121.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX125 // this.chkExtTX125.Image = null; this.chkExtTX125.Location = new System.Drawing.Point(128, 192); this.chkExtTX125.Name = "chkExtTX125"; this.chkExtTX125.Size = new System.Drawing.Size(16, 16); this.chkExtTX125.TabIndex = 135; this.chkExtTX125.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX124 // this.chkExtTX124.Image = null; this.chkExtTX124.Location = new System.Drawing.Point(112, 192); this.chkExtTX124.Name = "chkExtTX124"; this.chkExtTX124.Size = new System.Drawing.Size(16, 16); this.chkExtTX124.TabIndex = 134; this.chkExtTX124.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // lblExtTX15 // this.lblExtTX15.Image = null; this.lblExtTX15.Location = new System.Drawing.Point(12, 176); this.lblExtTX15.Name = "lblExtTX15"; this.lblExtTX15.Size = new System.Drawing.Size(40, 16); this.lblExtTX15.TabIndex = 130; this.lblExtTX15.Text = "15m"; // // chkExtTX153 // this.chkExtTX153.Image = null; this.chkExtTX153.Location = new System.Drawing.Point(96, 176); this.chkExtTX153.Name = "chkExtTX153"; this.chkExtTX153.Size = new System.Drawing.Size(16, 16); this.chkExtTX153.TabIndex = 127; this.chkExtTX153.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX152 // this.chkExtTX152.Image = null; this.chkExtTX152.Location = new System.Drawing.Point(80, 176); this.chkExtTX152.Name = "chkExtTX152"; this.chkExtTX152.Size = new System.Drawing.Size(16, 16); this.chkExtTX152.TabIndex = 126; this.chkExtTX152.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX151 // this.chkExtTX151.Image = null; this.chkExtTX151.Location = new System.Drawing.Point(64, 176); this.chkExtTX151.Name = "chkExtTX151"; this.chkExtTX151.Size = new System.Drawing.Size(16, 16); this.chkExtTX151.TabIndex = 125; this.chkExtTX151.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX155 // this.chkExtTX155.Image = null; this.chkExtTX155.Location = new System.Drawing.Point(128, 176); this.chkExtTX155.Name = "chkExtTX155"; this.chkExtTX155.Size = new System.Drawing.Size(16, 16); this.chkExtTX155.TabIndex = 129; this.chkExtTX155.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX154 // this.chkExtTX154.Image = null; this.chkExtTX154.Location = new System.Drawing.Point(112, 176); this.chkExtTX154.Name = "chkExtTX154"; this.chkExtTX154.Size = new System.Drawing.Size(16, 16); this.chkExtTX154.TabIndex = 128; this.chkExtTX154.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // lblExtTX17 // this.lblExtTX17.Image = null; this.lblExtTX17.Location = new System.Drawing.Point(12, 160); this.lblExtTX17.Name = "lblExtTX17"; this.lblExtTX17.Size = new System.Drawing.Size(40, 16); this.lblExtTX17.TabIndex = 124; this.lblExtTX17.Text = "17m"; // // chkExtTX173 // this.chkExtTX173.Image = null; this.chkExtTX173.Location = new System.Drawing.Point(96, 160); this.chkExtTX173.Name = "chkExtTX173"; this.chkExtTX173.Size = new System.Drawing.Size(16, 16); this.chkExtTX173.TabIndex = 121; this.chkExtTX173.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX172 // this.chkExtTX172.Image = null; this.chkExtTX172.Location = new System.Drawing.Point(80, 160); this.chkExtTX172.Name = "chkExtTX172"; this.chkExtTX172.Size = new System.Drawing.Size(16, 16); this.chkExtTX172.TabIndex = 120; this.chkExtTX172.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX171 // this.chkExtTX171.Image = null; this.chkExtTX171.Location = new System.Drawing.Point(64, 160); this.chkExtTX171.Name = "chkExtTX171"; this.chkExtTX171.Size = new System.Drawing.Size(16, 16); this.chkExtTX171.TabIndex = 119; this.chkExtTX171.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX175 // this.chkExtTX175.Image = null; this.chkExtTX175.Location = new System.Drawing.Point(128, 160); this.chkExtTX175.Name = "chkExtTX175"; this.chkExtTX175.Size = new System.Drawing.Size(16, 16); this.chkExtTX175.TabIndex = 123; this.chkExtTX175.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX174 // this.chkExtTX174.Image = null; this.chkExtTX174.Location = new System.Drawing.Point(112, 160); this.chkExtTX174.Name = "chkExtTX174"; this.chkExtTX174.Size = new System.Drawing.Size(16, 16); this.chkExtTX174.TabIndex = 122; this.chkExtTX174.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // lblExtTX20 // this.lblExtTX20.Image = null; this.lblExtTX20.Location = new System.Drawing.Point(12, 144); this.lblExtTX20.Name = "lblExtTX20"; this.lblExtTX20.Size = new System.Drawing.Size(40, 16); this.lblExtTX20.TabIndex = 118; this.lblExtTX20.Text = "20m"; // // chkExtTX203 // this.chkExtTX203.Image = null; this.chkExtTX203.Location = new System.Drawing.Point(96, 144); this.chkExtTX203.Name = "chkExtTX203"; this.chkExtTX203.Size = new System.Drawing.Size(16, 16); this.chkExtTX203.TabIndex = 115; this.chkExtTX203.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX202 // this.chkExtTX202.Image = null; this.chkExtTX202.Location = new System.Drawing.Point(80, 144); this.chkExtTX202.Name = "chkExtTX202"; this.chkExtTX202.Size = new System.Drawing.Size(16, 16); this.chkExtTX202.TabIndex = 114; this.chkExtTX202.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX201 // this.chkExtTX201.Image = null; this.chkExtTX201.Location = new System.Drawing.Point(64, 144); this.chkExtTX201.Name = "chkExtTX201"; this.chkExtTX201.Size = new System.Drawing.Size(16, 16); this.chkExtTX201.TabIndex = 113; this.chkExtTX201.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX205 // this.chkExtTX205.Image = null; this.chkExtTX205.Location = new System.Drawing.Point(128, 144); this.chkExtTX205.Name = "chkExtTX205"; this.chkExtTX205.Size = new System.Drawing.Size(16, 16); this.chkExtTX205.TabIndex = 117; this.chkExtTX205.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX204 // this.chkExtTX204.Image = null; this.chkExtTX204.Location = new System.Drawing.Point(112, 144); this.chkExtTX204.Name = "chkExtTX204"; this.chkExtTX204.Size = new System.Drawing.Size(16, 16); this.chkExtTX204.TabIndex = 116; this.chkExtTX204.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // lblExtTX30 // this.lblExtTX30.Image = null; this.lblExtTX30.Location = new System.Drawing.Point(12, 128); this.lblExtTX30.Name = "lblExtTX30"; this.lblExtTX30.Size = new System.Drawing.Size(40, 16); this.lblExtTX30.TabIndex = 112; this.lblExtTX30.Text = "30m"; // // chkExtTX303 // this.chkExtTX303.Image = null; this.chkExtTX303.Location = new System.Drawing.Point(96, 128); this.chkExtTX303.Name = "chkExtTX303"; this.chkExtTX303.Size = new System.Drawing.Size(16, 16); this.chkExtTX303.TabIndex = 109; this.chkExtTX303.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX302 // this.chkExtTX302.Image = null; this.chkExtTX302.Location = new System.Drawing.Point(80, 128); this.chkExtTX302.Name = "chkExtTX302"; this.chkExtTX302.Size = new System.Drawing.Size(16, 16); this.chkExtTX302.TabIndex = 108; this.chkExtTX302.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX301 // this.chkExtTX301.Image = null; this.chkExtTX301.Location = new System.Drawing.Point(64, 128); this.chkExtTX301.Name = "chkExtTX301"; this.chkExtTX301.Size = new System.Drawing.Size(16, 16); this.chkExtTX301.TabIndex = 107; this.chkExtTX301.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX305 // this.chkExtTX305.Image = null; this.chkExtTX305.Location = new System.Drawing.Point(128, 128); this.chkExtTX305.Name = "chkExtTX305"; this.chkExtTX305.Size = new System.Drawing.Size(16, 16); this.chkExtTX305.TabIndex = 111; this.chkExtTX305.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX304 // this.chkExtTX304.Image = null; this.chkExtTX304.Location = new System.Drawing.Point(112, 128); this.chkExtTX304.Name = "chkExtTX304"; this.chkExtTX304.Size = new System.Drawing.Size(16, 16); this.chkExtTX304.TabIndex = 110; this.chkExtTX304.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // lblExtTX40 // this.lblExtTX40.Image = null; this.lblExtTX40.Location = new System.Drawing.Point(12, 112); this.lblExtTX40.Name = "lblExtTX40"; this.lblExtTX40.Size = new System.Drawing.Size(40, 16); this.lblExtTX40.TabIndex = 106; this.lblExtTX40.Text = "40m"; // // chkExtTX403 // this.chkExtTX403.Image = null; this.chkExtTX403.Location = new System.Drawing.Point(96, 112); this.chkExtTX403.Name = "chkExtTX403"; this.chkExtTX403.Size = new System.Drawing.Size(16, 16); this.chkExtTX403.TabIndex = 103; this.chkExtTX403.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX402 // this.chkExtTX402.Image = null; this.chkExtTX402.Location = new System.Drawing.Point(80, 112); this.chkExtTX402.Name = "chkExtTX402"; this.chkExtTX402.Size = new System.Drawing.Size(16, 16); this.chkExtTX402.TabIndex = 102; this.chkExtTX402.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX401 // this.chkExtTX401.Image = null; this.chkExtTX401.Location = new System.Drawing.Point(64, 112); this.chkExtTX401.Name = "chkExtTX401"; this.chkExtTX401.Size = new System.Drawing.Size(16, 16); this.chkExtTX401.TabIndex = 101; this.chkExtTX401.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX405 // this.chkExtTX405.Image = null; this.chkExtTX405.Location = new System.Drawing.Point(128, 112); this.chkExtTX405.Name = "chkExtTX405"; this.chkExtTX405.Size = new System.Drawing.Size(16, 16); this.chkExtTX405.TabIndex = 105; this.chkExtTX405.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX404 // this.chkExtTX404.Image = null; this.chkExtTX404.Location = new System.Drawing.Point(112, 112); this.chkExtTX404.Name = "chkExtTX404"; this.chkExtTX404.Size = new System.Drawing.Size(16, 16); this.chkExtTX404.TabIndex = 104; this.chkExtTX404.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // lblExtTX60 // this.lblExtTX60.Image = null; this.lblExtTX60.Location = new System.Drawing.Point(12, 96); this.lblExtTX60.Name = "lblExtTX60"; this.lblExtTX60.Size = new System.Drawing.Size(40, 16); this.lblExtTX60.TabIndex = 100; this.lblExtTX60.Text = "60m"; // // chkExtTX603 // this.chkExtTX603.Image = null; this.chkExtTX603.Location = new System.Drawing.Point(96, 96); this.chkExtTX603.Name = "chkExtTX603"; this.chkExtTX603.Size = new System.Drawing.Size(16, 16); this.chkExtTX603.TabIndex = 97; this.chkExtTX603.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX602 // this.chkExtTX602.Image = null; this.chkExtTX602.Location = new System.Drawing.Point(80, 96); this.chkExtTX602.Name = "chkExtTX602"; this.chkExtTX602.Size = new System.Drawing.Size(16, 16); this.chkExtTX602.TabIndex = 96; this.chkExtTX602.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX601 // this.chkExtTX601.Image = null; this.chkExtTX601.Location = new System.Drawing.Point(64, 96); this.chkExtTX601.Name = "chkExtTX601"; this.chkExtTX601.Size = new System.Drawing.Size(16, 16); this.chkExtTX601.TabIndex = 95; this.chkExtTX601.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX605 // this.chkExtTX605.Image = null; this.chkExtTX605.Location = new System.Drawing.Point(128, 96); this.chkExtTX605.Name = "chkExtTX605"; this.chkExtTX605.Size = new System.Drawing.Size(16, 16); this.chkExtTX605.TabIndex = 99; this.chkExtTX605.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX604 // this.chkExtTX604.Image = null; this.chkExtTX604.Location = new System.Drawing.Point(112, 96); this.chkExtTX604.Name = "chkExtTX604"; this.chkExtTX604.Size = new System.Drawing.Size(16, 16); this.chkExtTX604.TabIndex = 98; this.chkExtTX604.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // lblExtTX80 // this.lblExtTX80.Image = null; this.lblExtTX80.Location = new System.Drawing.Point(12, 80); this.lblExtTX80.Name = "lblExtTX80"; this.lblExtTX80.Size = new System.Drawing.Size(40, 16); this.lblExtTX80.TabIndex = 94; this.lblExtTX80.Text = "80m"; // // chkExtTX803 // this.chkExtTX803.Image = null; this.chkExtTX803.Location = new System.Drawing.Point(96, 80); this.chkExtTX803.Name = "chkExtTX803"; this.chkExtTX803.Size = new System.Drawing.Size(16, 16); this.chkExtTX803.TabIndex = 91; this.chkExtTX803.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX802 // this.chkExtTX802.Image = null; this.chkExtTX802.Location = new System.Drawing.Point(80, 80); this.chkExtTX802.Name = "chkExtTX802"; this.chkExtTX802.Size = new System.Drawing.Size(16, 16); this.chkExtTX802.TabIndex = 90; this.chkExtTX802.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX801 // this.chkExtTX801.Image = null; this.chkExtTX801.Location = new System.Drawing.Point(64, 80); this.chkExtTX801.Name = "chkExtTX801"; this.chkExtTX801.Size = new System.Drawing.Size(16, 16); this.chkExtTX801.TabIndex = 89; this.chkExtTX801.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX805 // this.chkExtTX805.Image = null; this.chkExtTX805.Location = new System.Drawing.Point(128, 80); this.chkExtTX805.Name = "chkExtTX805"; this.chkExtTX805.Size = new System.Drawing.Size(16, 16); this.chkExtTX805.TabIndex = 93; this.chkExtTX805.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX804 // this.chkExtTX804.Image = null; this.chkExtTX804.Location = new System.Drawing.Point(112, 80); this.chkExtTX804.Name = "chkExtTX804"; this.chkExtTX804.Size = new System.Drawing.Size(16, 16); this.chkExtTX804.TabIndex = 92; this.chkExtTX804.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // lblExtTXX2Pins // this.lblExtTXX2Pins.Image = null; this.lblExtTXX2Pins.Location = new System.Drawing.Point(60, 24); this.lblExtTXX2Pins.Name = "lblExtTXX2Pins"; this.lblExtTXX2Pins.Size = new System.Drawing.Size(100, 16); this.lblExtTXX2Pins.TabIndex = 88; this.lblExtTXX2Pins.Text = "X2 Pins"; this.lblExtTXX2Pins.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXBand // this.lblExtTXBand.Image = null; this.lblExtTXBand.Location = new System.Drawing.Point(12, 24); this.lblExtTXBand.Name = "lblExtTXBand"; this.lblExtTXBand.Size = new System.Drawing.Size(32, 16); this.lblExtTXBand.TabIndex = 87; this.lblExtTXBand.Text = "Band"; // // lblExtTX160 // this.lblExtTX160.Image = null; this.lblExtTX160.Location = new System.Drawing.Point(12, 64); this.lblExtTX160.Name = "lblExtTX160"; this.lblExtTX160.Size = new System.Drawing.Size(40, 16); this.lblExtTX160.TabIndex = 86; this.lblExtTX160.Text = "160m"; // // chkExtTX1603 // this.chkExtTX1603.Image = null; this.chkExtTX1603.Location = new System.Drawing.Point(96, 64); this.chkExtTX1603.Name = "chkExtTX1603"; this.chkExtTX1603.Size = new System.Drawing.Size(16, 16); this.chkExtTX1603.TabIndex = 82; this.chkExtTX1603.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // chkExtTX1602 // this.chkExtTX1602.Image = null; this.chkExtTX1602.Location = new System.Drawing.Point(80, 64); this.chkExtTX1602.Name = "chkExtTX1602"; this.chkExtTX1602.Size = new System.Drawing.Size(16, 16); this.chkExtTX1602.TabIndex = 81; this.chkExtTX1602.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // chkExtTX1601 // this.chkExtTX1601.Image = null; this.chkExtTX1601.Location = new System.Drawing.Point(64, 64); this.chkExtTX1601.Name = "chkExtTX1601"; this.chkExtTX1601.Size = new System.Drawing.Size(16, 16); this.chkExtTX1601.TabIndex = 80; this.chkExtTX1601.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // lblExtTXX21 // this.lblExtTXX21.Image = null; this.lblExtTXX21.Location = new System.Drawing.Point(64, 40); this.lblExtTXX21.Name = "lblExtTXX21"; this.lblExtTXX21.Size = new System.Drawing.Size(16, 16); this.lblExtTXX21.TabIndex = 85; this.lblExtTXX21.Text = "1"; this.lblExtTXX21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtTX1605 // this.chkExtTX1605.Image = null; this.chkExtTX1605.Location = new System.Drawing.Point(128, 64); this.chkExtTX1605.Name = "chkExtTX1605"; this.chkExtTX1605.Size = new System.Drawing.Size(16, 16); this.chkExtTX1605.TabIndex = 84; this.chkExtTX1605.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // chkExtTX1604 // this.chkExtTX1604.Image = null; this.chkExtTX1604.Location = new System.Drawing.Point(112, 64); this.chkExtTX1604.Name = "chkExtTX1604"; this.chkExtTX1604.Size = new System.Drawing.Size(16, 16); this.chkExtTX1604.TabIndex = 83; this.chkExtTX1604.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // grpExtRX // this.grpExtRX.Controls.Add(this.lblExtRXX26); this.grpExtRX.Controls.Add(this.chkExtRX26); this.grpExtRX.Controls.Add(this.chkExtRX66); this.grpExtRX.Controls.Add(this.chkExtRX106); this.grpExtRX.Controls.Add(this.chkExtRX126); this.grpExtRX.Controls.Add(this.chkExtRX156); this.grpExtRX.Controls.Add(this.chkExtRX176); this.grpExtRX.Controls.Add(this.chkExtRX206); this.grpExtRX.Controls.Add(this.chkExtRX306); this.grpExtRX.Controls.Add(this.chkExtRX406); this.grpExtRX.Controls.Add(this.chkExtRX606); this.grpExtRX.Controls.Add(this.chkExtRX806); this.grpExtRX.Controls.Add(this.chkExtRX1606); this.grpExtRX.Controls.Add(this.lblExtRXX25); this.grpExtRX.Controls.Add(this.lblExtRXX24); this.grpExtRX.Controls.Add(this.lblExtRXX23); this.grpExtRX.Controls.Add(this.lblExtRXX22); this.grpExtRX.Controls.Add(this.lblExtRX2); this.grpExtRX.Controls.Add(this.chkExtRX23); this.grpExtRX.Controls.Add(this.chkExtRX22); this.grpExtRX.Controls.Add(this.chkExtRX21); this.grpExtRX.Controls.Add(this.chkExtRX25); this.grpExtRX.Controls.Add(this.chkExtRX24); this.grpExtRX.Controls.Add(this.lblExtRX6); this.grpExtRX.Controls.Add(this.chkExtRX63); this.grpExtRX.Controls.Add(this.chkExtRX62); this.grpExtRX.Controls.Add(this.chkExtRX61); this.grpExtRX.Controls.Add(this.chkExtRX65); this.grpExtRX.Controls.Add(this.chkExtRX64); this.grpExtRX.Controls.Add(this.lblExtRX10); this.grpExtRX.Controls.Add(this.chkExtRX103); this.grpExtRX.Controls.Add(this.chkExtRX102); this.grpExtRX.Controls.Add(this.chkExtRX101); this.grpExtRX.Controls.Add(this.chkExtRX105); this.grpExtRX.Controls.Add(this.chkExtRX104); this.grpExtRX.Controls.Add(this.lblExtRX12); this.grpExtRX.Controls.Add(this.chkExtRX123); this.grpExtRX.Controls.Add(this.chkExtRX122); this.grpExtRX.Controls.Add(this.chkExtRX121); this.grpExtRX.Controls.Add(this.chkExtRX125); this.grpExtRX.Controls.Add(this.chkExtRX124); this.grpExtRX.Controls.Add(this.lblExtRX15); this.grpExtRX.Controls.Add(this.chkExtRX153); this.grpExtRX.Controls.Add(this.chkExtRX152); this.grpExtRX.Controls.Add(this.chkExtRX151); this.grpExtRX.Controls.Add(this.chkExtRX155); this.grpExtRX.Controls.Add(this.chkExtRX154); this.grpExtRX.Controls.Add(this.lblExtRX17); this.grpExtRX.Controls.Add(this.chkExtRX173); this.grpExtRX.Controls.Add(this.chkExtRX172); this.grpExtRX.Controls.Add(this.chkExtRX171); this.grpExtRX.Controls.Add(this.chkExtRX175); this.grpExtRX.Controls.Add(this.chkExtRX174); this.grpExtRX.Controls.Add(this.lblExtRX20); this.grpExtRX.Controls.Add(this.chkExtRX203); this.grpExtRX.Controls.Add(this.chkExtRX202); this.grpExtRX.Controls.Add(this.chkExtRX201); this.grpExtRX.Controls.Add(this.chkExtRX205); this.grpExtRX.Controls.Add(this.chkExtRX204); this.grpExtRX.Controls.Add(this.lblExtRX30); this.grpExtRX.Controls.Add(this.chkExtRX303); this.grpExtRX.Controls.Add(this.chkExtRX302); this.grpExtRX.Controls.Add(this.chkExtRX301); this.grpExtRX.Controls.Add(this.chkExtRX305); this.grpExtRX.Controls.Add(this.chkExtRX304); this.grpExtRX.Controls.Add(this.lblExtRX40); this.grpExtRX.Controls.Add(this.chkExtRX403); this.grpExtRX.Controls.Add(this.chkExtRX402); this.grpExtRX.Controls.Add(this.chkExtRX401); this.grpExtRX.Controls.Add(this.chkExtRX405); this.grpExtRX.Controls.Add(this.chkExtRX404); this.grpExtRX.Controls.Add(this.lblExtRX60); this.grpExtRX.Controls.Add(this.chkExtRX603); this.grpExtRX.Controls.Add(this.chkExtRX602); this.grpExtRX.Controls.Add(this.chkExtRX601); this.grpExtRX.Controls.Add(this.chkExtRX605); this.grpExtRX.Controls.Add(this.chkExtRX604); this.grpExtRX.Controls.Add(this.lblExtRX80); this.grpExtRX.Controls.Add(this.chkExtRX803); this.grpExtRX.Controls.Add(this.chkExtRX802); this.grpExtRX.Controls.Add(this.chkExtRX801); this.grpExtRX.Controls.Add(this.chkExtRX805); this.grpExtRX.Controls.Add(this.chkExtRX804); this.grpExtRX.Controls.Add(this.lblExtRXX2Pins); this.grpExtRX.Controls.Add(this.lblExtRXBand); this.grpExtRX.Controls.Add(this.lblExtRX160); this.grpExtRX.Controls.Add(this.chkExtRX1603); this.grpExtRX.Controls.Add(this.chkExtRX1602); this.grpExtRX.Controls.Add(this.chkExtRX1601); this.grpExtRX.Controls.Add(this.lblExtRXX21); this.grpExtRX.Controls.Add(this.chkExtRX1605); this.grpExtRX.Controls.Add(this.chkExtRX1604); this.grpExtRX.Enabled = false; this.grpExtRX.Location = new System.Drawing.Point(8, 8); this.grpExtRX.Name = "grpExtRX"; this.grpExtRX.Size = new System.Drawing.Size(168, 264); this.grpExtRX.TabIndex = 7; this.grpExtRX.TabStop = false; this.grpExtRX.Text = "Receive"; // // lblExtRXX26 // this.lblExtRXX26.Image = null; this.lblExtRXX26.Location = new System.Drawing.Point(144, 40); this.lblExtRXX26.Name = "lblExtRXX26"; this.lblExtRXX26.Size = new System.Drawing.Size(16, 16); this.lblExtRXX26.TabIndex = 92; this.lblExtRXX26.Text = "6"; this.lblExtRXX26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtRX26 // this.chkExtRX26.Image = null; this.chkExtRX26.Location = new System.Drawing.Point(144, 240); this.chkExtRX26.Name = "chkExtRX26"; this.chkExtRX26.Size = new System.Drawing.Size(16, 16); this.chkExtRX26.TabIndex = 91; this.chkExtRX26.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX66 // this.chkExtRX66.Image = null; this.chkExtRX66.Location = new System.Drawing.Point(144, 224); this.chkExtRX66.Name = "chkExtRX66"; this.chkExtRX66.Size = new System.Drawing.Size(16, 16); this.chkExtRX66.TabIndex = 90; this.chkExtRX66.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX106 // this.chkExtRX106.Image = null; this.chkExtRX106.Location = new System.Drawing.Point(144, 208); this.chkExtRX106.Name = "chkExtRX106"; this.chkExtRX106.Size = new System.Drawing.Size(16, 16); this.chkExtRX106.TabIndex = 89; this.chkExtRX106.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX126 // this.chkExtRX126.Image = null; this.chkExtRX126.Location = new System.Drawing.Point(144, 192); this.chkExtRX126.Name = "chkExtRX126"; this.chkExtRX126.Size = new System.Drawing.Size(16, 16); this.chkExtRX126.TabIndex = 88; this.chkExtRX126.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX156 // this.chkExtRX156.Image = null; this.chkExtRX156.Location = new System.Drawing.Point(144, 176); this.chkExtRX156.Name = "chkExtRX156"; this.chkExtRX156.Size = new System.Drawing.Size(16, 16); this.chkExtRX156.TabIndex = 87; this.chkExtRX156.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX176 // this.chkExtRX176.Image = null; this.chkExtRX176.Location = new System.Drawing.Point(144, 160); this.chkExtRX176.Name = "chkExtRX176"; this.chkExtRX176.Size = new System.Drawing.Size(16, 16); this.chkExtRX176.TabIndex = 86; this.chkExtRX176.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX206 // this.chkExtRX206.Image = null; this.chkExtRX206.Location = new System.Drawing.Point(144, 144); this.chkExtRX206.Name = "chkExtRX206"; this.chkExtRX206.Size = new System.Drawing.Size(16, 16); this.chkExtRX206.TabIndex = 85; this.chkExtRX206.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX306 // this.chkExtRX306.Image = null; this.chkExtRX306.Location = new System.Drawing.Point(144, 128); this.chkExtRX306.Name = "chkExtRX306"; this.chkExtRX306.Size = new System.Drawing.Size(16, 16); this.chkExtRX306.TabIndex = 84; this.chkExtRX306.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX406 // this.chkExtRX406.Image = null; this.chkExtRX406.Location = new System.Drawing.Point(144, 112); this.chkExtRX406.Name = "chkExtRX406"; this.chkExtRX406.Size = new System.Drawing.Size(16, 16); this.chkExtRX406.TabIndex = 83; this.chkExtRX406.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX606 // this.chkExtRX606.Image = null; this.chkExtRX606.Location = new System.Drawing.Point(144, 96); this.chkExtRX606.Name = "chkExtRX606"; this.chkExtRX606.Size = new System.Drawing.Size(16, 16); this.chkExtRX606.TabIndex = 82; this.chkExtRX606.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX806 // this.chkExtRX806.Image = null; this.chkExtRX806.Location = new System.Drawing.Point(144, 80); this.chkExtRX806.Name = "chkExtRX806"; this.chkExtRX806.Size = new System.Drawing.Size(16, 16); this.chkExtRX806.TabIndex = 81; this.chkExtRX806.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX1606 // this.chkExtRX1606.Image = null; this.chkExtRX1606.Location = new System.Drawing.Point(144, 64); this.chkExtRX1606.Name = "chkExtRX1606"; this.chkExtRX1606.Size = new System.Drawing.Size(16, 16); this.chkExtRX1606.TabIndex = 80; this.chkExtRX1606.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // lblExtRXX25 // this.lblExtRXX25.Image = null; this.lblExtRXX25.Location = new System.Drawing.Point(128, 40); this.lblExtRXX25.Name = "lblExtRXX25"; this.lblExtRXX25.Size = new System.Drawing.Size(16, 16); this.lblExtRXX25.TabIndex = 79; this.lblExtRXX25.Text = "5"; this.lblExtRXX25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXX24 // this.lblExtRXX24.Image = null; this.lblExtRXX24.Location = new System.Drawing.Point(112, 40); this.lblExtRXX24.Name = "lblExtRXX24"; this.lblExtRXX24.Size = new System.Drawing.Size(16, 16); this.lblExtRXX24.TabIndex = 78; this.lblExtRXX24.Text = "4"; this.lblExtRXX24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXX23 // this.lblExtRXX23.Image = null; this.lblExtRXX23.Location = new System.Drawing.Point(96, 40); this.lblExtRXX23.Name = "lblExtRXX23"; this.lblExtRXX23.Size = new System.Drawing.Size(16, 16); this.lblExtRXX23.TabIndex = 77; this.lblExtRXX23.Text = "3"; this.lblExtRXX23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXX22 // this.lblExtRXX22.Image = null; this.lblExtRXX22.Location = new System.Drawing.Point(80, 40); this.lblExtRXX22.Name = "lblExtRXX22"; this.lblExtRXX22.Size = new System.Drawing.Size(16, 16); this.lblExtRXX22.TabIndex = 76; this.lblExtRXX22.Text = "2"; this.lblExtRXX22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRX2 // this.lblExtRX2.Image = null; this.lblExtRX2.Location = new System.Drawing.Point(16, 240); this.lblExtRX2.Name = "lblExtRX2"; this.lblExtRX2.Size = new System.Drawing.Size(40, 16); this.lblExtRX2.TabIndex = 75; this.lblExtRX2.Text = "2m"; // // chkExtRX23 // this.chkExtRX23.Image = null; this.chkExtRX23.Location = new System.Drawing.Point(96, 240); this.chkExtRX23.Name = "chkExtRX23"; this.chkExtRX23.Size = new System.Drawing.Size(16, 16); this.chkExtRX23.TabIndex = 72; this.chkExtRX23.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX22 // this.chkExtRX22.Image = null; this.chkExtRX22.Location = new System.Drawing.Point(80, 240); this.chkExtRX22.Name = "chkExtRX22"; this.chkExtRX22.Size = new System.Drawing.Size(16, 16); this.chkExtRX22.TabIndex = 71; this.chkExtRX22.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX21 // this.chkExtRX21.Image = null; this.chkExtRX21.Location = new System.Drawing.Point(64, 240); this.chkExtRX21.Name = "chkExtRX21"; this.chkExtRX21.Size = new System.Drawing.Size(16, 16); this.chkExtRX21.TabIndex = 70; this.chkExtRX21.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX25 // this.chkExtRX25.Image = null; this.chkExtRX25.Location = new System.Drawing.Point(128, 240); this.chkExtRX25.Name = "chkExtRX25"; this.chkExtRX25.Size = new System.Drawing.Size(16, 16); this.chkExtRX25.TabIndex = 74; this.chkExtRX25.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX24 // this.chkExtRX24.Image = null; this.chkExtRX24.Location = new System.Drawing.Point(112, 240); this.chkExtRX24.Name = "chkExtRX24"; this.chkExtRX24.Size = new System.Drawing.Size(16, 16); this.chkExtRX24.TabIndex = 73; this.chkExtRX24.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // lblExtRX6 // this.lblExtRX6.Image = null; this.lblExtRX6.Location = new System.Drawing.Point(16, 224); this.lblExtRX6.Name = "lblExtRX6"; this.lblExtRX6.Size = new System.Drawing.Size(40, 16); this.lblExtRX6.TabIndex = 69; this.lblExtRX6.Text = "6m"; // // chkExtRX63 // this.chkExtRX63.Image = null; this.chkExtRX63.Location = new System.Drawing.Point(96, 224); this.chkExtRX63.Name = "chkExtRX63"; this.chkExtRX63.Size = new System.Drawing.Size(16, 16); this.chkExtRX63.TabIndex = 66; this.chkExtRX63.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX62 // this.chkExtRX62.Image = null; this.chkExtRX62.Location = new System.Drawing.Point(80, 224); this.chkExtRX62.Name = "chkExtRX62"; this.chkExtRX62.Size = new System.Drawing.Size(16, 16); this.chkExtRX62.TabIndex = 65; this.chkExtRX62.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX61 // this.chkExtRX61.Image = null; this.chkExtRX61.Location = new System.Drawing.Point(64, 224); this.chkExtRX61.Name = "chkExtRX61"; this.chkExtRX61.Size = new System.Drawing.Size(16, 16); this.chkExtRX61.TabIndex = 64; this.chkExtRX61.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX65 // this.chkExtRX65.Image = null; this.chkExtRX65.Location = new System.Drawing.Point(128, 224); this.chkExtRX65.Name = "chkExtRX65"; this.chkExtRX65.Size = new System.Drawing.Size(16, 16); this.chkExtRX65.TabIndex = 68; this.chkExtRX65.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX64 // this.chkExtRX64.Image = null; this.chkExtRX64.Location = new System.Drawing.Point(112, 224); this.chkExtRX64.Name = "chkExtRX64"; this.chkExtRX64.Size = new System.Drawing.Size(16, 16); this.chkExtRX64.TabIndex = 67; this.chkExtRX64.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // lblExtRX10 // this.lblExtRX10.Image = null; this.lblExtRX10.Location = new System.Drawing.Point(16, 208); this.lblExtRX10.Name = "lblExtRX10"; this.lblExtRX10.Size = new System.Drawing.Size(40, 16); this.lblExtRX10.TabIndex = 63; this.lblExtRX10.Text = "10m"; // // chkExtRX103 // this.chkExtRX103.Image = null; this.chkExtRX103.Location = new System.Drawing.Point(96, 208); this.chkExtRX103.Name = "chkExtRX103"; this.chkExtRX103.Size = new System.Drawing.Size(16, 16); this.chkExtRX103.TabIndex = 60; this.chkExtRX103.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX102 // this.chkExtRX102.Image = null; this.chkExtRX102.Location = new System.Drawing.Point(80, 208); this.chkExtRX102.Name = "chkExtRX102"; this.chkExtRX102.Size = new System.Drawing.Size(16, 16); this.chkExtRX102.TabIndex = 59; this.chkExtRX102.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX101 // this.chkExtRX101.Image = null; this.chkExtRX101.Location = new System.Drawing.Point(64, 208); this.chkExtRX101.Name = "chkExtRX101"; this.chkExtRX101.Size = new System.Drawing.Size(16, 16); this.chkExtRX101.TabIndex = 58; this.chkExtRX101.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX105 // this.chkExtRX105.Image = null; this.chkExtRX105.Location = new System.Drawing.Point(128, 208); this.chkExtRX105.Name = "chkExtRX105"; this.chkExtRX105.Size = new System.Drawing.Size(16, 16); this.chkExtRX105.TabIndex = 62; this.chkExtRX105.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX104 // this.chkExtRX104.Image = null; this.chkExtRX104.Location = new System.Drawing.Point(112, 208); this.chkExtRX104.Name = "chkExtRX104"; this.chkExtRX104.Size = new System.Drawing.Size(16, 16); this.chkExtRX104.TabIndex = 61; this.chkExtRX104.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // lblExtRX12 // this.lblExtRX12.Image = null; this.lblExtRX12.Location = new System.Drawing.Point(16, 192); this.lblExtRX12.Name = "lblExtRX12"; this.lblExtRX12.Size = new System.Drawing.Size(40, 16); this.lblExtRX12.TabIndex = 57; this.lblExtRX12.Text = "12m"; // // chkExtRX123 // this.chkExtRX123.Image = null; this.chkExtRX123.Location = new System.Drawing.Point(96, 192); this.chkExtRX123.Name = "chkExtRX123"; this.chkExtRX123.Size = new System.Drawing.Size(16, 16); this.chkExtRX123.TabIndex = 54; this.chkExtRX123.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX122 // this.chkExtRX122.Image = null; this.chkExtRX122.Location = new System.Drawing.Point(80, 192); this.chkExtRX122.Name = "chkExtRX122"; this.chkExtRX122.Size = new System.Drawing.Size(16, 16); this.chkExtRX122.TabIndex = 53; this.chkExtRX122.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX121 // this.chkExtRX121.Image = null; this.chkExtRX121.Location = new System.Drawing.Point(64, 192); this.chkExtRX121.Name = "chkExtRX121"; this.chkExtRX121.Size = new System.Drawing.Size(16, 16); this.chkExtRX121.TabIndex = 52; this.chkExtRX121.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX125 // this.chkExtRX125.Image = null; this.chkExtRX125.Location = new System.Drawing.Point(128, 192); this.chkExtRX125.Name = "chkExtRX125"; this.chkExtRX125.Size = new System.Drawing.Size(16, 16); this.chkExtRX125.TabIndex = 56; this.chkExtRX125.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX124 // this.chkExtRX124.Image = null; this.chkExtRX124.Location = new System.Drawing.Point(112, 192); this.chkExtRX124.Name = "chkExtRX124"; this.chkExtRX124.Size = new System.Drawing.Size(16, 16); this.chkExtRX124.TabIndex = 55; this.chkExtRX124.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // lblExtRX15 // this.lblExtRX15.Image = null; this.lblExtRX15.Location = new System.Drawing.Point(16, 176); this.lblExtRX15.Name = "lblExtRX15"; this.lblExtRX15.Size = new System.Drawing.Size(40, 16); this.lblExtRX15.TabIndex = 51; this.lblExtRX15.Text = "15m"; // // chkExtRX153 // this.chkExtRX153.Image = null; this.chkExtRX153.Location = new System.Drawing.Point(96, 176); this.chkExtRX153.Name = "chkExtRX153"; this.chkExtRX153.Size = new System.Drawing.Size(16, 16); this.chkExtRX153.TabIndex = 48; this.chkExtRX153.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX152 // this.chkExtRX152.Image = null; this.chkExtRX152.Location = new System.Drawing.Point(80, 176); this.chkExtRX152.Name = "chkExtRX152"; this.chkExtRX152.Size = new System.Drawing.Size(16, 16); this.chkExtRX152.TabIndex = 47; this.chkExtRX152.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX151 // this.chkExtRX151.Image = null; this.chkExtRX151.Location = new System.Drawing.Point(64, 176); this.chkExtRX151.Name = "chkExtRX151"; this.chkExtRX151.Size = new System.Drawing.Size(16, 16); this.chkExtRX151.TabIndex = 46; this.chkExtRX151.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX155 // this.chkExtRX155.Image = null; this.chkExtRX155.Location = new System.Drawing.Point(128, 176); this.chkExtRX155.Name = "chkExtRX155"; this.chkExtRX155.Size = new System.Drawing.Size(16, 16); this.chkExtRX155.TabIndex = 50; this.chkExtRX155.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX154 // this.chkExtRX154.Image = null; this.chkExtRX154.Location = new System.Drawing.Point(112, 176); this.chkExtRX154.Name = "chkExtRX154"; this.chkExtRX154.Size = new System.Drawing.Size(16, 16); this.chkExtRX154.TabIndex = 49; this.chkExtRX154.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // lblExtRX17 // this.lblExtRX17.Image = null; this.lblExtRX17.Location = new System.Drawing.Point(16, 160); this.lblExtRX17.Name = "lblExtRX17"; this.lblExtRX17.Size = new System.Drawing.Size(40, 16); this.lblExtRX17.TabIndex = 45; this.lblExtRX17.Text = "17m"; // // chkExtRX173 // this.chkExtRX173.Image = null; this.chkExtRX173.Location = new System.Drawing.Point(96, 160); this.chkExtRX173.Name = "chkExtRX173"; this.chkExtRX173.Size = new System.Drawing.Size(16, 16); this.chkExtRX173.TabIndex = 42; this.chkExtRX173.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX172 // this.chkExtRX172.Image = null; this.chkExtRX172.Location = new System.Drawing.Point(80, 160); this.chkExtRX172.Name = "chkExtRX172"; this.chkExtRX172.Size = new System.Drawing.Size(16, 16); this.chkExtRX172.TabIndex = 41; this.chkExtRX172.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX171 // this.chkExtRX171.Image = null; this.chkExtRX171.Location = new System.Drawing.Point(64, 160); this.chkExtRX171.Name = "chkExtRX171"; this.chkExtRX171.Size = new System.Drawing.Size(16, 16); this.chkExtRX171.TabIndex = 40; this.chkExtRX171.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX175 // this.chkExtRX175.Image = null; this.chkExtRX175.Location = new System.Drawing.Point(128, 160); this.chkExtRX175.Name = "chkExtRX175"; this.chkExtRX175.Size = new System.Drawing.Size(16, 16); this.chkExtRX175.TabIndex = 44; this.chkExtRX175.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX174 // this.chkExtRX174.Image = null; this.chkExtRX174.Location = new System.Drawing.Point(112, 160); this.chkExtRX174.Name = "chkExtRX174"; this.chkExtRX174.Size = new System.Drawing.Size(16, 16); this.chkExtRX174.TabIndex = 43; this.chkExtRX174.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // lblExtRX20 // this.lblExtRX20.Image = null; this.lblExtRX20.Location = new System.Drawing.Point(16, 144); this.lblExtRX20.Name = "lblExtRX20"; this.lblExtRX20.Size = new System.Drawing.Size(40, 16); this.lblExtRX20.TabIndex = 39; this.lblExtRX20.Text = "20m"; // // chkExtRX203 // this.chkExtRX203.Image = null; this.chkExtRX203.Location = new System.Drawing.Point(96, 144); this.chkExtRX203.Name = "chkExtRX203"; this.chkExtRX203.Size = new System.Drawing.Size(16, 16); this.chkExtRX203.TabIndex = 36; this.chkExtRX203.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX202 // this.chkExtRX202.Image = null; this.chkExtRX202.Location = new System.Drawing.Point(80, 144); this.chkExtRX202.Name = "chkExtRX202"; this.chkExtRX202.Size = new System.Drawing.Size(16, 16); this.chkExtRX202.TabIndex = 35; this.chkExtRX202.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX201 // this.chkExtRX201.Image = null; this.chkExtRX201.Location = new System.Drawing.Point(64, 144); this.chkExtRX201.Name = "chkExtRX201"; this.chkExtRX201.Size = new System.Drawing.Size(16, 16); this.chkExtRX201.TabIndex = 34; this.chkExtRX201.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX205 // this.chkExtRX205.Image = null; this.chkExtRX205.Location = new System.Drawing.Point(128, 144); this.chkExtRX205.Name = "chkExtRX205"; this.chkExtRX205.Size = new System.Drawing.Size(16, 16); this.chkExtRX205.TabIndex = 38; this.chkExtRX205.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX204 // this.chkExtRX204.Image = null; this.chkExtRX204.Location = new System.Drawing.Point(112, 144); this.chkExtRX204.Name = "chkExtRX204"; this.chkExtRX204.Size = new System.Drawing.Size(16, 16); this.chkExtRX204.TabIndex = 37; this.chkExtRX204.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // lblExtRX30 // this.lblExtRX30.Image = null; this.lblExtRX30.Location = new System.Drawing.Point(16, 128); this.lblExtRX30.Name = "lblExtRX30"; this.lblExtRX30.Size = new System.Drawing.Size(40, 16); this.lblExtRX30.TabIndex = 33; this.lblExtRX30.Text = "30m"; // // chkExtRX303 // this.chkExtRX303.Image = null; this.chkExtRX303.Location = new System.Drawing.Point(96, 128); this.chkExtRX303.Name = "chkExtRX303"; this.chkExtRX303.Size = new System.Drawing.Size(16, 16); this.chkExtRX303.TabIndex = 30; this.chkExtRX303.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX302 // this.chkExtRX302.Image = null; this.chkExtRX302.Location = new System.Drawing.Point(80, 128); this.chkExtRX302.Name = "chkExtRX302"; this.chkExtRX302.Size = new System.Drawing.Size(16, 16); this.chkExtRX302.TabIndex = 29; this.chkExtRX302.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX301 // this.chkExtRX301.Image = null; this.chkExtRX301.Location = new System.Drawing.Point(64, 128); this.chkExtRX301.Name = "chkExtRX301"; this.chkExtRX301.Size = new System.Drawing.Size(16, 16); this.chkExtRX301.TabIndex = 28; this.chkExtRX301.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX305 // this.chkExtRX305.Image = null; this.chkExtRX305.Location = new System.Drawing.Point(128, 128); this.chkExtRX305.Name = "chkExtRX305"; this.chkExtRX305.Size = new System.Drawing.Size(16, 16); this.chkExtRX305.TabIndex = 32; this.chkExtRX305.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX304 // this.chkExtRX304.Image = null; this.chkExtRX304.Location = new System.Drawing.Point(112, 128); this.chkExtRX304.Name = "chkExtRX304"; this.chkExtRX304.Size = new System.Drawing.Size(16, 16); this.chkExtRX304.TabIndex = 31; this.chkExtRX304.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // lblExtRX40 // this.lblExtRX40.Image = null; this.lblExtRX40.Location = new System.Drawing.Point(16, 112); this.lblExtRX40.Name = "lblExtRX40"; this.lblExtRX40.Size = new System.Drawing.Size(40, 16); this.lblExtRX40.TabIndex = 27; this.lblExtRX40.Text = "40m"; // // chkExtRX403 // this.chkExtRX403.Image = null; this.chkExtRX403.Location = new System.Drawing.Point(96, 112); this.chkExtRX403.Name = "chkExtRX403"; this.chkExtRX403.Size = new System.Drawing.Size(16, 16); this.chkExtRX403.TabIndex = 24; this.chkExtRX403.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX402 // this.chkExtRX402.Image = null; this.chkExtRX402.Location = new System.Drawing.Point(80, 112); this.chkExtRX402.Name = "chkExtRX402"; this.chkExtRX402.Size = new System.Drawing.Size(16, 16); this.chkExtRX402.TabIndex = 23; this.chkExtRX402.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX401 // this.chkExtRX401.Image = null; this.chkExtRX401.Location = new System.Drawing.Point(64, 112); this.chkExtRX401.Name = "chkExtRX401"; this.chkExtRX401.Size = new System.Drawing.Size(16, 16); this.chkExtRX401.TabIndex = 22; this.chkExtRX401.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX405 // this.chkExtRX405.Image = null; this.chkExtRX405.Location = new System.Drawing.Point(128, 112); this.chkExtRX405.Name = "chkExtRX405"; this.chkExtRX405.Size = new System.Drawing.Size(16, 16); this.chkExtRX405.TabIndex = 26; this.chkExtRX405.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX404 // this.chkExtRX404.Image = null; this.chkExtRX404.Location = new System.Drawing.Point(112, 112); this.chkExtRX404.Name = "chkExtRX404"; this.chkExtRX404.Size = new System.Drawing.Size(16, 16); this.chkExtRX404.TabIndex = 25; this.chkExtRX404.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // lblExtRX60 // this.lblExtRX60.Image = null; this.lblExtRX60.Location = new System.Drawing.Point(16, 96); this.lblExtRX60.Name = "lblExtRX60"; this.lblExtRX60.Size = new System.Drawing.Size(40, 16); this.lblExtRX60.TabIndex = 21; this.lblExtRX60.Text = "60m"; // // chkExtRX603 // this.chkExtRX603.Image = null; this.chkExtRX603.Location = new System.Drawing.Point(96, 96); this.chkExtRX603.Name = "chkExtRX603"; this.chkExtRX603.Size = new System.Drawing.Size(16, 16); this.chkExtRX603.TabIndex = 18; this.chkExtRX603.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX602 // this.chkExtRX602.Image = null; this.chkExtRX602.Location = new System.Drawing.Point(80, 96); this.chkExtRX602.Name = "chkExtRX602"; this.chkExtRX602.Size = new System.Drawing.Size(16, 16); this.chkExtRX602.TabIndex = 17; this.chkExtRX602.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX601 // this.chkExtRX601.Image = null; this.chkExtRX601.Location = new System.Drawing.Point(64, 96); this.chkExtRX601.Name = "chkExtRX601"; this.chkExtRX601.Size = new System.Drawing.Size(16, 16); this.chkExtRX601.TabIndex = 16; this.chkExtRX601.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX605 // this.chkExtRX605.Image = null; this.chkExtRX605.Location = new System.Drawing.Point(128, 96); this.chkExtRX605.Name = "chkExtRX605"; this.chkExtRX605.Size = new System.Drawing.Size(16, 16); this.chkExtRX605.TabIndex = 20; this.chkExtRX605.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX604 // this.chkExtRX604.Image = null; this.chkExtRX604.Location = new System.Drawing.Point(112, 96); this.chkExtRX604.Name = "chkExtRX604"; this.chkExtRX604.Size = new System.Drawing.Size(16, 16); this.chkExtRX604.TabIndex = 19; this.chkExtRX604.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // lblExtRX80 // this.lblExtRX80.Image = null; this.lblExtRX80.Location = new System.Drawing.Point(16, 80); this.lblExtRX80.Name = "lblExtRX80"; this.lblExtRX80.Size = new System.Drawing.Size(40, 16); this.lblExtRX80.TabIndex = 15; this.lblExtRX80.Text = "80m"; // // chkExtRX803 // this.chkExtRX803.Image = null; this.chkExtRX803.Location = new System.Drawing.Point(96, 80); this.chkExtRX803.Name = "chkExtRX803"; this.chkExtRX803.Size = new System.Drawing.Size(16, 16); this.chkExtRX803.TabIndex = 12; this.chkExtRX803.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX802 // this.chkExtRX802.Image = null; this.chkExtRX802.Location = new System.Drawing.Point(80, 80); this.chkExtRX802.Name = "chkExtRX802"; this.chkExtRX802.Size = new System.Drawing.Size(16, 16); this.chkExtRX802.TabIndex = 11; this.chkExtRX802.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX801 // this.chkExtRX801.Image = null; this.chkExtRX801.Location = new System.Drawing.Point(64, 80); this.chkExtRX801.Name = "chkExtRX801"; this.chkExtRX801.Size = new System.Drawing.Size(16, 16); this.chkExtRX801.TabIndex = 10; this.chkExtRX801.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX805 // this.chkExtRX805.Image = null; this.chkExtRX805.Location = new System.Drawing.Point(128, 80); this.chkExtRX805.Name = "chkExtRX805"; this.chkExtRX805.Size = new System.Drawing.Size(16, 16); this.chkExtRX805.TabIndex = 14; this.chkExtRX805.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX804 // this.chkExtRX804.Image = null; this.chkExtRX804.Location = new System.Drawing.Point(112, 80); this.chkExtRX804.Name = "chkExtRX804"; this.chkExtRX804.Size = new System.Drawing.Size(16, 16); this.chkExtRX804.TabIndex = 13; this.chkExtRX804.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // lblExtRXX2Pins // this.lblExtRXX2Pins.Image = null; this.lblExtRXX2Pins.Location = new System.Drawing.Point(64, 24); this.lblExtRXX2Pins.Name = "lblExtRXX2Pins"; this.lblExtRXX2Pins.Size = new System.Drawing.Size(96, 16); this.lblExtRXX2Pins.TabIndex = 9; this.lblExtRXX2Pins.Text = "X2 Pins"; this.lblExtRXX2Pins.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXBand // this.lblExtRXBand.Image = null; this.lblExtRXBand.Location = new System.Drawing.Point(16, 24); this.lblExtRXBand.Name = "lblExtRXBand"; this.lblExtRXBand.Size = new System.Drawing.Size(32, 16); this.lblExtRXBand.TabIndex = 8; this.lblExtRXBand.Text = "Band"; // // lblExtRX160 // this.lblExtRX160.Image = null; this.lblExtRX160.Location = new System.Drawing.Point(16, 64); this.lblExtRX160.Name = "lblExtRX160"; this.lblExtRX160.Size = new System.Drawing.Size(40, 16); this.lblExtRX160.TabIndex = 7; this.lblExtRX160.Text = "160m"; // // chkExtRX1603 // this.chkExtRX1603.Image = null; this.chkExtRX1603.Location = new System.Drawing.Point(96, 64); this.chkExtRX1603.Name = "chkExtRX1603"; this.chkExtRX1603.Size = new System.Drawing.Size(16, 16); this.chkExtRX1603.TabIndex = 3; this.chkExtRX1603.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // chkExtRX1602 // this.chkExtRX1602.Image = null; this.chkExtRX1602.Location = new System.Drawing.Point(80, 64); this.chkExtRX1602.Name = "chkExtRX1602"; this.chkExtRX1602.Size = new System.Drawing.Size(16, 16); this.chkExtRX1602.TabIndex = 2; this.chkExtRX1602.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // chkExtRX1601 // this.chkExtRX1601.Image = null; this.chkExtRX1601.Location = new System.Drawing.Point(64, 64); this.chkExtRX1601.Name = "chkExtRX1601"; this.chkExtRX1601.Size = new System.Drawing.Size(16, 16); this.chkExtRX1601.TabIndex = 1; this.chkExtRX1601.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // lblExtRXX21 // this.lblExtRXX21.Image = null; this.lblExtRXX21.Location = new System.Drawing.Point(64, 40); this.lblExtRXX21.Name = "lblExtRXX21"; this.lblExtRXX21.Size = new System.Drawing.Size(16, 16); this.lblExtRXX21.TabIndex = 6; this.lblExtRXX21.Text = "1"; this.lblExtRXX21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtRX1605 // this.chkExtRX1605.Image = null; this.chkExtRX1605.Location = new System.Drawing.Point(128, 64); this.chkExtRX1605.Name = "chkExtRX1605"; this.chkExtRX1605.Size = new System.Drawing.Size(16, 16); this.chkExtRX1605.TabIndex = 5; this.chkExtRX1605.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // chkExtRX1604 // this.chkExtRX1604.Image = null; this.chkExtRX1604.Location = new System.Drawing.Point(112, 64); this.chkExtRX1604.Name = "chkExtRX1604"; this.chkExtRX1604.Size = new System.Drawing.Size(16, 16); this.chkExtRX1604.TabIndex = 4; this.chkExtRX1604.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // tpCAT // this.tpCAT.Controls.Add(this.chkKWAI); this.tpCAT.Controls.Add(this.chkFPInstalled); this.tpCAT.Controls.Add(this.chkDigUIsUSB); this.tpCAT.Controls.Add(this.lblCATRigType); this.tpCAT.Controls.Add(this.comboCATRigType); this.tpCAT.Controls.Add(this.btnCATTest); this.tpCAT.Controls.Add(this.grpPTTBitBang); this.tpCAT.Controls.Add(this.grpCatControlBox); this.tpCAT.Controls.Add(this.grpRTTYOffset); this.tpCAT.Location = new System.Drawing.Point(4, 22); this.tpCAT.Name = "tpCAT"; this.tpCAT.Size = new System.Drawing.Size(584, 286); this.tpCAT.TabIndex = 10; this.tpCAT.Text = "CAT Control"; // // chkKWAI // this.chkKWAI.Image = null; this.chkKWAI.Location = new System.Drawing.Point(192, 204); this.chkKWAI.Name = "chkKWAI"; this.chkKWAI.Size = new System.Drawing.Size(176, 24); this.chkKWAI.TabIndex = 98; this.chkKWAI.Text = "Allow Kenwood AI Command"; this.toolTip1.SetToolTip(this.chkKWAI, "Check only if your logger does not poll for frequency"); this.chkKWAI.CheckedChanged += new System.EventHandler(this.chkKWAI_CheckedChanged); // // chkFPInstalled // this.chkFPInstalled.Image = null; this.chkFPInstalled.Location = new System.Drawing.Point(192, 234); this.chkFPInstalled.Name = "chkFPInstalled"; this.chkFPInstalled.Size = new System.Drawing.Size(160, 24); this.chkFPInstalled.TabIndex = 97; this.chkFPInstalled.Text = "FlexProfiler Installed"; this.toolTip1.SetToolTip(this.chkFPInstalled, "Check if FlexProfiler installed"); this.chkFPInstalled.Visible = false; this.chkFPInstalled.CheckedChanged += new System.EventHandler(this.chkFPInstalled_CheckedChanged); // // chkDigUIsUSB // this.chkDigUIsUSB.Image = null; this.chkDigUIsUSB.Location = new System.Drawing.Point(192, 176); this.chkDigUIsUSB.Name = "chkDigUIsUSB"; this.chkDigUIsUSB.Size = new System.Drawing.Size(160, 24); this.chkDigUIsUSB.TabIndex = 96; this.chkDigUIsUSB.Text = "DigL/U Returns LSB/USB"; this.toolTip1.SetToolTip(this.chkDigUIsUSB, "Lies to the Kenwood CAT Interface to fool certain programs"); // // lblCATRigType // this.lblCATRigType.Image = null; this.lblCATRigType.Location = new System.Drawing.Point(400, 27); this.lblCATRigType.Name = "lblCATRigType"; this.lblCATRigType.Size = new System.Drawing.Size(36, 18); this.lblCATRigType.TabIndex = 95; this.lblCATRigType.Text = "ID as:"; // // comboCATRigType // this.comboCATRigType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATRigType.DropDownWidth = 56; this.comboCATRigType.Items.AddRange(new object[] {"PowerSDR","TS-2000", "TS-50S", "TS-480"}); this.comboCATRigType.Location = new System.Drawing.Point(442, 24); this.comboCATRigType.Name = "comboCATRigType"; this.comboCATRigType.Size = new System.Drawing.Size(88, 21); this.comboCATRigType.TabIndex = 94; this.toolTip1.SetToolTip(this.comboCATRigType, "Returns the selected CAT ID value when queried by the Kenwood \"ID\" CAT command"); this.comboCATRigType.SelectedIndexChanged += new System.EventHandler(this.comboCATRigType_SelectedIndexChanged); // // btnCATTest // this.btnCATTest.Image = null; this.btnCATTest.Location = new System.Drawing.Point(403, 64); this.btnCATTest.Name = "btnCATTest"; this.btnCATTest.Size = new System.Drawing.Size(77, 40); this.btnCATTest.TabIndex = 92; this.btnCATTest.Text = "Test CAT Commands"; this.toolTip1.SetToolTip(this.btnCATTest, "A test utility to verify CAT command responses"); this.btnCATTest.Click += new System.EventHandler(this.btnCATTest_Click); // // grpPTTBitBang // this.grpPTTBitBang.Controls.Add(this.comboCATPTTPort); this.grpPTTBitBang.Controls.Add(this.lblCATPTTPort); this.grpPTTBitBang.Controls.Add(this.chkCATPTT_RTS); this.grpPTTBitBang.Controls.Add(this.chkCATPTT_DTR); this.grpPTTBitBang.Controls.Add(this.chkCATPTTEnabled); this.grpPTTBitBang.Location = new System.Drawing.Point(192, 16); this.grpPTTBitBang.Name = "grpPTTBitBang"; this.grpPTTBitBang.Size = new System.Drawing.Size(128, 152); this.grpPTTBitBang.TabIndex = 91; this.grpPTTBitBang.TabStop = false; this.grpPTTBitBang.Text = "PTT Control"; // // comboCATPTTPort // this.comboCATPTTPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATPTTPort.DropDownWidth = 56; this.comboCATPTTPort.Location = new System.Drawing.Point(40, 56); this.comboCATPTTPort.Name = "comboCATPTTPort"; this.comboCATPTTPort.Size = new System.Drawing.Size(80, 21); this.comboCATPTTPort.TabIndex = 96; this.toolTip1.SetToolTip(this.comboCATPTTPort, "Selects the COM port for use with PTT control"); this.comboCATPTTPort.SelectedIndexChanged += new System.EventHandler(this.comboCATPTTPort_SelectedIndexChanged); // // lblCATPTTPort // this.lblCATPTTPort.Image = null; this.lblCATPTTPort.Location = new System.Drawing.Point(8, 56); this.lblCATPTTPort.Name = "lblCATPTTPort"; this.lblCATPTTPort.Size = new System.Drawing.Size(40, 23); this.lblCATPTTPort.TabIndex = 6; this.lblCATPTTPort.Text = "Port:"; // // chkCATPTT_RTS // this.chkCATPTT_RTS.Image = null; this.chkCATPTT_RTS.Location = new System.Drawing.Point(40, 88); this.chkCATPTT_RTS.Name = "chkCATPTT_RTS"; this.chkCATPTT_RTS.Size = new System.Drawing.Size(48, 24); this.chkCATPTT_RTS.TabIndex = 0; this.chkCATPTT_RTS.Text = "RTS"; this.chkCATPTT_RTS.CheckedChanged += new System.EventHandler(this.chkCATPTT_RTS_CheckedChanged); // // chkCATPTT_DTR // this.chkCATPTT_DTR.Image = null; this.chkCATPTT_DTR.Location = new System.Drawing.Point(40, 120); this.chkCATPTT_DTR.Name = "chkCATPTT_DTR"; this.chkCATPTT_DTR.Size = new System.Drawing.Size(60, 16); this.chkCATPTT_DTR.TabIndex = 1; this.chkCATPTT_DTR.Text = "DTR"; this.chkCATPTT_DTR.CheckedChanged += new System.EventHandler(this.chkCATPTT_DTR_CheckedChanged); // // chkCATPTTEnabled // this.chkCATPTTEnabled.Image = null; this.chkCATPTTEnabled.Location = new System.Drawing.Point(8, 16); this.chkCATPTTEnabled.Name = "chkCATPTTEnabled"; this.chkCATPTTEnabled.Size = new System.Drawing.Size(104, 24); this.chkCATPTTEnabled.TabIndex = 4; this.chkCATPTTEnabled.Text = "Enable PTT"; this.chkCATPTTEnabled.CheckedChanged += new System.EventHandler(this.chkCATPTTEnabled_CheckedChanged); // // grpCatControlBox // this.grpCatControlBox.Controls.Add(this.comboCATPort); this.grpCatControlBox.Controls.Add(this.comboCATbaud); this.grpCatControlBox.Controls.Add(this.lblCATBaud); this.grpCatControlBox.Controls.Add(this.lblCATPort); this.grpCatControlBox.Controls.Add(this.chkCATEnable); this.grpCatControlBox.Controls.Add(this.lblCATParity); this.grpCatControlBox.Controls.Add(this.lblCATData); this.grpCatControlBox.Controls.Add(this.lblCATStop); this.grpCatControlBox.Controls.Add(this.comboCATparity); this.grpCatControlBox.Controls.Add(this.comboCATdatabits); this.grpCatControlBox.Controls.Add(this.comboCATstopbits); this.grpCatControlBox.Location = new System.Drawing.Point(16, 16); this.grpCatControlBox.Name = "grpCatControlBox"; this.grpCatControlBox.Size = new System.Drawing.Size(160, 216); this.grpCatControlBox.TabIndex = 90; this.grpCatControlBox.TabStop = false; this.grpCatControlBox.Text = "CAT Control"; // // comboCATPort // this.comboCATPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATPort.DropDownWidth = 56; this.comboCATPort.Location = new System.Drawing.Point(72, 48); this.comboCATPort.Name = "comboCATPort"; this.comboCATPort.Size = new System.Drawing.Size(72, 21); this.comboCATPort.TabIndex = 95; this.toolTip1.SetToolTip(this.comboCATPort, "Sets the COM port to be used for the CAT interface."); this.comboCATPort.SelectedIndexChanged += new System.EventHandler(this.comboCATPort_SelectedIndexChanged); // // comboCATbaud // this.comboCATbaud.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATbaud.DropDownWidth = 56; this.comboCATbaud.Items.AddRange(new object[] { "300", "1200","2400", "4800","9600","19200", "38400","57600","115200"}); this.comboCATbaud.Location = new System.Drawing.Point(72, 88); this.comboCATbaud.Name = "comboCATbaud"; this.comboCATbaud.Size = new System.Drawing.Size(72, 21); this.comboCATbaud.TabIndex = 93; this.comboCATbaud.SelectedIndexChanged += new System.EventHandler(this.comboCATbaud_SelectedIndexChanged); // // lblCATBaud // this.lblCATBaud.Image = null; this.lblCATBaud.Location = new System.Drawing.Point(24, 88); this.lblCATBaud.Name = "lblCATBaud"; this.lblCATBaud.Size = new System.Drawing.Size(40, 23); this.lblCATBaud.TabIndex = 5; this.lblCATBaud.Text = "Baud"; // // lblCATPort // this.lblCATPort.Image = null; this.lblCATPort.Location = new System.Drawing.Point(24, 48); this.lblCATPort.Name = "lblCATPort"; this.lblCATPort.Size = new System.Drawing.Size(40, 23); this.lblCATPort.TabIndex = 3; this.lblCATPort.Text = "Port:"; // // chkCATEnable // this.chkCATEnable.Image = null; this.chkCATEnable.Location = new System.Drawing.Point(16, 24); this.chkCATEnable.Name = "chkCATEnable"; this.chkCATEnable.Size = new System.Drawing.Size(104, 24); this.chkCATEnable.TabIndex = 0; this.chkCATEnable.Text = "Enable CAT"; this.chkCATEnable.CheckedChanged += new System.EventHandler(this.chkCATEnable_CheckedChanged); // // lblCATParity // this.lblCATParity.Image = null; this.lblCATParity.Location = new System.Drawing.Point(24, 120); this.lblCATParity.Name = "lblCATParity"; this.lblCATParity.Size = new System.Drawing.Size(48, 23); this.lblCATParity.TabIndex = 92; this.lblCATParity.Text = "Parity"; // // lblCATData // this.lblCATData.Image = null; this.lblCATData.Location = new System.Drawing.Point(24, 152); this.lblCATData.Name = "lblCATData"; this.lblCATData.Size = new System.Drawing.Size(40, 23); this.lblCATData.TabIndex = 92; this.lblCATData.Text = "Data"; // // lblCATStop // this.lblCATStop.Image = null; this.lblCATStop.Location = new System.Drawing.Point(24, 184); this.lblCATStop.Name = "lblCATStop"; this.lblCATStop.Size = new System.Drawing.Size(40, 23); this.lblCATStop.TabIndex = 92; this.lblCATStop.Text = "Stop"; // // comboCATparity // this.comboCATparity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATparity.DropDownWidth = 56; this.comboCATparity.Items.AddRange(new object[] { "none", "odd ", "even", "mark", "space"}); this.comboCATparity.Location = new System.Drawing.Point(72, 120); this.comboCATparity.Name = "comboCATparity"; this.comboCATparity.Size = new System.Drawing.Size(72, 21); this.comboCATparity.TabIndex = 92; this.comboCATparity.SelectedIndexChanged += new System.EventHandler(this.comboCATparity_SelectedIndexChanged); // // comboCATdatabits // this.comboCATdatabits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATdatabits.DropDownWidth = 56; this.comboCATdatabits.Items.AddRange(new object[] { "8", "7", "6"}); this.comboCATdatabits.Location = new System.Drawing.Point(72, 152); this.comboCATdatabits.Name = "comboCATdatabits"; this.comboCATdatabits.Size = new System.Drawing.Size(72, 21); this.comboCATdatabits.TabIndex = 93; this.comboCATdatabits.SelectedIndexChanged += new System.EventHandler(this.comboCATdatabits_SelectedIndexChanged); // // comboCATstopbits // this.comboCATstopbits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATstopbits.DropDownWidth = 56; this.comboCATstopbits.Items.AddRange(new object[] { "1", "1.5", "2"}); this.comboCATstopbits.Location = new System.Drawing.Point(72, 184); this.comboCATstopbits.Name = "comboCATstopbits"; this.comboCATstopbits.Size = new System.Drawing.Size(72, 21); this.comboCATstopbits.TabIndex = 94; this.comboCATstopbits.SelectedIndexChanged += new System.EventHandler(this.comboCATstopbits_SelectedIndexChanged); // // grpRTTYOffset // this.grpRTTYOffset.Controls.Add(this.labelTS4); this.grpRTTYOffset.Controls.Add(this.labelTS3); this.grpRTTYOffset.Controls.Add(this.udRTTYU); this.grpRTTYOffset.Controls.Add(this.udRTTYL); this.grpRTTYOffset.Controls.Add(this.chkRTTYOffsetEnableB); this.grpRTTYOffset.Controls.Add(this.chkRTTYOffsetEnableA); this.grpRTTYOffset.Location = new System.Drawing.Point(400, 120); this.grpRTTYOffset.Name = "grpRTTYOffset"; this.grpRTTYOffset.Size = new System.Drawing.Size(168, 120); this.grpRTTYOffset.TabIndex = 97; this.grpRTTYOffset.TabStop = false; this.grpRTTYOffset.Text = "RTTY Offset"; // // labelTS4 // this.labelTS4.Image = null; this.labelTS4.Location = new System.Drawing.Point(108, 69); this.labelTS4.Name = "labelTS4"; this.labelTS4.Size = new System.Drawing.Size(40, 16); this.labelTS4.TabIndex = 101; this.labelTS4.Text = "DIGU"; // // labelTS3 // this.labelTS3.Image = null; this.labelTS3.Location = new System.Drawing.Point(24, 69); this.labelTS3.Name = "labelTS3"; this.labelTS3.Size = new System.Drawing.Size(40, 16); this.labelTS3.TabIndex = 100; this.labelTS3.Text = "DIGL"; // // udRTTYU // this.udRTTYU.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udRTTYU.Location = new System.Drawing.Point(104, 88); this.udRTTYU.Maximum = new decimal(new int[] { 3000, 0, 0, 0 }); this.udRTTYU.Minimum = new decimal(new int[] { 3000, 0, 0, -2147483648 }); this.udRTTYU.Name = "udRTTYU"; this.udRTTYU.Size = new System.Drawing.Size(48, 20); this.udRTTYU.TabIndex = 99; this.toolTip1.SetToolTip(this.udRTTYU, "Sets the DIGU frequency offset"); this.udRTTYU.Value = new decimal(new int[] { 2125, 0, 0, 0 }); this.udRTTYU.ValueChanged += new System.EventHandler(this.udRTTYU_ValueChanged); // // udRTTYL // this.udRTTYL.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udRTTYL.Location = new System.Drawing.Point(16, 88); this.udRTTYL.Maximum = new decimal(new int[] { 3000, 0, 0, 0 }); this.udRTTYL.Minimum = new decimal(new int[] { 3000, 0, 0, -2147483648 }); this.udRTTYL.Name = "udRTTYL"; this.udRTTYL.Size = new System.Drawing.Size(48, 20); this.udRTTYL.TabIndex = 98; this.toolTip1.SetToolTip(this.udRTTYL, "Sets the DIGL frequency offset"); this.udRTTYL.Value = new decimal(new int[] { 2125, 0, 0, 0 }); this.udRTTYL.ValueChanged += new System.EventHandler(this.udRTTYL_ValueChanged); // // chkRTTYOffsetEnableB // this.chkRTTYOffsetEnableB.Image = null; this.chkRTTYOffsetEnableB.Location = new System.Drawing.Point(16, 40); this.chkRTTYOffsetEnableB.Name = "chkRTTYOffsetEnableB"; this.chkRTTYOffsetEnableB.Size = new System.Drawing.Size(136, 24); this.chkRTTYOffsetEnableB.TabIndex = 97; this.chkRTTYOffsetEnableB.Text = "Enable Offset VFO B"; this.chkRTTYOffsetEnableB.CheckedChanged += new System.EventHandler(this.chkRTTYOffsetEnableB_CheckedChanged); // // chkRTTYOffsetEnableA // this.chkRTTYOffsetEnableA.Image = null; this.chkRTTYOffsetEnableA.Location = new System.Drawing.Point(16, 16); this.chkRTTYOffsetEnableA.Name = "chkRTTYOffsetEnableA"; this.chkRTTYOffsetEnableA.Size = new System.Drawing.Size(136, 24); this.chkRTTYOffsetEnableA.TabIndex = 96; this.chkRTTYOffsetEnableA.Text = "Enable Offset VFO A"; this.chkRTTYOffsetEnableA.CheckedChanged += new System.EventHandler(this.chkRTTYOffsetEnableA_CheckedChanged); // // tpTests // this.tpTests.Controls.Add(this.grpBoxTS1); this.tpTests.Controls.Add(this.ckEnableSigGen); this.tpTests.Controls.Add(this.grpTestX2); this.tpTests.Controls.Add(this.grpTestAudioBalance); this.tpTests.Controls.Add(this.grpTestTXIMD); this.tpTests.Controls.Add(this.grpImpulseTest); this.tpTests.Location = new System.Drawing.Point(4, 22); this.tpTests.Name = "tpTests"; this.tpTests.Size = new System.Drawing.Size(584, 286); this.tpTests.TabIndex = 7; this.tpTests.Text = "Tests"; // // grpBoxTS1 // this.grpBoxTS1.Controls.Add(this.udPulsePeriod); this.grpBoxTS1.Controls.Add(this.lblPulsePeriod); this.grpBoxTS1.Controls.Add(this.udPulseDuty); this.grpBoxTS1.Controls.Add(this.lblPulseDuty); this.grpBoxTS1.Controls.Add(this.grpSigGenTransmit); this.grpBoxTS1.Controls.Add(this.grpSigGenReceive); this.grpBoxTS1.Controls.Add(this.lblTestGenScale); this.grpBoxTS1.Controls.Add(this.udTestGenScale); this.grpBoxTS1.Controls.Add(this.lblTestSigGenFreqCallout); this.grpBoxTS1.Controls.Add(this.tkbarTestGenFreq); this.grpBoxTS1.Controls.Add(this.lblTestGenHzSec); this.grpBoxTS1.Controls.Add(this.udTestGenHzSec); this.grpBoxTS1.Controls.Add(this.lblTestGenHigh); this.grpBoxTS1.Controls.Add(this.udTestGenHigh); this.grpBoxTS1.Controls.Add(this.lblTestGenLow); this.grpBoxTS1.Controls.Add(this.udTestGenLow); this.grpBoxTS1.Controls.Add(this.btnTestGenSweep); this.grpBoxTS1.Location = new System.Drawing.Point(176, 80); this.grpBoxTS1.Name = "grpBoxTS1"; this.grpBoxTS1.Size = new System.Drawing.Size(400, 192); this.grpBoxTS1.TabIndex = 88; this.grpBoxTS1.TabStop = false; this.grpBoxTS1.Text = "Signal Generator"; // // udPulsePeriod // this.udPulsePeriod.DecimalPlaces = 2; this.udPulsePeriod.Increment = new decimal(new int[] { 1, 0, 0, 131072 }); this.udPulsePeriod.Location = new System.Drawing.Point(351, 86); this.udPulsePeriod.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPulsePeriod.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPulsePeriod.Name = "udPulsePeriod"; this.udPulsePeriod.Size = new System.Drawing.Size(43, 20); this.udPulsePeriod.TabIndex = 105; this.toolTip1.SetToolTip(this.udPulsePeriod, "Sets the amplitude of the signal (typically between 0 and 1.0)"); this.udPulsePeriod.Value = new decimal(new int[] { 10, 0, 0, 65536 }); this.udPulsePeriod.Visible = false; this.udPulsePeriod.ValueChanged += new System.EventHandler(this.udPulsePeriod_ValueChanged); // // lblPulsePeriod // this.lblPulsePeriod.Image = null; this.lblPulsePeriod.Location = new System.Drawing.Point(310, 88); this.lblPulsePeriod.Name = "lblPulsePeriod"; this.lblPulsePeriod.Size = new System.Drawing.Size(40, 16); this.lblPulsePeriod.TabIndex = 106; this.lblPulsePeriod.Text = "Period:"; this.lblPulsePeriod.Visible = false; // // udPulseDuty // this.udPulseDuty.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udPulseDuty.Location = new System.Drawing.Point(351, 64); this.udPulseDuty.Maximum = new decimal(new int[] { 100, 0, 0, 0 }); this.udPulseDuty.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udPulseDuty.Name = "udPulseDuty"; this.udPulseDuty.Size = new System.Drawing.Size(40, 20); this.udPulseDuty.TabIndex = 103; this.toolTip1.SetToolTip(this.udPulseDuty, "Sets the amplitude of the signal (typically between 0 and 1.0)"); this.udPulseDuty.Value = new decimal(new int[] { 10, 0, 0, 65536 }); this.udPulseDuty.Visible = false; this.udPulseDuty.ValueChanged += new System.EventHandler(this.udPulseDuty_ValueChanged); // // lblPulseDuty // this.lblPulseDuty.Image = null; this.lblPulseDuty.Location = new System.Drawing.Point(318, 66); this.lblPulseDuty.Name = "lblPulseDuty"; this.lblPulseDuty.Size = new System.Drawing.Size(32, 16); this.lblPulseDuty.TabIndex = 104; this.lblPulseDuty.Text = "Duty:"; this.lblPulseDuty.Visible = false; // // grpSigGenTransmit // this.grpSigGenTransmit.Controls.Add(this.lblSigGenTXMode); this.grpSigGenTransmit.Controls.Add(this.cmboSigGenTXMode); this.grpSigGenTransmit.Controls.Add(this.rdSigGenTXInput); this.grpSigGenTransmit.Controls.Add(this.rdSigGenTXOutput); this.grpSigGenTransmit.Location = new System.Drawing.Point(160, 16); this.grpSigGenTransmit.Name = "grpSigGenTransmit"; this.grpSigGenTransmit.Size = new System.Drawing.Size(152, 64); this.grpSigGenTransmit.TabIndex = 102; this.grpSigGenTransmit.TabStop = false; this.grpSigGenTransmit.Text = "Transmit"; // // lblSigGenTXMode // this.lblSigGenTXMode.Image = null; this.lblSigGenTXMode.Location = new System.Drawing.Point(16, 16); this.lblSigGenTXMode.Name = "lblSigGenTXMode"; this.lblSigGenTXMode.Size = new System.Drawing.Size(40, 16); this.lblSigGenTXMode.TabIndex = 96; this.lblSigGenTXMode.Text = "Mode:"; // // cmboSigGenTXMode // this.cmboSigGenTXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmboSigGenTXMode.DropDownWidth = 121; this.cmboSigGenTXMode.Items.AddRange(new object[] { "Radio","Tone","Noise", "Triangle", "Sawtooth", "Pulse", "Silence"}); this.cmboSigGenTXMode.Location = new System.Drawing.Point(56, 16); this.cmboSigGenTXMode.Name = "cmboSigGenTXMode"; this.cmboSigGenTXMode.Size = new System.Drawing.Size(88, 21); this.cmboSigGenTXMode.TabIndex = 91; this.toolTip1.SetToolTip(this.cmboSigGenTXMode, "Select the signal type."); this.cmboSigGenTXMode.SelectedIndexChanged += new System.EventHandler(this.cmboSigGenTXMode_SelectedIndexChanged); // // rdSigGenTXInput // this.rdSigGenTXInput.Checked = true; this.rdSigGenTXInput.Image = null; this.rdSigGenTXInput.Location = new System.Drawing.Point(24, 40); this.rdSigGenTXInput.Name = "rdSigGenTXInput"; this.rdSigGenTXInput.Size = new System.Drawing.Size(50, 16); this.rdSigGenTXInput.TabIndex = 99; this.rdSigGenTXInput.TabStop = true; this.rdSigGenTXInput.Text = "Input"; this.rdSigGenTXInput.CheckedChanged += new System.EventHandler(this.rdSigGenTXInput_CheckedChanged); // // rdSigGenTXOutput // this.rdSigGenTXOutput.Image = null; this.rdSigGenTXOutput.Location = new System.Drawing.Point(80, 40); this.rdSigGenTXOutput.Name = "rdSigGenTXOutput"; this.rdSigGenTXOutput.Size = new System.Drawing.Size(64, 16); this.rdSigGenTXOutput.TabIndex = 100; this.rdSigGenTXOutput.Text = "Output"; this.rdSigGenTXOutput.Visible = false; this.rdSigGenTXOutput.CheckedChanged += new System.EventHandler(this.rdSigGenTXOutput_CheckedChanged); // // grpSigGenReceive // this.grpSigGenReceive.Controls.Add(this.chkSigGenRX2); this.grpSigGenReceive.Controls.Add(this.lblSigGenRXMode); this.grpSigGenReceive.Controls.Add(this.cmboSigGenRXMode); this.grpSigGenReceive.Controls.Add(this.rdSigGenRXInput); this.grpSigGenReceive.Controls.Add(this.rdSigGenRXOutput); this.grpSigGenReceive.Location = new System.Drawing.Point(8, 16); this.grpSigGenReceive.Name = "grpSigGenReceive"; this.grpSigGenReceive.Size = new System.Drawing.Size(152, 88); this.grpSigGenReceive.TabIndex = 101; this.grpSigGenReceive.TabStop = false; this.grpSigGenReceive.Text = "Receive"; // // chkSigGenRX2 // this.chkSigGenRX2.Location = new System.Drawing.Point(16, 56); this.chkSigGenRX2.Name = "chkSigGenRX2"; this.chkSigGenRX2.Size = new System.Drawing.Size(48, 24); this.chkSigGenRX2.TabIndex = 101; this.chkSigGenRX2.Text = "RX2"; this.chkSigGenRX2.CheckedChanged += new System.EventHandler(this.chkSigGenRX2_CheckedChanged); // // lblSigGenRXMode // this.lblSigGenRXMode.Image = null; this.lblSigGenRXMode.Location = new System.Drawing.Point(16, 16); this.lblSigGenRXMode.Name = "lblSigGenRXMode"; this.lblSigGenRXMode.Size = new System.Drawing.Size(40, 16); this.lblSigGenRXMode.TabIndex = 96; this.lblSigGenRXMode.Text = "Mode:"; // // cmboSigGenRXMode // this.cmboSigGenRXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmboSigGenRXMode.DropDownWidth = 121; this.cmboSigGenRXMode.Items.AddRange(new object[] {"Radio", "Tone", "Noise", "Triangle", "Sawtooth","Pulse", "Silence"}); this.cmboSigGenRXMode.Location = new System.Drawing.Point(56, 16); this.cmboSigGenRXMode.Name = "cmboSigGenRXMode"; this.cmboSigGenRXMode.Size = new System.Drawing.Size(88, 21); this.cmboSigGenRXMode.TabIndex = 91; this.toolTip1.SetToolTip(this.cmboSigGenRXMode, "Select the signal type."); this.cmboSigGenRXMode.SelectedIndexChanged += new System.EventHandler(this.cmboSigGenRXMode_SelectedIndexChanged); // // rdSigGenRXInput // this.rdSigGenRXInput.Checked = true; this.rdSigGenRXInput.Image = null; this.rdSigGenRXInput.Location = new System.Drawing.Point(24, 40); this.rdSigGenRXInput.Name = "rdSigGenRXInput"; this.rdSigGenRXInput.Size = new System.Drawing.Size(51, 16); this.rdSigGenRXInput.TabIndex = 99; this.rdSigGenRXInput.TabStop = true; this.rdSigGenRXInput.Text = "Input"; this.rdSigGenRXInput.CheckedChanged += new System.EventHandler(this.rdSigGenRXInput_CheckedChanged); // // rdSigGenRXOutput // this.rdSigGenRXOutput.Image = null; this.rdSigGenRXOutput.Location = new System.Drawing.Point(80, 40); this.rdSigGenRXOutput.Name = "rdSigGenRXOutput"; this.rdSigGenRXOutput.Size = new System.Drawing.Size(64, 16); this.rdSigGenRXOutput.TabIndex = 100; this.rdSigGenRXOutput.Text = "Output"; this.rdSigGenRXOutput.CheckedChanged += new System.EventHandler(this.rdSigGenRXOutput_CheckedChanged); // // lblTestGenScale // this.lblTestGenScale.Image = null; this.lblTestGenScale.Location = new System.Drawing.Point(320, 24); this.lblTestGenScale.Name = "lblTestGenScale"; this.lblTestGenScale.Size = new System.Drawing.Size(40, 16); this.lblTestGenScale.TabIndex = 95; this.lblTestGenScale.Text = "Scale:"; this.lblTestGenScale.Visible = false; // // udTestGenScale // this.udTestGenScale.DecimalPlaces = 6; this.udTestGenScale.Increment = new decimal(new int[] { 1, 0, 0, 196608 }); this.udTestGenScale.Location = new System.Drawing.Point(320, 40); this.udTestGenScale.Maximum = new decimal(new int[] { 20, 0, 0, 0 }); this.udTestGenScale.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udTestGenScale.Name = "udTestGenScale"; this.udTestGenScale.Size = new System.Drawing.Size(72, 20); this.udTestGenScale.TabIndex = 94; this.toolTip1.SetToolTip(this.udTestGenScale, "Sets the amplitude of the signal (typically between 0 and 1.0)"); this.udTestGenScale.Value = new decimal(new int[] { 10, 0, 0, 65536 }); this.udTestGenScale.Visible = false; this.udTestGenScale.ValueChanged += new System.EventHandler(this.updnTestGenScale_ValueChanged); this.udTestGenScale.LostFocus += new System.EventHandler(this.udTestGenScale_LostFocus); // // lblTestSigGenFreqCallout // this.lblTestSigGenFreqCallout.Image = null; this.lblTestSigGenFreqCallout.Location = new System.Drawing.Point(24, 136); this.lblTestSigGenFreqCallout.Name = "lblTestSigGenFreqCallout"; this.lblTestSigGenFreqCallout.Size = new System.Drawing.Size(336, 16); this.lblTestSigGenFreqCallout.TabIndex = 90; this.lblTestSigGenFreqCallout.Text = "0 10k " + " 20k"; // // tkbarTestGenFreq // this.tkbarTestGenFreq.Location = new System.Drawing.Point(16, 104); this.tkbarTestGenFreq.Maximum = 20000; this.tkbarTestGenFreq.Name = "tkbarTestGenFreq"; this.tkbarTestGenFreq.Size = new System.Drawing.Size(344, 42); this.tkbarTestGenFreq.TabIndex = 1; this.tkbarTestGenFreq.TickFrequency = 1000; this.toolTip1.SetToolTip(this.tkbarTestGenFreq, "Sets the frequency of the signal."); this.tkbarTestGenFreq.Value = 10000; this.tkbarTestGenFreq.Scroll += new System.EventHandler(this.tkbarTestGenFreq_Scroll); // // lblTestGenHzSec // this.lblTestGenHzSec.Image = null; this.lblTestGenHzSec.Location = new System.Drawing.Point(200, 160); this.lblTestGenHzSec.Name = "lblTestGenHzSec"; this.lblTestGenHzSec.Size = new System.Drawing.Size(48, 16); this.lblTestGenHzSec.TabIndex = 88; this.lblTestGenHzSec.Text = "Hz/Sec:"; // // udTestGenHzSec // this.udTestGenHzSec.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udTestGenHzSec.Location = new System.Drawing.Point(248, 160); this.udTestGenHzSec.Maximum = new decimal(new int[] { 20000, 0, 0, 0 }); this.udTestGenHzSec.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udTestGenHzSec.Name = "udTestGenHzSec"; this.udTestGenHzSec.Size = new System.Drawing.Size(56, 20); this.udTestGenHzSec.TabIndex = 87; this.toolTip1.SetToolTip(this.udTestGenHzSec, "See the Sweep Button to the right."); this.udTestGenHzSec.Value = new decimal(new int[] { 100, 0, 0, 0 }); this.udTestGenHzSec.LostFocus += new System.EventHandler(this.udTestGenHzSec_LostFocus); // // lblTestGenHigh // this.lblTestGenHigh.Image = null; this.lblTestGenHigh.Location = new System.Drawing.Point(104, 160); this.lblTestGenHigh.Name = "lblTestGenHigh"; this.lblTestGenHigh.Size = new System.Drawing.Size(32, 16); this.lblTestGenHigh.TabIndex = 86; this.lblTestGenHigh.Text = "High:"; // // udTestGenHigh // this.udTestGenHigh.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udTestGenHigh.Location = new System.Drawing.Point(136, 160); this.udTestGenHigh.Maximum = new decimal(new int[] { 20000, 0, 0, 0 }); this.udTestGenHigh.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udTestGenHigh.Name = "udTestGenHigh"; this.udTestGenHigh.Size = new System.Drawing.Size(56, 20); this.udTestGenHigh.TabIndex = 85; this.toolTip1.SetToolTip(this.udTestGenHigh, "See the Sweep Button to the right."); this.udTestGenHigh.Value = new decimal(new int[] { 4000, 0, 0, 0 }); this.udTestGenHigh.LostFocus += new System.EventHandler(this.udTestGenHigh_LostFocus); // // lblTestGenLow // this.lblTestGenLow.Image = null; this.lblTestGenLow.Location = new System.Drawing.Point(8, 160); this.lblTestGenLow.Name = "lblTestGenLow"; this.lblTestGenLow.Size = new System.Drawing.Size(32, 16); this.lblTestGenLow.TabIndex = 84; this.lblTestGenLow.Text = "Low:"; // // udTestGenLow // this.udTestGenLow.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.udTestGenLow.Location = new System.Drawing.Point(40, 160); this.udTestGenLow.Maximum = new decimal(new int[] { 20000, 0, 0, 0 }); this.udTestGenLow.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.udTestGenLow.Name = "udTestGenLow"; this.udTestGenLow.Size = new System.Drawing.Size(56, 20); this.udTestGenLow.TabIndex = 83; this.toolTip1.SetToolTip(this.udTestGenLow, "See the Sweep Button to the right."); this.udTestGenLow.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.udTestGenLow.LostFocus += new System.EventHandler(this.udTestGenLow_LostFocus); // // btnTestGenSweep // this.btnTestGenSweep.Image = null; this.btnTestGenSweep.Location = new System.Drawing.Point(336, 160); this.btnTestGenSweep.Name = "btnTestGenSweep"; this.btnTestGenSweep.Size = new System.Drawing.Size(48, 23); this.btnTestGenSweep.TabIndex = 0; this.btnTestGenSweep.Text = "Sweep"; this.toolTip1.SetToolTip(this.btnTestGenSweep, "Click this button to sweep from the Low setting to the High setting using the Hz/" + "Sec setting."); this.btnTestGenSweep.Click += new System.EventHandler(this.buttonTestGenSweep_Click); // // ckEnableSigGen // this.ckEnableSigGen.Image = null; this.ckEnableSigGen.Location = new System.Drawing.Point(8, 240); this.ckEnableSigGen.Name = "ckEnableSigGen"; this.ckEnableSigGen.Size = new System.Drawing.Size(176, 40); this.ckEnableSigGen.TabIndex = 92; this.ckEnableSigGen.Text = "Enable HW Signal Generator"; this.ckEnableSigGen.Visible = false; this.ckEnableSigGen.CheckedChanged += new System.EventHandler(this.ckEnableSigGen_CheckedChanged); // // grpTestX2 // this.grpTestX2.Controls.Add(this.lblTestX2); this.grpTestX2.Controls.Add(this.chkTestX2Pin6); this.grpTestX2.Controls.Add(this.chkTestX2Pin5); this.grpTestX2.Controls.Add(this.chkTestX2Pin4); this.grpTestX2.Controls.Add(this.chkTestX2Pin3); this.grpTestX2.Controls.Add(this.chkTestX2Pin2); this.grpTestX2.Controls.Add(this.chkTestX2Pin1); this.grpTestX2.Location = new System.Drawing.Point(8, 160); this.grpTestX2.Name = "grpTestX2"; this.grpTestX2.Size = new System.Drawing.Size(160, 72); this.grpTestX2.TabIndex = 87; this.grpTestX2.TabStop = false; this.grpTestX2.Text = "X2"; // // lblTestX2 // this.lblTestX2.Image = null; this.lblTestX2.Location = new System.Drawing.Point(16, 48); this.lblTestX2.Name = "lblTestX2"; this.lblTestX2.Size = new System.Drawing.Size(136, 16); this.lblTestX2.TabIndex = 6; this.lblTestX2.Text = "1 2 3 4 5 6"; // // chkTestX2Pin6 // this.chkTestX2Pin6.Image = null; this.chkTestX2Pin6.Location = new System.Drawing.Point(136, 24); this.chkTestX2Pin6.Name = "chkTestX2Pin6"; this.chkTestX2Pin6.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin6.TabIndex = 5; this.chkTestX2Pin6.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin5 // this.chkTestX2Pin5.Image = null; this.chkTestX2Pin5.Location = new System.Drawing.Point(112, 24); this.chkTestX2Pin5.Name = "chkTestX2Pin5"; this.chkTestX2Pin5.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin5.TabIndex = 4; this.chkTestX2Pin5.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin4 // this.chkTestX2Pin4.Image = null; this.chkTestX2Pin4.Location = new System.Drawing.Point(88, 24); this.chkTestX2Pin4.Name = "chkTestX2Pin4"; this.chkTestX2Pin4.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin4.TabIndex = 3; this.chkTestX2Pin4.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin3 // this.chkTestX2Pin3.Image = null; this.chkTestX2Pin3.Location = new System.Drawing.Point(64, 24); this.chkTestX2Pin3.Name = "chkTestX2Pin3"; this.chkTestX2Pin3.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin3.TabIndex = 2; this.chkTestX2Pin3.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin2 // this.chkTestX2Pin2.Image = null; this.chkTestX2Pin2.Location = new System.Drawing.Point(40, 24); this.chkTestX2Pin2.Name = "chkTestX2Pin2"; this.chkTestX2Pin2.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin2.TabIndex = 1; this.chkTestX2Pin2.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin1 // this.chkTestX2Pin1.Image = null; this.chkTestX2Pin1.Location = new System.Drawing.Point(16, 24); this.chkTestX2Pin1.Name = "chkTestX2Pin1"; this.chkTestX2Pin1.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin1.TabIndex = 0; this.chkTestX2Pin1.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // grpTestAudioBalance // this.grpTestAudioBalance.Controls.Add(this.btnTestAudioBalStart); this.grpTestAudioBalance.Location = new System.Drawing.Point(344, 8); this.grpTestAudioBalance.Name = "grpTestAudioBalance"; this.grpTestAudioBalance.Size = new System.Drawing.Size(120, 64); this.grpTestAudioBalance.TabIndex = 86; this.grpTestAudioBalance.TabStop = false; this.grpTestAudioBalance.Text = "Audio Balance Test"; // // btnTestAudioBalStart // this.btnTestAudioBalStart.Image = null; this.btnTestAudioBalStart.Location = new System.Drawing.Point(24, 24); this.btnTestAudioBalStart.Name = "btnTestAudioBalStart"; this.btnTestAudioBalStart.Size = new System.Drawing.Size(75, 23); this.btnTestAudioBalStart.TabIndex = 0; this.btnTestAudioBalStart.Text = "Start"; this.btnTestAudioBalStart.Click += new System.EventHandler(this.btnTestAudioBalStart_Click); // // grpTestTXIMD // this.grpTestTXIMD.Controls.Add(this.lblTestToneFreq2); this.grpTestTXIMD.Controls.Add(this.udTestIMDFreq2); this.grpTestTXIMD.Controls.Add(this.lblTestIMDPower); this.grpTestTXIMD.Controls.Add(this.udTestIMDPower); this.grpTestTXIMD.Controls.Add(this.chekTestIMD); this.grpTestTXIMD.Controls.Add(this.lblTestToneFreq1); this.grpTestTXIMD.Controls.Add(this.udTestIMDFreq1); this.grpTestTXIMD.Location = new System.Drawing.Point(8, 8); this.grpTestTXIMD.Name = "grpTestTXIMD"; this.grpTestTXIMD.Size = new System.Drawing.Size(152, 144); this.grpTestTXIMD.TabIndex = 83; this.grpTestTXIMD.TabStop = false; this.grpTestTXIMD.Text = "Two Tone Test"; // // lblTestToneFreq2 // this.lblTestToneFreq2.Image = null; this.lblTestToneFreq2.Location = new System.Drawing.Point(16, 48); this.lblTestToneFreq2.Name = "lblTestToneFreq2"; this.lblTestToneFreq2.Size = new System.Drawing.Size(64, 16); this.lblTestToneFreq2.TabIndex = 88; this.lblTestToneFreq2.Text = "Freq #2:"; // // udTestIMDFreq2 // this.udTestIMDFreq2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDFreq2.Location = new System.Drawing.Point(80, 48); this.udTestIMDFreq2.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTestIMDFreq2.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDFreq2.Name = "udTestIMDFreq2"; this.udTestIMDFreq2.Size = new System.Drawing.Size(56, 20); this.udTestIMDFreq2.TabIndex = 87; this.udTestIMDFreq2.Value = new decimal(new int[] { 19000, 0, 0, 65536}); this.udTestIMDFreq2.LostFocus += new System.EventHandler(this.udTestIMDFreq2_LostFocus); // // lblTestIMDPower // this.lblTestIMDPower.Image = null; this.lblTestIMDPower.Location = new System.Drawing.Point(16, 72); this.lblTestIMDPower.Name = "lblTestIMDPower"; this.lblTestIMDPower.Size = new System.Drawing.Size(64, 16); this.lblTestIMDPower.TabIndex = 86; this.lblTestIMDPower.Text = "Power:"; // // udTestIMDPower // this.udTestIMDPower.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDPower.Location = new System.Drawing.Point(80, 72); this.udTestIMDPower.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTestIMDPower.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDPower.Name = "udTestIMDPower"; this.udTestIMDPower.Size = new System.Drawing.Size(56, 20); this.udTestIMDPower.TabIndex = 85; this.udTestIMDPower.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udTestIMDPower.LostFocus += new System.EventHandler(this.udTestIMDPower_LostFocus); // // chekTestIMD // this.chekTestIMD.Appearance = System.Windows.Forms.Appearance.Button; this.chekTestIMD.Image = null; this.chekTestIMD.Location = new System.Drawing.Point(48, 104); this.chekTestIMD.Name = "chekTestIMD"; this.chekTestIMD.Size = new System.Drawing.Size(64, 24); this.chekTestIMD.TabIndex = 84; this.chekTestIMD.Text = "Start"; this.chekTestIMD.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chekTestIMD.CheckedChanged += new System.EventHandler(this.chkTestIMD_CheckedChanged); // // lblTestToneFreq1 // this.lblTestToneFreq1.Image = null; this.lblTestToneFreq1.Location = new System.Drawing.Point(16, 24); this.lblTestToneFreq1.Name = "lblTestToneFreq1"; this.lblTestToneFreq1.Size = new System.Drawing.Size(64, 16); this.lblTestToneFreq1.TabIndex = 83; this.lblTestToneFreq1.Text = "Freq #1:"; // // udTestIMDFreq1 // this.udTestIMDFreq1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDFreq1.Location = new System.Drawing.Point(80, 24); this.udTestIMDFreq1.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTestIMDFreq1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDFreq1.Name = "udTestIMDFreq1"; this.udTestIMDFreq1.Size = new System.Drawing.Size(56, 20); this.udTestIMDFreq1.TabIndex = 82; this.udTestIMDFreq1.Value = new decimal(new int[] { 7000, 0, 0, 65536}); this.udTestIMDFreq1.LostFocus += new System.EventHandler(this.udTestIMDFreq1_LostFocus); // // grpImpulseTest // this.grpImpulseTest.Controls.Add(this.udImpulseNum); this.grpImpulseTest.Controls.Add(this.btnImpulse); this.grpImpulseTest.Location = new System.Drawing.Point(168, 8); this.grpImpulseTest.Name = "grpImpulseTest"; this.grpImpulseTest.Size = new System.Drawing.Size(160, 64); this.grpImpulseTest.TabIndex = 91; this.grpImpulseTest.TabStop = false; this.grpImpulseTest.Text = "Impulse Test"; // // udImpulseNum // this.udImpulseNum.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udImpulseNum.Location = new System.Drawing.Point(104, 24); this.udImpulseNum.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udImpulseNum.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udImpulseNum.Name = "udImpulseNum"; this.udImpulseNum.Size = new System.Drawing.Size(40, 20); this.udImpulseNum.TabIndex = 92; this.udImpulseNum.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udImpulseNum.LostFocus += new System.EventHandler(this.udImpulseNum_LostFocus); // // btnImpulse // this.btnImpulse.Image = null; this.btnImpulse.Location = new System.Drawing.Point(16, 24); this.btnImpulse.Name = "btnImpulse"; this.btnImpulse.Size = new System.Drawing.Size(75, 23); this.btnImpulse.TabIndex = 90; this.btnImpulse.Text = "Impulse"; this.btnImpulse.Click += new System.EventHandler(this.btnImpulse_Click); // // openFileDialog1 // this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); // // btnExportDB // this.btnExportDB.Image = null; this.btnExportDB.Location = new System.Drawing.Point(224, 328); this.btnExportDB.Name = "btnExportDB"; this.btnExportDB.Size = new System.Drawing.Size(112, 23); this.btnExportDB.TabIndex = 22; this.btnExportDB.Text = "Export Database..."; this.toolTip1.SetToolTip(this.btnExportDB, "Copy the saved PowerSDR Database to the folder location of your choice."); this.btnExportDB.Click += new System.EventHandler(this.btnExportDB_Click); // // btnImportDB // this.btnImportDB.Image = null; this.btnImportDB.Location = new System.Drawing.Point(108, 328); this.btnImportDB.Name = "btnImportDB"; this.btnImportDB.Size = new System.Drawing.Size(112, 23); this.btnImportDB.TabIndex = 21; this.btnImportDB.Text = "Import Database..."; this.toolTip1.SetToolTip(this.btnImportDB, "Replace the current PowerSDR database with a previously exported database."); this.btnImportDB.Click += new System.EventHandler(this.btnImportDB_Click); // // btnResetDB // this.btnResetDB.Image = null; this.btnResetDB.Location = new System.Drawing.Point(8, 328); this.btnResetDB.Name = "btnResetDB"; this.btnResetDB.Size = new System.Drawing.Size(96, 23); this.btnResetDB.TabIndex = 20; this.btnResetDB.Text = "Factory Defaults"; this.toolTip1.SetToolTip(this.btnResetDB, "Copies the current database to the desktop and resets to the defaults (after rest" + "arting)"); this.btnResetDB.Click += new System.EventHandler(this.btnResetDB_Click); // // btnApply // this.btnApply.Image = null; this.btnApply.Location = new System.Drawing.Point(524, 328); this.btnApply.Name = "btnApply"; this.btnApply.Size = new System.Drawing.Size(75, 23); this.btnApply.TabIndex = 19; this.btnApply.Text = "Apply"; this.toolTip1.SetToolTip(this.btnApply, "Save current settings to the database."); this.btnApply.Click += new System.EventHandler(this.btnApply_Click); // // btnCancel // this.btnCancel.Image = null; this.btnCancel.Location = new System.Drawing.Point(443, 328); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 18; this.btnCancel.Text = "Cancel"; this.toolTip1.SetToolTip(this.btnCancel, "Load settings from database and close form."); this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnOK // this.btnOK.Image = null; this.btnOK.Location = new System.Drawing.Point(362, 328); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 23); this.btnOK.TabIndex = 17; this.btnOK.Text = "OK"; this.toolTip1.SetToolTip(this.btnOK, "Keep current settings and close form."); this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // timer_sweep // this.timer_sweep.Tick += new System.EventHandler(this.timer_sweep_Tick); // // saveFileDialog1 // this.saveFileDialog1.Filter = "PowerSDR Database Files (*.xml)|*.xml|All files|*.*"; this.saveFileDialog1.InitialDirectory = "Environment.GetFolderPath(Environment.SpecialFolder.Desktop)"; this.saveFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog1_FileOk); // // Setup // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(616, 357); this.Controls.Add(this.btnExportDB); this.Controls.Add(this.btnImportDB); this.Controls.Add(this.btnResetDB); this.Controls.Add(this.btnApply); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Controls.Add(this.tcSetup); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.KeyPreview = true; this.Menu = this.mainMenu1; this.Name = "Setup"; this.Text = "PowerSDR Setup"; this.Closing += new System.ComponentModel.CancelEventHandler(this.Setup_Closing); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Setup_KeyDown); this.tcSetup.ResumeLayout(false); this.tpGeneral.ResumeLayout(false); this.tcGeneral.ResumeLayout(false); this.tpGeneralHardware.ResumeLayout(false); this.grpHWSoftRock.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udSoftRockCenterFreq)).EndInit(); this.grpGeneralDDS.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDDSCorrection)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSIFFreq)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSPLLMult)).EndInit(); this.grpGeneralModel.ResumeLayout(false); this.grpGeneralHardwareFLEX5000.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udF3KFanTempThresh)).EndInit(); this.grpGeneralHardwareSDR1000.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralLPTDelay)).EndInit(); this.grpGeneralHardwareFLEX1500.ResumeLayout(false); this.tpGeneralOptions.ResumeLayout(false); this.grpOptUSBBuf.ResumeLayout(false); this.grpOptUSBBuf.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbOptUSBBuf)).EndInit(); this.grpGenCustomTitleText.ResumeLayout(false); this.grpGenCustomTitleText.PerformLayout(); this.grpOptMisc.ResumeLayout(false); this.grpOptQuickQSY.ResumeLayout(false); this.grpGenAutoMute.ResumeLayout(false); this.grpGenTuningOptions.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGU)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGL)).EndInit(); this.grpGeneralOptions.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGenTX1Delay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralX2Delay)).EndInit(); this.grpGeneralProcessPriority.ResumeLayout(false); this.tpGeneralCalibration.ResumeLayout(false); this.grpGenCalRXImage.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq3)).EndInit(); this.grpGenCalLevel.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq2)).EndInit(); this.grpGeneralCalibration.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq1)).EndInit(); this.tpFilters.ResumeLayout(false); this.grpOptFilterControls.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udFilterDefaultLowCut)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterShift)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterWidth)).EndInit(); this.tpRX2.ResumeLayout(false); this.tpGeneralNavigation.ResumeLayout(false); this.grpOptSpaceNav.ResumeLayout(false); this.grpOptSpaceNav.PerformLayout(); this.tpAudio.ResumeLayout(false); this.tcAudio.ResumeLayout(false); this.tpAudioCard1.ResumeLayout(false); this.grpAudioChannels.ResumeLayout(false); this.grpAudioMicInGain1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioMicGain1)).EndInit(); this.grpAudioLineInGain1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioLineIn1)).EndInit(); this.grpAudioVolts1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioVoltage1)).EndInit(); this.grpAudioDetails1.ResumeLayout(false); this.grpAudioLatency1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency1)).EndInit(); this.grpAudioCard.ResumeLayout(false); this.grpAudioBufferSize1.ResumeLayout(false); this.grpAudioSampleRate1.ResumeLayout(false); this.tpVAC.ResumeLayout(false); this.grpDirectIQOutput.ResumeLayout(false); this.grpAudioVACAutoEnable.ResumeLayout(false); this.grpAudioVACGain.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainRX)).EndInit(); this.grpAudio2Stereo.ResumeLayout(false); this.grpAudioLatency2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency2)).EndInit(); this.grpAudioSampleRate2.ResumeLayout(false); this.grpAudioBuffer2.ResumeLayout(false); this.grpAudioDetails2.ResumeLayout(false); this.tpVAC2.ResumeLayout(false); this.grpVAC2DirectIQ.ResumeLayout(false); this.grpVAC2AutoEnable.ResumeLayout(false); this.grpVAC2Gain.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udVAC2GainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udVAC2GainRX)).EndInit(); this.grpAudioStereo3.ResumeLayout(false); this.grpVAC2Latency.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udVAC2Latency)).EndInit(); this.grpAudioSampleRate3.ResumeLayout(false); this.grpAudioBuffer3.ResumeLayout(false); this.grpAudioDetails3.ResumeLayout(false); this.tpDisplay.ResumeLayout(false); this.grpDisplayMultimeter.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udMeterDigitalDelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterAvg)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiTextHoldTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiPeakHoldTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterDelay)).EndInit(); this.grpDisplayDriverEngine.ResumeLayout(false); this.grpDisplayPolyPhase.ResumeLayout(false); this.grpDisplayScopeMode.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayScopeTime)).EndInit(); this.grpDisplayWaterfall.ResumeLayout(false); this.grpDisplayWaterfall.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallUpdatePeriod)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallAvgTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallLowLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallHighLevel)).EndInit(); this.grpDisplayRefreshRates.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCPUMeter)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPeakText)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayFPS)).EndInit(); this.grpDisplayAverage.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayAVGTime)).EndInit(); this.grpDisplayPhase.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPhasePts)).EndInit(); this.grpDisplaySpectrumGrid.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridStep)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMin)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMax)).EndInit(); this.tpDSP.ResumeLayout(false); this.tcDSP.ResumeLayout(false); this.tpDSPOptions.ResumeLayout(false); this.grpDSPBufferSize.ResumeLayout(false); this.grpDSPBufDig.ResumeLayout(false); this.grpDSPBufCW.ResumeLayout(false); this.grpDSPBufPhone.ResumeLayout(false); this.grpDSPNB.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB)).EndInit(); this.grpDSPLMSNR.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRLeak)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRgain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRtaps)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRdelay)).EndInit(); this.grpDSPLMSANF.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFLeak)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFgain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFdelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFtaps)).EndInit(); this.grpDSPWindow.ResumeLayout(false); this.grpDSPNB2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB2)).EndInit(); this.tpDSPImageReject.ResumeLayout(false); this.grpDSPImageRejectTX.ResumeLayout(false); this.grpDSPImageRejectTX.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainTX)).EndInit(); this.tpDSPKeyer.ResumeLayout(false); this.grpKeyerConnections.ResumeLayout(false); this.grpDSPCWPitch.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWPitch)).EndInit(); this.grpDSPKeyerOptions.ResumeLayout(false); this.grpDSPKeyerSignalShaping.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerWeight)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerRamp)).EndInit(); this.grpDSPKeyerSemiBreakIn.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udCWBreakInDelay)).EndInit(); this.tpDSPAGCALC.ResumeLayout(false); this.grpDSPLeveler.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerAttack)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPLevelerHangThreshold)).EndInit(); this.grpDSPALC.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbDSPALCHangThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCAttack)).EndInit(); this.grpDSPAGC.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbDSPAGCHangThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCMaxGaindB)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCAttack)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCFixedGaindB)).EndInit(); this.tpTransmit.ResumeLayout(false); this.grpTXProfileDef.ResumeLayout(false); this.grpTXAM.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXAMCarrierLevel)).EndInit(); this.grpTXMonitor.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXAF)).EndInit(); this.grpTXNoiseGate.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGateAttenuate)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGate)).EndInit(); this.grpTXProfile.ResumeLayout(false); this.grpPATune.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXTunePower)).EndInit(); this.grpTXFilter.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterLow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterHigh)).EndInit(); this.grpTXVOX.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXThreshold)).EndInit(); this.grpTX1500.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTX1500PhoneBlanking)).EndInit(); this.tpPowerAmplifier.ResumeLayout(false); this.grpPABandOffset.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udPAADC17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC160)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC80)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC60)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC40)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC30)).EndInit(); this.grpPAGainByBand.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udPACalPower)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain30)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain40)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain60)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain80)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain160)).EndInit(); this.tpAppearance.ResumeLayout(false); this.tcAppearance.ResumeLayout(false); this.tpAppearanceGeneral.ResumeLayout(false); this.grpAppSkins.ResumeLayout(false); this.grpAppearanceBand.ResumeLayout(false); this.grpAppearanceVFO.ResumeLayout(false); this.tpAppearanceDisplay.ResumeLayout(false); this.grpMainDisplay.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayLineWidth)).EndInit(); this.grpAppPanadapter.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udBandSegmentBoxLineWidth)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbMultiRXFilterAlpha)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRX1FilterAlpha)).EndInit(); this.grpDisplayPeakCursor.ResumeLayout(false); this.tpAppearanceMeter.ResumeLayout(false); this.grpMeterEdge.ResumeLayout(false); this.grpAppearanceMeter.ResumeLayout(false); this.tpKeyboard.ResumeLayout(false); this.grpKBXIT.ResumeLayout(false); this.grpKBRIT.ResumeLayout(false); this.grpKBMode.ResumeLayout(false); this.grpKBBand.ResumeLayout(false); this.grpKBTune.ResumeLayout(false); this.grpKBFilter.ResumeLayout(false); this.grpKBCW.ResumeLayout(false); this.tpExtCtrl.ResumeLayout(false); this.grpExtTX.ResumeLayout(false); this.grpExtRX.ResumeLayout(false); this.tpCAT.ResumeLayout(false); this.grpPTTBitBang.ResumeLayout(false); this.grpCatControlBox.ResumeLayout(false); this.grpRTTYOffset.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udRTTYU)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udRTTYL)).EndInit(); this.tpTests.ResumeLayout(false); this.grpBoxTS1.ResumeLayout(false); this.grpBoxTS1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPulsePeriod)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPulseDuty)).EndInit(); this.grpSigGenTransmit.ResumeLayout(false); this.grpSigGenReceive.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTestGenScale)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tkbarTestGenFreq)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHzSec)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHigh)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenLow)).EndInit(); this.grpTestX2.ResumeLayout(false); this.grpTestAudioBalance.ResumeLayout(false); this.grpTestTXIMD.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDPower)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq1)).EndInit(); this.grpImpulseTest.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udImpulseNum)).EndInit(); this.ResumeLayout(false); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Setup)); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.VID_TextBox = new System.Windows.Forms.MaskedTextBox(); this.PID_TextBox = new System.Windows.Forms.MaskedTextBox(); this.lbxTX_IF_shift = new System.Windows.Forms.Label(); this.chkG59_PA10 = new System.Windows.Forms.CheckBoxTS(); this.udG40Xtal1 = new System.Windows.Forms.NumericUpDownTS(); this.udG3020Xtal4 = new System.Windows.Forms.NumericUpDownTS(); this.udG3020Xtal3 = new System.Windows.Forms.NumericUpDownTS(); this.udG3020Xtal2 = new System.Windows.Forms.NumericUpDownTS(); this.udG3020Xtal1 = new System.Windows.Forms.NumericUpDownTS(); this.udG160Xtal2 = new System.Windows.Forms.NumericUpDownTS(); this.udG160Xtal1 = new System.Windows.Forms.NumericUpDownTS(); this.lblShowHideGui = new System.Windows.Forms.LabelTS(); this.chkDragVFOA = new System.Windows.Forms.CheckBoxTS(); this.chkAlwaysOnTop = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralRXOnly = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralUSBPresent = new System.Windows.Forms.CheckBoxTS(); this.chkOptAlwaysOnTop = new System.Windows.Forms.CheckBoxTS(); this.chkOptEnableKBShortcuts = new System.Windows.Forms.CheckBoxTS(); this.chkOptQuickQSY = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralDisablePTT = new System.Windows.Forms.CheckBoxTS(); this.comboGeneralProcessPriority = new System.Windows.Forms.ComboBoxTS(); this.btnGeneralCalImageReset = new System.Windows.Forms.ButtonTS(); this.udGeneralCalLevel = new System.Windows.Forms.NumericUpDownTS(); this.udGeneralCalFreq2 = new System.Windows.Forms.NumericUpDownTS(); this.btnGeneralCalLevelStart = new System.Windows.Forms.ButtonTS(); this.udFilterDefaultLowCut = new System.Windows.Forms.NumericUpDownTS(); this.udOptMaxFilterShift = new System.Windows.Forms.NumericUpDownTS(); this.comboOptFilterWidthMode = new System.Windows.Forms.ComboBoxTS(); this.udOptMaxFilterWidth = new System.Windows.Forms.NumericUpDownTS(); this.chkOptFilterSaveChanges = new System.Windows.Forms.CheckBoxTS(); this.lblG59_DASH_DOT_ratio = new System.Windows.Forms.LabelTS(); this.udG59DASH_DOT_ratio = new System.Windows.Forms.NumericUpDownTS(); this.chkIambicReverse = new System.Windows.Forms.CheckBoxTS(); this.udG59CWSpeed = new System.Windows.Forms.NumericUpDownTS(); this.btnSi570Test = new System.Windows.Forms.ButtonTS(); this.udSi570_divisor = new System.Windows.Forms.NumericUpDownTS(); this.udSi570_address = new System.Windows.Forms.NumericUpDownTS(); this.udSi570_xtal1 = new System.Windows.Forms.NumericUpDownTS(); this.comboKeyerConnPrimary = new System.Windows.Forms.ComboBoxTS(); this.lblKeyerConnPrimary = new System.Windows.Forms.LabelTS(); this.udIQCorrection = new System.Windows.Forms.NumericUpDownTS(); this.chkTXIQswap = new System.Windows.Forms.CheckBoxTS(); this.chkRXIQswap = new System.Windows.Forms.CheckBoxTS(); this.chkVACPrimaryAudioDevice = new System.Windows.Forms.CheckBoxTS(); this.comboAudioChannels1 = new System.Windows.Forms.ComboBoxTS(); this.udAudioMicGain1 = new System.Windows.Forms.NumericUpDownTS(); this.udAudioLineIn1 = new System.Windows.Forms.NumericUpDownTS(); this.btnAudioVoltTest1 = new System.Windows.Forms.ButtonTS(); this.udAudioVoltage1 = new System.Windows.Forms.NumericUpDownTS(); this.comboAudioTransmit1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioOutput1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioInput1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioDriver1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioMixer1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioReceive1 = new System.Windows.Forms.ComboBoxTS(); this.udAudioLatency1 = new System.Windows.Forms.NumericUpDownTS(); this.comboAudioSoundCard = new System.Windows.Forms.ComboBoxTS(); this.comboAudioBuffer1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioSampleRate1 = new System.Windows.Forms.ComboBoxTS(); this.chkAudioVACAutoEnable = new System.Windows.Forms.CheckBoxTS(); this.udAudioVACGainTX = new System.Windows.Forms.NumericUpDownTS(); this.udAudioVACGainRX = new System.Windows.Forms.NumericUpDownTS(); this.comboAudioSampleRateVAC = new System.Windows.Forms.ComboBoxTS(); this.comboAudioBufferVAC = new System.Windows.Forms.ComboBoxTS(); this.comboAudioOutputVAC = new System.Windows.Forms.ComboBoxTS(); this.comboAudioInputVAC = new System.Windows.Forms.ComboBoxTS(); this.comboAudioDriverVAC = new System.Windows.Forms.ComboBoxTS(); this.chkAudioEnableVAC = new System.Windows.Forms.CheckBoxTS(); this.comboDisplayDriver = new System.Windows.Forms.ComboBoxTS(); this.chkSpectrumPolyphase = new System.Windows.Forms.CheckBoxTS(); this.udDisplayScopeTime = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayMeterAvg = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayMultiTextHoldTime = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayMultiPeakHoldTime = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayWaterfallAvgTime = new System.Windows.Forms.NumericUpDownTS(); this.label1 = new System.Windows.Forms.Label(); this.comboColorPalette = new System.Windows.Forms.ComboBoxTS(); this.clrbtnWaterfallMid = new PowerSDR.ColorButton(); this.clrbtnWaterfallHigh = new PowerSDR.ColorButton(); this.clrbtnWaterfallLow = new PowerSDR.ColorButton(); this.udDisplayWaterfallLowLevel = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayWaterfallHighLevel = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayCPUMeter = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayPeakText = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayMeterDelay = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayFPS = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayAVGTime = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayPhasePts = new System.Windows.Forms.NumericUpDownTS(); this.chkHorGrid = new System.Windows.Forms.CheckBoxTS(); this.chkVertGrid = new System.Windows.Forms.CheckBoxTS(); this.comboDisplayLabelAlign = new System.Windows.Forms.ComboBoxTS(); this.udDisplayGridStep = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayGridMin = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayGridMax = new System.Windows.Forms.NumericUpDownTS(); this.comboDSPBufSizePhone = new System.Windows.Forms.ComboBoxTS(); this.udDSPNB = new System.Windows.Forms.NumericUpDownTS(); this.udLMSNRgain = new System.Windows.Forms.NumericUpDownTS(); this.udLMSNRdelay = new System.Windows.Forms.NumericUpDownTS(); this.udLMSNRtaps = new System.Windows.Forms.NumericUpDownTS(); this.udLMSANFgain = new System.Windows.Forms.NumericUpDownTS(); this.udLMSANFdelay = new System.Windows.Forms.NumericUpDownTS(); this.udLMSANFtaps = new System.Windows.Forms.NumericUpDownTS(); this.comboDSPWindow = new System.Windows.Forms.ComboBoxTS(); this.udDSPNB2 = new System.Windows.Forms.NumericUpDownTS(); this.btnTXCalibrateAll = new System.Windows.Forms.Button(); this.btnTXClearBandCalibration = new System.Windows.Forms.Button(); this.btnTXCalibrateBand = new System.Windows.Forms.Button(); this.btnTXCallibrateClear = new System.Windows.Forms.Button(); this.checkboxTXImagCal = new System.Windows.Forms.CheckBoxTS(); this.udDSPImageGainTX = new System.Windows.Forms.NumericUpDownTS(); this.udDSPImagePhaseTX = new System.Windows.Forms.NumericUpDownTS(); this.tbDSPImagePhaseTX = new System.Windows.Forms.TrackBarTS(); this.tbDSPImageGainTX = new System.Windows.Forms.TrackBarTS(); this.comboKeyerConnDASHLine = new System.Windows.Forms.ComboBoxTS(); this.comboKeyerConnSecondary = new System.Windows.Forms.ComboBoxTS(); this.comboKeyerConnDOTLine = new System.Windows.Forms.ComboBoxTS(); this.udDSPCWPitch = new System.Windows.Forms.NumericUpDownTS(); this.chkCWKeyerMode = new System.Windows.Forms.CheckBoxTS(); this.chkHiPerfKeyer = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerRevPdl = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerIambic = new System.Windows.Forms.CheckBoxTS(); this.udCWKeyerWeight = new System.Windows.Forms.NumericUpDownTS(); this.udCWKeyerRise = new System.Windows.Forms.NumericUpDownTS(); this.chkDSPKeyerSemiBreakInEnabled = new System.Windows.Forms.CheckBoxTS(); this.udCWKeyerSemiBreakInDelay = new System.Windows.Forms.NumericUpDownTS(); this.chkDSPLevelerEnabled = new System.Windows.Forms.CheckBoxTS(); this.udDSPLevelerThreshold = new System.Windows.Forms.NumericUpDownTS(); this.udDSPALCThreshold = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCMaxGaindB = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCFixedGaindB = new System.Windows.Forms.NumericUpDownTS(); this.udTXAMCarrierLevel = new System.Windows.Forms.NumericUpDownTS(); this.udTXAF = new System.Windows.Forms.NumericUpDownTS(); this.udTXVOXHangTime = new System.Windows.Forms.NumericUpDownTS(); this.chkTXVOXEnabled = new System.Windows.Forms.CheckBoxTS(); this.udTXVOXThreshold = new System.Windows.Forms.NumericUpDownTS(); this.chkTXNoiseGateEnabled = new System.Windows.Forms.CheckBoxTS(); this.udTXNoiseGate = new System.Windows.Forms.NumericUpDownTS(); this.btnTXProfileDelete = new System.Windows.Forms.Button(); this.btnTXProfileSave = new System.Windows.Forms.Button(); this.comboTXProfileName = new System.Windows.Forms.ComboBoxTS(); this.udTXTunePower = new System.Windows.Forms.NumericUpDownTS(); this.tbTXCompander = new System.Windows.Forms.TrackBarTS(); this.udTXCompander = new System.Windows.Forms.NumericUpDownTS(); this.udTXFFCompression = new System.Windows.Forms.NumericUpDownTS(); this.tbTXFFCompression = new System.Windows.Forms.TrackBarTS(); this.udTXFilterLow = new System.Windows.Forms.NumericUpDownTS(); this.udTXFilterHigh = new System.Windows.Forms.NumericUpDownTS(); this.chkDCBlock = new System.Windows.Forms.CheckBoxTS(); this.btnPAGainReset = new System.Windows.Forms.ButtonTS(); this.udPACalPower = new System.Windows.Forms.NumericUpDownTS(); this.btnDisplayFont = new System.Windows.Forms.ButtonTS(); this.lblConsoleClor = new System.Windows.Forms.LabelTS(); this.clrbtnConsoleColor = new PowerSDR.ColorButton(); this.lblMenuFont = new System.Windows.Forms.LabelTS(); this.btnMainMenuFont = new System.Windows.Forms.ButtonTS(); this.lblSkinButtonColor = new System.Windows.Forms.LabelTS(); this.clrbtnSkinButtonColor = new PowerSDR.ColorButton(); this.comboMeterType = new System.Windows.Forms.ComboBoxTS(); this.comboCWXMsg6 = new System.Windows.Forms.ComboBoxTS(); this.comboCWXMsg5 = new System.Windows.Forms.ComboBoxTS(); this.comboCWXMsg4 = new System.Windows.Forms.ComboBoxTS(); this.comboCWXMsg3 = new System.Windows.Forms.ComboBoxTS(); this.comboCWXMsg2 = new System.Windows.Forms.ComboBoxTS(); this.comboCWXMsg1 = new System.Windows.Forms.ComboBoxTS(); this.comboVoiceMsg6 = new System.Windows.Forms.ComboBoxTS(); this.comboVoiceMsg5 = new System.Windows.Forms.ComboBoxTS(); this.comboVoiceMsg4 = new System.Windows.Forms.ComboBoxTS(); this.comboVoiceMsg3 = new System.Windows.Forms.ComboBoxTS(); this.comboVoiceMsg2 = new System.Windows.Forms.ComboBoxTS(); this.comboVoiceMsg1 = new System.Windows.Forms.ComboBoxTS(); this.comboKBCWSpeedUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBCWSpeedDown = new System.Windows.Forms.ComboBoxTS(); this.comboKBXITUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBXITDown = new System.Windows.Forms.ComboBoxTS(); this.comboKBRITUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBRITDown = new System.Windows.Forms.ComboBoxTS(); this.comboKBBandUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBBandDown = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp7 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown7 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp6 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown6 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp5 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown5 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp4 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown4 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp3 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown3 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp1 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp2 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown1 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown2 = new System.Windows.Forms.ComboBoxTS(); this.comboKBFilterUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBFilterDown = new System.Windows.Forms.ComboBoxTS(); this.comboKBCWDot = new System.Windows.Forms.ComboBoxTS(); this.comboKBCWDash = new System.Windows.Forms.ComboBoxTS(); this.udTestGenScale = new System.Windows.Forms.NumericUpDownTS(); this.radTestGenOutput = new System.Windows.Forms.RadioButtonTS(); this.radTestGenInput = new System.Windows.Forms.RadioButtonTS(); this.cmboTestGenMode = new System.Windows.Forms.ComboBoxTS(); this.tkbarTestGenFreq = new System.Windows.Forms.TrackBarTS(); this.udTestGenHzSec = new System.Windows.Forms.NumericUpDownTS(); this.udTestGenHigh = new System.Windows.Forms.NumericUpDownTS(); this.udTestGenLow = new System.Windows.Forms.NumericUpDownTS(); this.btnTestGenSweep = new System.Windows.Forms.ButtonTS(); this.btnApply = new System.Windows.Forms.ButtonTS(); this.btnCancel = new System.Windows.Forms.ButtonTS(); this.btnOK = new System.Windows.Forms.ButtonTS(); this.comboBoxTS2 = new System.Windows.Forms.ComboBoxTS(); this.numericUpDownTS1 = new System.Windows.Forms.NumericUpDownTS(); this.buttonTS1 = new System.Windows.Forms.ButtonTS(); this.numericUpDownTS2 = new System.Windows.Forms.NumericUpDownTS(); this.numericUpDownTS3 = new System.Windows.Forms.NumericUpDownTS(); this.buttonTS2 = new System.Windows.Forms.ButtonTS(); this.buttonTS3 = new System.Windows.Forms.ButtonTS(); this.numericUpDownTS4 = new System.Windows.Forms.NumericUpDownTS(); this.clrbtnPanFillColor = new PowerSDR.ColorButton(); this.chkG59KeyerAutoCorrection = new System.Windows.Forms.CheckBoxTS(); this.comboSMeterRXMode = new System.Windows.Forms.ComboBoxTS(); this.comboSMeterTXMode = new System.Windows.Forms.ComboBoxTS(); this.lblSi570_ref_osc2 = new System.Windows.Forms.LabelTS(); this.udSi570_xtal2 = new System.Windows.Forms.NumericUpDownTS(); this.lblSi570_ref_osc3 = new System.Windows.Forms.LabelTS(); this.udSi570_xtal3 = new System.Windows.Forms.NumericUpDownTS(); this.lblSi570_ref_osc1 = new System.Windows.Forms.LabelTS(); this.btnVFOSmallFont = new System.Windows.Forms.ButtonTS(); this.btnNewVFOSmallFont = new System.Windows.Forms.ButtonTS(); this.btnNewVFOBandFont = new System.Windows.Forms.ButtonTS(); this.comboSi570GUI = new System.Windows.Forms.ComboBoxTS(); this.radGenModelGenesisG160 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelGenesisG80 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelGenesisG40 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelGenesisG3020 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelGenesisG59 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelGenesisNET = new System.Windows.Forms.RadioButtonTS(); this.chkDTR_CWMonitor = new System.Windows.Forms.CheckBoxTS(); this.btnAbortCalibration = new System.Windows.Forms.ButtonTS(); this.udMemoryZapping = new System.Windows.Forms.NumericUpDownTS(); this.radMemoryZapUP = new System.Windows.Forms.RadioButtonTS(); this.radMemoryZapDOWN = new System.Windows.Forms.RadioButtonTS(); this.chkAutoPowerUp = new System.Windows.Forms.CheckBoxTS(); this.btnGeneralCalImageSave = new System.Windows.Forms.ButtonTS(); this.udLMSNRleak = new System.Windows.Forms.NumericUpDownTS(); this.udLMSANFleak = new System.Windows.Forms.NumericUpDownTS(); this.chkOSD = new System.Windows.Forms.CheckBoxTS(); this.comboCATPort = new System.Windows.Forms.ComboBoxTS(); this.label3 = new System.Windows.Forms.Label(); this.comboCATPTTPort = new System.Windows.Forms.ComboBoxTS(); this.comboCATRigType = new System.Windows.Forms.ComboBoxTS(); this.udCATServerPort = new System.Windows.Forms.NumericUpDownTS(); this.chkContinuousTuning = new System.Windows.Forms.CheckBoxTS(); this.radGenModelQRP2000 = new System.Windows.Forms.RadioButtonTS(); this.chkQRP2000XTRV = new System.Windows.Forms.CheckBoxTS(); this.udQRP2000XTRVIF = new System.Windows.Forms.NumericUpDownTS(); this.udSRSi570Addr = new System.Windows.Forms.NumericUpDownTS(); this.QRP2000VID = new System.Windows.Forms.MaskedTextBox(); this.QRP2000PID = new System.Windows.Forms.MaskedTextBox(); this.radQRP2000CW1 = new System.Windows.Forms.RadioButtonTS(); this.radQRP2000CW2 = new System.Windows.Forms.RadioButtonTS(); this.btnPAGainCalibration = new System.Windows.Forms.ButtonTS(); this.chkCWMonitorVAC = new System.Windows.Forms.CheckBoxTS(); this.btnWBIRStop = new System.Windows.Forms.ButtonTS(); this.btnWBIRStart = new System.Windows.Forms.ButtonTS(); this.chkLineMic = new System.Windows.Forms.CheckBoxTS(); this.udG59CWSpeedCorr = new System.Windows.Forms.NumericUpDownTS(); this.udMultiPSKServerPort = new System.Windows.Forms.NumericUpDownTS(); this.txtLoopDll = new System.Windows.Forms.TextBoxTS(); this.udWBIRTime = new System.Windows.Forms.NumericUpDownTS(); this.btnPA10Abort = new System.Windows.Forms.ButtonTS(); this.chkIARU = new System.Windows.Forms.CheckBoxTS(); this.radGenModelGenesisG137 = new System.Windows.Forms.RadioButtonTS(); this.udG137Xtal1 = new System.Windows.Forms.NumericUpDownTS(); this.rad3_4TXOut = new System.Windows.Forms.RadioButtonTS(); this.rad1_2TXOut = new System.Windows.Forms.RadioButtonTS(); this.radGenModelGenesisG500 = new System.Windows.Forms.RadioButtonTS(); this.udG500Xtal1 = new System.Windows.Forms.NumericUpDownTS(); this.chkAudioExclusive = new System.Windows.Forms.CheckBoxTS(); this.udFDCOmin = new System.Windows.Forms.NumericUpDownTS(); this.udFDCOmax = new System.Windows.Forms.NumericUpDownTS(); this.chkVACExclusive = new System.Windows.Forms.CheckBoxTS(); this.udG59XtrvIF = new System.Windows.Forms.NumericUpDownTS(); this.comboDSPBufSizeCW = new System.Windows.Forms.ComboBoxTS(); this.comboDSPBufSizeDigital = new System.Windows.Forms.ComboBoxTS(); this.udCATEthCollTime = new System.Windows.Forms.NumericUpDownTS(); this.lblCATEthServerWatchdogTime = new System.Windows.Forms.LabelTS(); this.udCATEthServerWatchdogTime = new System.Windows.Forms.NumericUpDownTS(); this.chkExtATU = new System.Windows.Forms.CheckBoxTS(); this.chkIambicBMode = new System.Windows.Forms.CheckBoxTS(); this.comboKeyerConnPTTLine = new System.Windows.Forms.ComboBoxTS(); this.udG59TXSwitchTime = new System.Windows.Forms.NumericUpDownTS(); this.chkTX_IF_shift = new System.Windows.Forms.CheckBoxTS(); this.udtTX_IF_SHIFT = new System.Windows.Forms.NumericUpDownTS(); this.chkButtonZoom = new System.Windows.Forms.CheckBoxTS(); this.udATUFullTune = new System.Windows.Forms.NumericUpDownTS(); this.udATUMemoryTune = new System.Windows.Forms.NumericUpDownTS(); this.udATUBypass = new System.Windows.Forms.NumericUpDownTS(); this.lblATUFullTune = new System.Windows.Forms.LabelTS(); this.udATUCarrierTime = new System.Windows.Forms.NumericUpDownTS(); this.rad1_2RXIn = new System.Windows.Forms.RadioButtonTS(); this.rad3_4RXIn = new System.Windows.Forms.RadioButtonTS(); this.chkG59_PTT_Inv = new System.Windows.Forms.CheckBoxTS(); this.chkVFOB_extend = new System.Windows.Forms.CheckBoxTS(); this.radGenModelGenesisG11 = new System.Windows.Forms.RadioButtonTS(); this.udG11XTRVLosc = new System.Windows.Forms.NumericUpDownTS(); this.udMultimeterCalValue = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayCalValue = new System.Windows.Forms.NumericUpDownTS(); this.udCWKeyerFall = new System.Windows.Forms.NumericUpDownTS(); this.udRXShift = new System.Windows.Forms.NumericUpDownTS(); this.udVACPhase = new System.Windows.Forms.NumericUpDownTS(); this.udVACGain = new System.Windows.Forms.NumericUpDownTS(); this.udG59PTT_ON_time = new System.Windows.Forms.NumericUpDownTS(); this.chkG59ExtPA = new System.Windows.Forms.CheckBoxTS(); this.udG59PTT_OFF_time = new System.Windows.Forms.NumericUpDownTS(); this.udPrimaryGain = new System.Windows.Forms.NumericUpDownTS(); this.udPrimaryPhase = new System.Windows.Forms.NumericUpDownTS(); this.udPrimaryRXshift = new System.Windows.Forms.NumericUpDownTS(); this.chkG11RXIndependent = new System.Windows.Forms.CheckBoxTS(); this.chG59XTRV_separate_RX_TX = new System.Windows.Forms.CheckBoxTS(); this.comboNewVFOSMeterSignal = new System.Windows.Forms.ComboBoxTS(); this.btnSave = new System.Windows.Forms.ButtonTS(); this.udUSBSerialNo = new System.Windows.Forms.NumericUpDownTS(); this.chkUSBSerialNo = new System.Windows.Forms.CheckBoxTS(); this.udAudioLatencyVAC = new System.Windows.Forms.NumericUpDownTS(); this.chkLargeRBBuffer = new System.Windows.Forms.CheckBoxTS(); this.btnTXProfileRestore = new System.Windows.Forms.Button(); this.tbPrimaryGain = new System.Windows.Forms.TrackBarTS(); this.chkPrimaryRXshiftEnabled = new System.Windows.Forms.CheckBoxTS(); this.tbPrimaryPhase = new System.Windows.Forms.TrackBarTS(); this.chkPrimaryI_Qcorrection = new System.Windows.Forms.CheckBoxTS(); this.chkPrimaryDirectI_Q = new System.Windows.Forms.CheckBoxTS(); this.tbVACGain = new System.Windows.Forms.TrackBarTS(); this.chkVACRXShiftEnable = new System.Windows.Forms.CheckBoxTS(); this.tbVACPhase = new System.Windows.Forms.TrackBarTS(); this.chkVACCorrection = new System.Windows.Forms.CheckBoxTS(); this.chkVACDirectI_Q = new System.Windows.Forms.CheckBoxTS(); this.udQRP2000_Si570Xtal = new System.Windows.Forms.NumericUpDownTS(); this.btnQRP2000XtalSet = new System.Windows.Forms.ButtonTS(); this.btnQRP2000XtalGet = new System.Windows.Forms.ButtonTS(); this.labelTS58 = new System.Windows.Forms.LabelTS(); this.labelTS59 = new System.Windows.Forms.LabelTS(); this.udCATCI_V = new System.Windows.Forms.NumericUpDownTS(); this.chkG11MultiBand = new System.Windows.Forms.CheckBoxTS(); this.chkATUquickTUN = new System.Windows.Forms.CheckBoxTS(); this.radVACMuteBoth = new System.Windows.Forms.RadioButtonTS(); this.radVACMuteRight = new System.Windows.Forms.RadioButtonTS(); this.radVACMuteLeft = new System.Windows.Forms.RadioButtonTS(); this.radVACMuteNone = new System.Windows.Forms.RadioButtonTS(); this.comboBandPlan = new System.Windows.Forms.ComboBoxTS(); this.chkLockTUN = new System.Windows.Forms.CheckBoxTS(); this.chkCAT_HRDserver = new System.Windows.Forms.CheckBoxTS(); this.udVACchNumber = new System.Windows.Forms.NumericUpDownTS(); this.udRTL_SDR_correction = new System.Windows.Forms.NumericUpDownTS(); this.chkDragSpectrum = new System.Windows.Forms.CheckBoxTS(); this.chkG6SendAudio = new System.Windows.Forms.CheckBoxTS(); this.chkG6TXDACmute = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_2190m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_600m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_2m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_6m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_10m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_12m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_15m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_20m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_30m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_40m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_60m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_17m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_80m = new System.Windows.Forms.CheckBoxTS(); this.chkPA10_160m = new System.Windows.Forms.CheckBoxTS(); this.lblScopeColor = new System.Windows.Forms.LabelTS(); this.clrbtnScopeColor = new PowerSDR.ColorButton(); this.chkG11ExtPA = new System.Windows.Forms.CheckBoxTS(); this.udG11extPAON = new System.Windows.Forms.NumericUpDownTS(); this.chkG11extPAinverted = new System.Windows.Forms.CheckBoxTS(); this.udG11extPAOFF = new System.Windows.Forms.NumericUpDownTS(); this.udG6ExtPAoffTime = new System.Windows.Forms.NumericUpDownTS(); this.chkG6ExtPA = new System.Windows.Forms.CheckBoxTS(); this.udG6ExtPAonTime = new System.Windows.Forms.NumericUpDownTS(); this.chkG6ExtPAinv = new System.Windows.Forms.CheckBoxTS(); this.lblG59PTT = new System.Windows.Forms.LabelTS(); this.lblG59PTT_ON = new System.Windows.Forms.LabelTS(); this.lblG59PTT_OFF = new System.Windows.Forms.LabelTS(); this.btnVFOLargeFont = new System.Windows.Forms.ButtonTS(); this.timer_sweep = new System.Windows.Forms.Timer(this.components); this.tpTests = new System.Windows.Forms.TabPage(); this.grpAudioTests = new System.Windows.Forms.GroupBoxTS(); this.lblAudioStreamSampleRateValue = new System.Windows.Forms.LabelTS(); this.lblAudioStreamOutputLatencyValue = new System.Windows.Forms.LabelTS(); this.lblAudioStreamInputLatencyValue = new System.Windows.Forms.LabelTS(); this.labelTS54 = new System.Windows.Forms.LabelTS(); this.txtWBIRdata = new System.Windows.Forms.TextBoxTS(); this.udWBIRindex = new System.Windows.Forms.NumericUpDownTS(); this.lblAudioStreamSampleRate = new System.Windows.Forms.LabelTS(); this.btnWBIRRead = new System.Windows.Forms.ButtonTS(); this.lblAudioStreamOutputLatency = new System.Windows.Forms.LabelTS(); this.lblAudioStreamInputLatency = new System.Windows.Forms.LabelTS(); this.btnAudioStreamInfo = new System.Windows.Forms.ButtonTS(); this.grpBoxTS1 = new System.Windows.Forms.GroupBoxTS(); this.groupBoxTS5 = new System.Windows.Forms.GroupBoxTS(); this.radTestBothChannel = new System.Windows.Forms.RadioButtonTS(); this.radTestLeftChannel = new System.Windows.Forms.RadioButtonTS(); this.radTestRightChannel = new System.Windows.Forms.RadioButtonTS(); this.lblTestGenScale = new System.Windows.Forms.LabelTS(); this.lblTestSigGenFreqCallout = new System.Windows.Forms.LabelTS(); this.lblTestGenHzSec = new System.Windows.Forms.LabelTS(); this.lblTestGenHigh = new System.Windows.Forms.LabelTS(); this.lblTestGenLow = new System.Windows.Forms.LabelTS(); this.grpTestAudioBalance = new System.Windows.Forms.GroupBoxTS(); this.btnTestAudioBalStart = new System.Windows.Forms.ButtonTS(); this.grpTestTXIMD = new System.Windows.Forms.GroupBoxTS(); this.lblTestToneFreq2 = new System.Windows.Forms.LabelTS(); this.udTestIMDFreq2 = new System.Windows.Forms.NumericUpDownTS(); this.lblTestIMDPower = new System.Windows.Forms.LabelTS(); this.udTestIMDPower = new System.Windows.Forms.NumericUpDownTS(); this.chekTestIMD = new System.Windows.Forms.CheckBoxTS(); this.lblTestToneFreq1 = new System.Windows.Forms.LabelTS(); this.udTestIMDFreq1 = new System.Windows.Forms.NumericUpDownTS(); this.grpImpulseTest = new System.Windows.Forms.GroupBoxTS(); this.udImpulseNum = new System.Windows.Forms.NumericUpDownTS(); this.btnImpulse = new System.Windows.Forms.Button(); this.tpKeyboard = new System.Windows.Forms.TabPage(); this.grpCWXKeys = new System.Windows.Forms.GroupBoxTS(); this.lblCWXMsg6 = new System.Windows.Forms.LabelTS(); this.lblCWXMsg5 = new System.Windows.Forms.LabelTS(); this.lblCWXMsg4 = new System.Windows.Forms.LabelTS(); this.lblCWXMsg3 = new System.Windows.Forms.LabelTS(); this.lblCWXMsg2 = new System.Windows.Forms.LabelTS(); this.lblCWXMsg1 = new System.Windows.Forms.LabelTS(); this.grpVoiceMsgSetup = new System.Windows.Forms.GroupBoxTS(); this.lblVoiceMsg6 = new System.Windows.Forms.LabelTS(); this.lblVoiceMsg5 = new System.Windows.Forms.LabelTS(); this.lblVoiceMsg4 = new System.Windows.Forms.LabelTS(); this.lblVoiceMsg3 = new System.Windows.Forms.LabelTS(); this.lblVoiceMsg2 = new System.Windows.Forms.LabelTS(); this.lblVoiceMsg1 = new System.Windows.Forms.LabelTS(); this.grpKBCWSpeed = new System.Windows.Forms.GroupBoxTS(); this.lblKBCWSpeedUp = new System.Windows.Forms.LabelTS(); this.lblKBCWSpeedDown = new System.Windows.Forms.LabelTS(); this.grpKBXIT = new System.Windows.Forms.GroupBoxTS(); this.lblKBXITUp = new System.Windows.Forms.LabelTS(); this.lblKBXITDown = new System.Windows.Forms.LabelTS(); this.grpKBRIT = new System.Windows.Forms.GroupBoxTS(); this.lblKBRitUp = new System.Windows.Forms.LabelTS(); this.lblKBRITDown = new System.Windows.Forms.LabelTS(); this.grpKBBand = new System.Windows.Forms.GroupBoxTS(); this.lblKBBandUp = new System.Windows.Forms.LabelTS(); this.lblKBBandDown = new System.Windows.Forms.LabelTS(); this.grpKBTune = new System.Windows.Forms.GroupBoxTS(); this.lblKBTuneDigit = new System.Windows.Forms.LabelTS(); this.lblKBTune7 = new System.Windows.Forms.LabelTS(); this.lblKBTune6 = new System.Windows.Forms.LabelTS(); this.lblKBTune5 = new System.Windows.Forms.LabelTS(); this.lblKBTune4 = new System.Windows.Forms.LabelTS(); this.lblKBTune3 = new System.Windows.Forms.LabelTS(); this.lblKBTune2 = new System.Windows.Forms.LabelTS(); this.lblKBTune1 = new System.Windows.Forms.LabelTS(); this.lblKBTuneUp = new System.Windows.Forms.LabelTS(); this.lblKBTuneDown = new System.Windows.Forms.LabelTS(); this.grpKBFilter = new System.Windows.Forms.GroupBoxTS(); this.lblKBFilterUp = new System.Windows.Forms.LabelTS(); this.lblKBFilterDown = new System.Windows.Forms.LabelTS(); this.grpKBCW = new System.Windows.Forms.GroupBoxTS(); this.lblKBCWDot = new System.Windows.Forms.LabelTS(); this.lblKBCWDash = new System.Windows.Forms.LabelTS(); this.tpAppearance = new System.Windows.Forms.TabPage(); this.tcAppearance = new System.Windows.Forms.TabControl(); this.tpAppearanceDisplay = new System.Windows.Forms.TabPage(); this.grpSubRX = new System.Windows.Forms.GroupBoxTS(); this.clrbtnSubRXZero = new PowerSDR.ColorButton(); this.lblSubRXAlpha = new System.Windows.Forms.LabelTS(); this.tbSubRXAlpha = new System.Windows.Forms.TrackBarTS(); this.lblSubRXZeroLine = new System.Windows.Forms.LabelTS(); this.clrbtnSubRXFilter = new PowerSDR.ColorButton(); this.lblSubRXFilterColor = new System.Windows.Forms.LabelTS(); this.grpMainRX = new System.Windows.Forms.GroupBoxTS(); this.clrbtnMainRXFilter = new PowerSDR.ColorButton(); this.lblDisplayFilterColor = new System.Windows.Forms.LabelTS(); this.clrbtnMainRXZero = new PowerSDR.ColorButton(); this.lblMainRXZero = new System.Windows.Forms.LabelTS(); this.tbMainRXAlpha = new System.Windows.Forms.TrackBarTS(); this.lblMainRXAlpha = new System.Windows.Forms.LabelTS(); this.grpDisplay = new System.Windows.Forms.GroupBoxTS(); this.lblGridLineAlpha = new System.Windows.Forms.LabelTS(); this.tbGridLineAlpha = new System.Windows.Forms.TrackBarTS(); this.chkSmoothLine = new System.Windows.Forms.CheckBoxTS(); this.lblPanFillColor = new System.Windows.Forms.LabelTS(); this.chkDataLineFill = new System.Windows.Forms.CheckBoxTS(); this.lblDataLineAlpha = new System.Windows.Forms.LabelTS(); this.tbDataLineAlpha = new System.Windows.Forms.TrackBarTS(); this.lblDisplayTxtAlpha = new System.Windows.Forms.LabelTS(); this.clrbtnTXFilter = new PowerSDR.ColorButton(); this.lblTXFilterColor = new System.Windows.Forms.LabelTS(); this.clrbtnBandEdge = new PowerSDR.ColorButton(); this.lblBandEdge = new System.Windows.Forms.LabelTS(); this.tbDisplayTxtAlpha = new System.Windows.Forms.TrackBarTS(); this.labelTS6 = new System.Windows.Forms.LabelTS(); this.clrbtnDisplayFontBackground = new PowerSDR.ColorButton(); this.lblDisplayFont = new System.Windows.Forms.LabelTS(); this.clrbtnGrid = new PowerSDR.ColorButton(); this.udDisplayLineWidth = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayLineWidth = new System.Windows.Forms.LabelTS(); this.clrbtnBackground = new PowerSDR.ColorButton(); this.lblDisplayDataLineColor = new System.Windows.Forms.LabelTS(); this.lblDisplayTextColor = new System.Windows.Forms.LabelTS(); this.clrbtnText = new PowerSDR.ColorButton(); this.clrbtnDataLine = new PowerSDR.ColorButton(); this.lblDisplayGridColor = new System.Windows.Forms.LabelTS(); this.lblDisplayBackgroundColor = new System.Windows.Forms.LabelTS(); this.grpDisplayPeakCursor = new System.Windows.Forms.GroupBoxTS(); this.clrbtnPeakBackground = new PowerSDR.ColorButton(); this.lblPeakBackground = new System.Windows.Forms.LabelTS(); this.clrbtnPeakText = new PowerSDR.ColorButton(); this.lblPeakText = new System.Windows.Forms.LabelTS(); this.tpAppearanceGeneral = new System.Windows.Forms.TabPage(); this.grpAppearanceNewVFO = new System.Windows.Forms.GroupBoxTS(); this.lblNewVFOBandFont = new System.Windows.Forms.LabelTS(); this.lblNewVFOSmallFont = new System.Windows.Forms.LabelTS(); this.lblNewVFOLargeFont = new System.Windows.Forms.LabelTS(); this.btnNewVFOLargeFont = new System.Windows.Forms.ButtonTS(); this.clrbtnNewVFOBackColor = new PowerSDR.ColorButton(); this.lblNewVFOBAckColor = new System.Windows.Forms.LabelTS(); this.grpAppearanceBand = new System.Windows.Forms.GroupBoxTS(); this.clrbtnBandBackground = new PowerSDR.ColorButton(); this.lblBandBackground = new System.Windows.Forms.LabelTS(); this.clrbtnBandLight = new PowerSDR.ColorButton(); this.clrbtnBandDark = new PowerSDR.ColorButton(); this.lblBandLight = new System.Windows.Forms.LabelTS(); this.lblBandDark = new System.Windows.Forms.LabelTS(); this.clrbtnOutOfBand = new PowerSDR.ColorButton(); this.lblOutOfBand = new System.Windows.Forms.LabelTS(); this.grpAppearanceVFO = new System.Windows.Forms.GroupBoxTS(); this.lblVFOSmallFont = new System.Windows.Forms.LabelTS(); this.clrbtnVFOBackground = new PowerSDR.ColorButton(); this.lblVFOBackground = new System.Windows.Forms.LabelTS(); this.lblVFOLargeFont = new System.Windows.Forms.LabelTS(); this.clrbtnVFOSmallColor = new PowerSDR.ColorButton(); this.lblVFOSmallColor = new System.Windows.Forms.LabelTS(); this.chkVFOSmallLSD = new System.Windows.Forms.CheckBoxTS(); this.clrbtnVFOLight = new PowerSDR.ColorButton(); this.clrbtnVFODark = new PowerSDR.ColorButton(); this.lblVFOPowerOn = new System.Windows.Forms.LabelTS(); this.lblVFOPowerOff = new System.Windows.Forms.LabelTS(); this.clrbtnBtnSel = new PowerSDR.ColorButton(); this.lblAppearanceGenBtnSel = new System.Windows.Forms.LabelTS(); this.tpAppearanceMeter = new System.Windows.Forms.TabPage(); this.grpNewVFOSMeter = new System.Windows.Forms.GroupBoxTS(); this.tbSmeterAlpha = new System.Windows.Forms.TrackBarTS(); this.labelTS61 = new System.Windows.Forms.LabelTS(); this.groupBoxTS11 = new System.Windows.Forms.GroupBoxTS(); this.clrbtnNewVFOSMeterDigitalSWRLine = new PowerSDR.ColorButton(); this.labelTS53 = new System.Windows.Forms.LabelTS(); this.clrbtnNewVFOSMeterDigitalSigLineLit = new PowerSDR.ColorButton(); this.labelTS52 = new System.Windows.Forms.LabelTS(); this.clrbtnNewVFOSMeterDigitalSigLineDrk = new PowerSDR.ColorButton(); this.labelTS50 = new System.Windows.Forms.LabelTS(); this.radNewVFOSMeterDigital2 = new System.Windows.Forms.RadioButtonTS(); this.labelTS51 = new System.Windows.Forms.LabelTS(); this.radNewVFOSMeterDigital1 = new System.Windows.Forms.RadioButtonTS(); this.radNewVFOSMeterAnalog = new System.Windows.Forms.RadioButtonTS(); this.labelTS2 = new System.Windows.Forms.LabelTS(); this.clrbtnMeterDigBackground = new PowerSDR.ColorButton(); this.lblMeterDigitalText = new System.Windows.Forms.LabelTS(); this.clrbtnMeterDigText = new PowerSDR.ColorButton(); this.grpMeterEdge = new System.Windows.Forms.GroupBoxTS(); this.clrbtnEdgeIndicator = new PowerSDR.ColorButton(); this.labelTS1 = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeBackground = new PowerSDR.ColorButton(); this.lblMeterEdgeBackground = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeHigh = new PowerSDR.ColorButton(); this.lblMeterEdgeHigh = new System.Windows.Forms.LabelTS(); this.lblMeterEdgeLow = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeLow = new PowerSDR.ColorButton(); this.grpAppearanceMeter = new System.Windows.Forms.GroupBoxTS(); this.clrbtnMeterBackground = new PowerSDR.ColorButton(); this.lblMeterBackground = new System.Windows.Forms.LabelTS(); this.clrbtnMeterRight = new PowerSDR.ColorButton(); this.lblAppearanceMeterRight = new System.Windows.Forms.LabelTS(); this.lblAppearanceMeterLeft = new System.Windows.Forms.LabelTS(); this.clrbtnMeterLeft = new PowerSDR.ColorButton(); this.lblMeterType = new System.Windows.Forms.LabelTS(); this.tcSkins = new System.Windows.Forms.TabPage(); this.grpSMeter = new System.Windows.Forms.GroupBoxTS(); this.lblSMeterTXMode = new System.Windows.Forms.LabelTS(); this.lblSMeterRXMode = new System.Windows.Forms.LabelTS(); this.grpSkin = new System.Windows.Forms.GroupBoxTS(); this.lblSkinTheme = new System.Windows.Forms.LabelTS(); this.comboAppSkin = new System.Windows.Forms.ComboBoxTS(); this.tpPowerAmplifier = new System.Windows.Forms.TabPage(); this.grpPABandOffset = new System.Windows.Forms.GroupBoxTS(); this.labelTS66 = new System.Windows.Forms.LabelTS(); this.udPAADC2190 = new System.Windows.Forms.NumericUpDownTS(); this.labelTS65 = new System.Windows.Forms.LabelTS(); this.udPAADC600 = new System.Windows.Forms.NumericUpDownTS(); this.lblPABandOffset2 = new System.Windows.Forms.LabelTS(); this.udPAADC2 = new System.Windows.Forms.NumericUpDownTS(); this.lblPABandOffset6 = new System.Windows.Forms.LabelTS(); this.udPAADC6 = new System.Windows.Forms.NumericUpDownTS(); this.lblPABandOffset10 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset12 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset15 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset17 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset20 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset30 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset40 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset60 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset80 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset160 = new System.Windows.Forms.LabelTS(); this.udPAADC17 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC15 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC20 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC12 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC10 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC160 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC80 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC60 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC40 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC30 = new System.Windows.Forms.NumericUpDownTS(); this.grpPAGainByBand = new System.Windows.Forms.GroupBoxTS(); this.labelTS47 = new System.Windows.Forms.LabelTS(); this.udPAGain2190 = new System.Windows.Forms.NumericUpDownTS(); this.lblPA10Calibration = new System.Windows.Forms.LabelTS(); this.labelTS46 = new System.Windows.Forms.LabelTS(); this.progressPAcalibration = new System.Windows.Forms.ProgressBar(); this.udPAGain600 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand2 = new System.Windows.Forms.LabelTS(); this.udPAGain2 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand6 = new System.Windows.Forms.LabelTS(); this.udPAGain6 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand10 = new System.Windows.Forms.LabelTS(); this.udPAGain10 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand12 = new System.Windows.Forms.LabelTS(); this.udPAGain12 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand15 = new System.Windows.Forms.LabelTS(); this.udPAGain15 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand17 = new System.Windows.Forms.LabelTS(); this.udPAGain17 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand20 = new System.Windows.Forms.LabelTS(); this.udPAGain20 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand30 = new System.Windows.Forms.LabelTS(); this.udPAGain30 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand40 = new System.Windows.Forms.LabelTS(); this.udPAGain40 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand60 = new System.Windows.Forms.LabelTS(); this.udPAGain60 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand80 = new System.Windows.Forms.LabelTS(); this.udPAGain80 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand160 = new System.Windows.Forms.LabelTS(); this.udPAGain160 = new System.Windows.Forms.NumericUpDownTS(); this.lblPACalPower = new System.Windows.Forms.LabelTS(); this.tpTransmit = new System.Windows.Forms.TabPage(); this.groupBoxTS12 = new System.Windows.Forms.GroupBoxTS(); this.labelTS60 = new System.Windows.Forms.LabelTS(); this.udTXFMDeviation = new System.Windows.Forms.NumericUpDownTS(); this.grpGenesis = new System.Windows.Forms.GroupBox(); this.lblG59TXSwitchTime = new System.Windows.Forms.Label(); this.grpTXAM = new System.Windows.Forms.GroupBoxTS(); this.lblTXAMCarrierLevel = new System.Windows.Forms.LabelTS(); this.grpTXMonitor = new System.Windows.Forms.GroupBoxTS(); this.lblTXAF = new System.Windows.Forms.LabelTS(); this.grpTXVOX = new System.Windows.Forms.GroupBoxTS(); this.lblTXVOXHangTime = new System.Windows.Forms.LabelTS(); this.lblTXVOXThreshold = new System.Windows.Forms.LabelTS(); this.grpTXNoiseGate = new System.Windows.Forms.GroupBoxTS(); this.lblTXNoiseGateThreshold = new System.Windows.Forms.LabelTS(); this.grpTXProfile = new System.Windows.Forms.GroupBoxTS(); this.grpPATune = new System.Windows.Forms.GroupBoxTS(); this.lblTransmitTunePower = new System.Windows.Forms.LabelTS(); this.grpTXCompression = new System.Windows.Forms.GroupBoxTS(); this.lblCompand = new System.Windows.Forms.LabelTS(); this.lblTXCompander = new System.Windows.Forms.LabelTS(); this.lblTXFFVal = new System.Windows.Forms.LabelTS(); this.lblTransmitFeedForward = new System.Windows.Forms.LabelTS(); this.grpTXFilter = new System.Windows.Forms.GroupBoxTS(); this.lblTXFilterHigh = new System.Windows.Forms.LabelTS(); this.lblTXFilterLow = new System.Windows.Forms.LabelTS(); this.tpDSP = new System.Windows.Forms.TabPage(); this.tcDSP = new System.Windows.Forms.TabControl(); this.tpDSPOptions = new System.Windows.Forms.TabPage(); this.grpDSPBufferSize = new System.Windows.Forms.GroupBoxTS(); this.labelTS15 = new System.Windows.Forms.LabelTS(); this.labelTS14 = new System.Windows.Forms.LabelTS(); this.labelTS13 = new System.Windows.Forms.LabelTS(); this.grpDSPNB = new System.Windows.Forms.GroupBoxTS(); this.lblDSPNBThreshold = new System.Windows.Forms.LabelTS(); this.grpDSPLMSNR = new System.Windows.Forms.GroupBoxTS(); this.lblLMSNRleak = new System.Windows.Forms.LabelTS(); this.lblLMSNRgain = new System.Windows.Forms.LabelTS(); this.lblLMSNRdelay = new System.Windows.Forms.LabelTS(); this.lblLMSNRtaps = new System.Windows.Forms.LabelTS(); this.grpDSPLMSANF = new System.Windows.Forms.GroupBoxTS(); this.lblLMSANFLeak = new System.Windows.Forms.LabelTS(); this.lblLMSANFgain = new System.Windows.Forms.LabelTS(); this.lblLMSANFdelay = new System.Windows.Forms.LabelTS(); this.lblLMSANFTaps = new System.Windows.Forms.LabelTS(); this.grpDSPWindow = new System.Windows.Forms.GroupBoxTS(); this.grpDSPNB2 = new System.Windows.Forms.GroupBoxTS(); this.lblDSPNB2Threshold = new System.Windows.Forms.LabelTS(); this.tpDSPImageReject = new System.Windows.Forms.TabPage(); this.grpDSPImageRejectTX = new System.Windows.Forms.GroupBoxTS(); this.lblDSPGainValTX = new System.Windows.Forms.LabelTS(); this.lblDSPPhaseValTX = new System.Windows.Forms.LabelTS(); this.lblDSPImageGainTX = new System.Windows.Forms.LabelTS(); this.lblDSPImagePhaseTX = new System.Windows.Forms.LabelTS(); this.tpDSPKeyer = new System.Windows.Forms.TabPage(); this.grpExteCWKeyer = new System.Windows.Forms.GroupBoxTS(); this.grpDSPKeyerOptions = new System.Windows.Forms.GroupBoxTS(); this.lblDSPCWMonFreq = new System.Windows.Forms.LabelTS(); this.udDSPCWMonFreq = new System.Windows.Forms.NumericUpDownTS(); this.grpKeyerConnections = new System.Windows.Forms.GroupBoxTS(); this.lblKeyerConnPTTLine = new System.Windows.Forms.LabelTS(); this.lblKeyerConnSecondary = new System.Windows.Forms.LabelTS(); this.lblKeyerConnDASHLine = new System.Windows.Forms.LabelTS(); this.lblKeyerConnDOTLine = new System.Windows.Forms.LabelTS(); this.grpDSPCWPitch = new System.Windows.Forms.GroupBoxTS(); this.lblDSPCWPitchFreq = new System.Windows.Forms.LabelTS(); this.grpDSPKeyerSignalShaping = new System.Windows.Forms.GroupBoxTS(); this.lblCWFall = new System.Windows.Forms.LabelTS(); this.udCWKeyerDeBounce = new System.Windows.Forms.NumericUpDownTS(); this.lblKeyerDeBounce = new System.Windows.Forms.LabelTS(); this.lblCWWeight = new System.Windows.Forms.LabelTS(); this.lblCWRise = new System.Windows.Forms.LabelTS(); this.grpDSPKeyerSemiBreakIn = new System.Windows.Forms.GroupBoxTS(); this.lblCWKeyerBreakIn = new System.Windows.Forms.LabelTS(); this.tpDSPAGCALC = new System.Windows.Forms.TabPage(); this.grpDSPLeveler = new System.Windows.Forms.GroupBoxTS(); this.lblDSPLevelerHangThreshold = new System.Windows.Forms.LabelTS(); this.udDSPLevelerHangTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerHangTime = new System.Windows.Forms.LabelTS(); this.udDSPLevelerSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPLevelerDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerSlope = new System.Windows.Forms.LabelTS(); this.udDSPLevelerAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerDecay = new System.Windows.Forms.LabelTS(); this.lblDSPLevelerAttack = new System.Windows.Forms.LabelTS(); this.lblDSPLevelerThreshold = new System.Windows.Forms.LabelTS(); this.tbDSPLevelerHangThreshold = new System.Windows.Forms.TrackBarTS(); this.grpDSPALC = new System.Windows.Forms.GroupBoxTS(); this.lblDSPALCHangThreshold = new System.Windows.Forms.LabelTS(); this.tbDSPALCHangThreshold = new System.Windows.Forms.TrackBarTS(); this.udDSPALCHangTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCHangTime = new System.Windows.Forms.LabelTS(); this.udDSPALCSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPALCDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCSlope = new System.Windows.Forms.LabelTS(); this.udDSPALCAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCDecay = new System.Windows.Forms.LabelTS(); this.lblDSPALCAttack = new System.Windows.Forms.LabelTS(); this.lblDSPALCThreshold = new System.Windows.Forms.LabelTS(); this.grpDSPAGC = new System.Windows.Forms.GroupBoxTS(); this.tbDSPAGCHangThreshold = new System.Windows.Forms.TrackBarTS(); this.lblDSPAGCHangThreshold = new System.Windows.Forms.LabelTS(); this.lblDSPAGCHangTime = new System.Windows.Forms.LabelTS(); this.udDSPAGCHangTime = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCSlope = new System.Windows.Forms.LabelTS(); this.udDSPAGCAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCDecay = new System.Windows.Forms.LabelTS(); this.lblDSPAGCAttack = new System.Windows.Forms.LabelTS(); this.lblDSPAGCMaxGain = new System.Windows.Forms.LabelTS(); this.lblDSPAGCFixed = new System.Windows.Forms.LabelTS(); this.tpDisplay = new System.Windows.Forms.TabPage(); this.grpDisplayDriverEngine = new System.Windows.Forms.GroupBoxTS(); this.radDirectXSW = new System.Windows.Forms.RadioButtonTS(); this.radDirectXHW = new System.Windows.Forms.RadioButtonTS(); this.grpDisplayPolyPhase = new System.Windows.Forms.GroupBoxTS(); this.grpDisplayScopeMode = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayScopeTime = new System.Windows.Forms.LabelTS(); this.grpDisplayMultimeter = new System.Windows.Forms.GroupBoxTS(); this.udDecayTime = new System.Windows.Forms.NumericUpDownTS(); this.labelTS23 = new System.Windows.Forms.LabelTS(); this.udAtackTime = new System.Windows.Forms.NumericUpDownTS(); this.labelTS21 = new System.Windows.Forms.LabelTS(); this.lblDisplayMeterAvg = new System.Windows.Forms.LabelTS(); this.lblDisplayMeterTextHoldTime = new System.Windows.Forms.LabelTS(); this.lblDisplayMultiPeakHoldTime = new System.Windows.Forms.LabelTS(); this.grpDisplayWaterfall = new System.Windows.Forms.GroupBoxTS(); this.tbWaterfallAlpha = new System.Windows.Forms.TrackBarTS(); this.chkReverseWaterfall = new System.Windows.Forms.CheckBoxTS(); this.lblDisplayWaterfallAverageTime = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallUpdatePeriod = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallMidColor = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallHighColor = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallLowColor = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallLowLevel = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallHighLevel = new System.Windows.Forms.LabelTS(); this.grpDisplayRefreshRates = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayCPUMeter = new System.Windows.Forms.LabelTS(); this.lblDisplayPeakText = new System.Windows.Forms.LabelTS(); this.lblDisplayMeterDelay = new System.Windows.Forms.LabelTS(); this.lblDisplayFPS = new System.Windows.Forms.LabelTS(); this.grpDisplayAverage = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayAVGTime = new System.Windows.Forms.LabelTS(); this.grpDisplayPhase = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayPhasePts = new System.Windows.Forms.LabelTS(); this.grpDisplaySpectrumGrid = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayAlign = new System.Windows.Forms.LabelTS(); this.lblDisplayGridStep = new System.Windows.Forms.LabelTS(); this.lblDisplayGridMin = new System.Windows.Forms.LabelTS(); this.lblDisplayGridMax = new System.Windows.Forms.LabelTS(); this.tpAudio = new System.Windows.Forms.TabPage(); this.tcAudio = new System.Windows.Forms.TabControl(); this.tpAudioCard1 = new System.Windows.Forms.TabPage(); this.grpAudioDetails1 = new System.Windows.Forms.GroupBoxTS(); this.lblQSK = new System.Windows.Forms.LabelTS(); this.chkQSK = new System.Windows.Forms.CheckBoxTS(); this.grpPrimaryDirectI_Q = new System.Windows.Forms.GroupBoxTS(); this.labelTS30 = new System.Windows.Forms.LabelTS(); this.labelTS31 = new System.Windows.Forms.LabelTS(); this.labelTS32 = new System.Windows.Forms.LabelTS(); this.labelTS29 = new System.Windows.Forms.LabelTS(); this.chkAudioMicBoost = new System.Windows.Forms.CheckBoxTS(); this.labelTS24 = new System.Windows.Forms.LabelTS(); this.lblAudioModel1 = new System.Windows.Forms.LabelTS(); this.labelTS25 = new System.Windows.Forms.LabelTS(); this.labelTS26 = new System.Windows.Forms.LabelTS(); this.labelTS28 = new System.Windows.Forms.LabelTS(); this.labelTS27 = new System.Windows.Forms.LabelTS(); this.grpSampleCorrection = new System.Windows.Forms.GroupBoxTS(); this.grpAudioChannels = new System.Windows.Forms.GroupBoxTS(); this.groupBoxTS7 = new System.Windows.Forms.GroupBoxTS(); this.groupBoxTS6 = new System.Windows.Forms.GroupBoxTS(); this.lblAudioMixer1 = new System.Windows.Forms.LabelTS(); this.grpAudioLatency1 = new System.Windows.Forms.GroupBoxTS(); this.chkAudioLatencyManual1 = new System.Windows.Forms.CheckBoxTS(); this.lblAudioOutput1 = new System.Windows.Forms.LabelTS(); this.lblAudioInput1 = new System.Windows.Forms.LabelTS(); this.lblAudioDriver1 = new System.Windows.Forms.LabelTS(); this.lblAudioTransmit1 = new System.Windows.Forms.LabelTS(); this.lblAudioReceive1 = new System.Windows.Forms.LabelTS(); this.tpVAC = new System.Windows.Forms.TabPage(); this.grpVACDirectIQ = new System.Windows.Forms.GroupBoxTS(); this.labelTS20 = new System.Windows.Forms.LabelTS(); this.labelTS22 = new System.Windows.Forms.LabelTS(); this.lblRXShift = new System.Windows.Forms.LabelTS(); this.grpLoopDll = new System.Windows.Forms.GroupBoxTS(); this.grpAudioVACAutoEnable = new System.Windows.Forms.GroupBoxTS(); this.grpAudioVAC = new System.Windows.Forms.GroupBoxTS(); this.labelTS19 = new System.Windows.Forms.LabelTS(); this.grpAudioLatencyVAC = new System.Windows.Forms.GroupBoxTS(); this.chkAudioLatencyManualVAC = new System.Windows.Forms.CheckBoxTS(); this.labelTS18 = new System.Windows.Forms.LabelTS(); this.grpAudioVACGain = new System.Windows.Forms.GroupBoxTS(); this.lblAudioVACGainTX = new System.Windows.Forms.LabelTS(); this.lblAudioVACGainRX = new System.Windows.Forms.LabelTS(); this.grpAudioDetailsVAC = new System.Windows.Forms.GroupBoxTS(); this.lblVACchNumber = new System.Windows.Forms.LabelTS(); this.lblAudioOutputVAC = new System.Windows.Forms.LabelTS(); this.lblAudioInputVAC = new System.Windows.Forms.LabelTS(); this.lblAudioDriverVAC = new System.Windows.Forms.LabelTS(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.labelTS11 = new System.Windows.Forms.LabelTS(); this.tpGeneral = new System.Windows.Forms.TabPage(); this.tcGeneral = new System.Windows.Forms.TabControl(); this.tpGeneralHardware = new System.Windows.Forms.TabPage(); this.grpG6 = new System.Windows.Forms.GroupBoxTS(); this.labelTS75 = new System.Windows.Forms.LabelTS(); this.labelTS76 = new System.Windows.Forms.LabelTS(); this.labelTS77 = new System.Windows.Forms.LabelTS(); this.checkBoxTS4 = new System.Windows.Forms.CheckBoxTS(); this.chkG6RX2input = new System.Windows.Forms.CheckBoxTS(); this.grpG11 = new System.Windows.Forms.GroupBoxTS(); this.grpG11Filters = new System.Windows.Forms.GroupBoxTS(); this.chkG11B4030_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B4030_CH1 = new System.Windows.Forms.CheckBoxTS(); this.labelTS49 = new System.Windows.Forms.LabelTS(); this.chkG11B6_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B6_CH1 = new System.Windows.Forms.CheckBoxTS(); this.labelTS48 = new System.Windows.Forms.LabelTS(); this.chkG11B2190_CH1 = new System.Windows.Forms.CheckBoxTS(); this.labelTS45 = new System.Windows.Forms.LabelTS(); this.chkG11B151210_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B1210_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B201715_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B1715_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B2017_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B3020_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B6040_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B80_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B160_CH2 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B600_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B151210_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B1210_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B201715_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B1715_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B2017_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B3020_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B6040_CH1 = new System.Windows.Forms.CheckBoxTS(); this.chkG11B80_CH1 = new System.Windows.Forms.CheckBoxTS(); this.labelTS43 = new System.Windows.Forms.LabelTS(); this.labelTS44 = new System.Windows.Forms.LabelTS(); this.labelTS39 = new System.Windows.Forms.LabelTS(); this.labelTS40 = new System.Windows.Forms.LabelTS(); this.labelTS41 = new System.Windows.Forms.LabelTS(); this.labelTS42 = new System.Windows.Forms.LabelTS(); this.labelTS37 = new System.Windows.Forms.LabelTS(); this.labelTS38 = new System.Windows.Forms.LabelTS(); this.labelTS36 = new System.Windows.Forms.LabelTS(); this.labelTS35 = new System.Windows.Forms.LabelTS(); this.labelTS34 = new System.Windows.Forms.LabelTS(); this.labelTS33 = new System.Windows.Forms.LabelTS(); this.labelTS73 = new System.Windows.Forms.LabelTS(); this.labelTS74 = new System.Windows.Forms.LabelTS(); this.lblG11extPApttDelay = new System.Windows.Forms.LabelTS(); this.btnG11FiltersShow = new System.Windows.Forms.ButtonTS(); this.chkG11MicPreamp = new System.Windows.Forms.CheckBoxTS(); this.chkG11RX2 = new System.Windows.Forms.CheckBoxTS(); this.grpG11XTRV = new System.Windows.Forms.GroupBoxTS(); this.lblG11XTRVLosc = new System.Windows.Forms.LabelTS(); this.grpG59 = new System.Windows.Forms.GroupBoxTS(); this.chkG59MicPreamp = new System.Windows.Forms.CheckBoxTS(); this.grpXTRV = new System.Windows.Forms.GroupBoxTS(); this.lblG59XtrvIF = new System.Windows.Forms.LabelTS(); this.chkG59RX2 = new System.Windows.Forms.CheckBoxTS(); this.grpRTL_SDR = new System.Windows.Forms.GroupBoxTS(); this.labelTS72 = new System.Windows.Forms.LabelTS(); this.udRTL_VACcorr = new System.Windows.Forms.NumericUpDownTS(); this.txtRTL_SDR_Device = new System.Windows.Forms.TextBoxTS(); this.labelTS71 = new System.Windows.Forms.LabelTS(); this.chkRTL_SDR_OffsetTuning = new System.Windows.Forms.CheckBoxTS(); this.chkRTL_SDR_RTL_AGC = new System.Windows.Forms.CheckBoxTS(); this.chkRTL_SDR_TunerAGC = new System.Windows.Forms.CheckBoxTS(); this.labelTS70 = new System.Windows.Forms.LabelTS(); this.tbRTL_SDR_AGC_Gain = new System.Windows.Forms.TrackBarTS(); this.labelTS69 = new System.Windows.Forms.LabelTS(); this.comboRTL_SDR_BufferSize = new System.Windows.Forms.ComboBoxTS(); this.labelTS68 = new System.Windows.Forms.LabelTS(); this.labelTS67 = new System.Windows.Forms.LabelTS(); this.comboRTL_SDR_SampleRate = new System.Windows.Forms.ComboBoxTS(); this.grpQRP2000 = new System.Windows.Forms.GroupBoxTS(); this.groupBoxTS10 = new System.Windows.Forms.GroupBoxTS(); this.labelTS57 = new System.Windows.Forms.LabelTS(); this.radQRP2000XTRVx4 = new System.Windows.Forms.RadioButtonTS(); this.radQRP2000XTRVx2 = new System.Windows.Forms.RadioButtonTS(); this.radQRP2000XTRVx1 = new System.Windows.Forms.RadioButtonTS(); this.lblSRIFFreq = new System.Windows.Forms.LabelTS(); this.groupBoxTS9 = new System.Windows.Forms.GroupBoxTS(); this.radQRP2000x4 = new System.Windows.Forms.RadioButtonTS(); this.radQRP2000x2 = new System.Windows.Forms.RadioButtonTS(); this.radQRP2000x1 = new System.Windows.Forms.RadioButtonTS(); this.lblQRP2000PID = new System.Windows.Forms.Label(); this.lblQRP2000VID = new System.Windows.Forms.Label(); this.lblSRSi570Addr = new System.Windows.Forms.LabelTS(); this.grpGeneralModel = new System.Windows.Forms.GroupBoxTS(); this.radGenModel_RTL_SDR = new System.Windows.Forms.RadioButtonTS(); this.radGenModelGenesisG6 = new System.Windows.Forms.RadioButtonTS(); this.grpGeneralHardwareSetup = new System.Windows.Forms.GroupBoxTS(); this.chkVFOnew = new System.Windows.Forms.CheckBoxTS(); this.grpNETBox = new System.Windows.Forms.GroupBoxTS(); this.udLocalNETBoxPort = new System.Windows.Forms.NumericUpDownTS(); this.btnNETBoxTest = new System.Windows.Forms.ButtonTS(); this.lblLocalNETBoxPort = new System.Windows.Forms.LabelTS(); this.udNETBoxPort = new System.Windows.Forms.NumericUpDownTS(); this.lblNETBoxPort = new System.Windows.Forms.LabelTS(); this.txtNETBoxIPAddress = new System.Windows.Forms.TextBoxTS(); this.txtLocalNETBoxIPAddress = new System.Windows.Forms.TextBoxTS(); this.lblLocalNETBoxAddress = new System.Windows.Forms.LabelTS(); this.lblNETBoxIPAddress = new System.Windows.Forms.LabelTS(); this.grpGenesis80 = new System.Windows.Forms.GroupBoxTS(); this.udG80Xtal4 = new System.Windows.Forms.NumericUpDownTS(); this.udG80Xtal3 = new System.Windows.Forms.NumericUpDownTS(); this.udG80Xtal2 = new System.Windows.Forms.NumericUpDownTS(); this.udG80Xtal1 = new System.Windows.Forms.NumericUpDownTS(); this.grpGenesis160 = new System.Windows.Forms.GroupBoxTS(); this.grpGenesis137 = new System.Windows.Forms.GroupBoxTS(); this.grpGenesis500 = new System.Windows.Forms.GroupBoxTS(); this.grpGenesis40 = new System.Windows.Forms.GroupBoxTS(); this.grpGenesis3020 = new System.Windows.Forms.GroupBoxTS(); this.tpGeneralOptions = new System.Windows.Forms.TabPage(); this.grpIRRemote = new System.Windows.Forms.GroupBoxTS(); this.chkWinLIRCenable = new System.Windows.Forms.CheckBoxTS(); this.udWinLIRCport = new System.Windows.Forms.NumericUpDownTS(); this.labelTS63 = new System.Windows.Forms.LabelTS(); this.labelTS62 = new System.Windows.Forms.LabelTS(); this.txtWinLIRCaddress = new System.Windows.Forms.TextBoxTS(); this.grpAutoPWR = new System.Windows.Forms.GroupBoxTS(); this.grpMemoryZap = new System.Windows.Forms.GroupBoxTS(); this.lblMemoryZapping = new System.Windows.Forms.LabelTS(); this.grpOptMainConsole = new System.Windows.Forms.GroupBoxTS(); this.grpOptQuickQSY = new System.Windows.Forms.GroupBoxTS(); this.grpGenTuningOptions = new System.Windows.Forms.GroupBoxTS(); this.lblOptClickTuneDIGL = new System.Windows.Forms.LabelTS(); this.udOptClickTuneOffsetDIGL = new System.Windows.Forms.NumericUpDownTS(); this.lblOptClickTuneDIGU = new System.Windows.Forms.LabelTS(); this.udOptClickTuneOffsetDIGU = new System.Windows.Forms.NumericUpDownTS(); this.grpGeneralOptions = new System.Windows.Forms.GroupBoxTS(); this.labelTS64 = new System.Windows.Forms.LabelTS(); this.grpGeneralProcessPriority = new System.Windows.Forms.GroupBoxTS(); this.tpGeneralCalibration = new System.Windows.Forms.TabPage(); this.grpWBIR = new System.Windows.Forms.GroupBoxTS(); this.btnRXEraseAll = new System.Windows.Forms.ButtonTS(); this.btnRXSaveAll = new System.Windows.Forms.ButtonTS(); this.btnRXEraseBand = new System.Windows.Forms.ButtonTS(); this.btnRXSaveBand = new System.Windows.Forms.ButtonTS(); this.labelTS56 = new System.Windows.Forms.LabelTS(); this.udRXGain = new System.Windows.Forms.NumericUpDownTS(); this.tbRXGain = new System.Windows.Forms.TrackBarTS(); this.labelTS55 = new System.Windows.Forms.LabelTS(); this.tbRXPhase = new System.Windows.Forms.TrackBarTS(); this.udRXPhase = new System.Windows.Forms.NumericUpDownTS(); this.chkWBIRfixed = new System.Windows.Forms.CheckBoxTS(); this.lblWBIRTime = new System.Windows.Forms.LabelTS(); this.lblProgress = new System.Windows.Forms.LabelTS(); this.progressCalibration = new System.Windows.Forms.ProgressBar(); this.grpGenCalRXImage = new System.Windows.Forms.GroupBoxTS(); this.grpGenCalLevel = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayCalValue = new System.Windows.Forms.LabelTS(); this.lblLevelCalValue = new System.Windows.Forms.LabelTS(); this.lblGenCalLevelFreq = new System.Windows.Forms.LabelTS(); this.lblGeneralCalLevel = new System.Windows.Forms.LabelTS(); this.tpFilters = new System.Windows.Forms.TabPage(); this.grpOptFilterControls = new System.Windows.Forms.GroupBoxTS(); this.lblDefaultLowCut = new System.Windows.Forms.LabelTS(); this.lblOptMaxFilterShift = new System.Windows.Forms.LabelTS(); this.lblOptWidthSliderMode = new System.Windows.Forms.LabelTS(); this.lblOptMaxFilter = new System.Windows.Forms.LabelTS(); this.tpGenesisOption = new System.Windows.Forms.TabPage(); this.grpG59Keyer = new System.Windows.Forms.GroupBoxTS(); this.lblG59CWCorrection = new System.Windows.Forms.LabelTS(); this.lblG59CWSPEED = new System.Windows.Forms.LabelTS(); this.chkGenesisIambic = new System.Windows.Forms.CheckBoxTS(); this.grpSi570 = new System.Windows.Forms.GroupBoxTS(); this.lblFDCmax = new System.Windows.Forms.LabelTS(); this.lblFDCOmin = new System.Windows.Forms.LabelTS(); this.chkG59SmoothTuning = new System.Windows.Forms.CheckBoxTS(); this.labelTS5 = new System.Windows.Forms.LabelTS(); this.labelTS4 = new System.Windows.Forms.LabelTS(); this.grpGenesisConnection = new System.Windows.Forms.GroupBoxTS(); this.grpGenesisUSB = new System.Windows.Forms.GroupBox(); this.lblUSBSerialNo = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.radExtATUBypass = new System.Windows.Forms.RadioButtonTS(); this.radExtATUMemTune = new System.Windows.Forms.RadioButtonTS(); this.radExtATUFullTune = new System.Windows.Forms.RadioButtonTS(); this.tcSetup = new System.Windows.Forms.TabControl(); this.tpATU = new System.Windows.Forms.TabPage(); this.grpExtATU = new System.Windows.Forms.GroupBoxTS(); this.grpATUTiming = new System.Windows.Forms.GroupBoxTS(); this.labelTS16 = new System.Windows.Forms.LabelTS(); this.lblATUBypass = new System.Windows.Forms.LabelTS(); this.lblATUMemoryTune = new System.Windows.Forms.LabelTS(); this.grpATUMode = new System.Windows.Forms.GroupBoxTS(); this.tpCAT = new System.Windows.Forms.TabPage(); this.tcCAT = new System.Windows.Forms.TabControl(); this.tpCATCOM = new System.Windows.Forms.TabPage(); this.grpCATIcom = new System.Windows.Forms.GroupBoxTS(); this.chkCATEcho = new System.Windows.Forms.CheckBoxTS(); this.grpCATOverEthernet = new System.Windows.Forms.GroupBoxTS(); this.lblCATEthCollTime = new System.Windows.Forms.LabelTS(); this.chkCATEthIPv6 = new System.Windows.Forms.CheckBoxTS(); this.txtCATServerIPAddress = new System.Windows.Forms.TextBoxTS(); this.lblCATServerAddress = new System.Windows.Forms.LabelTS(); this.lblCATServerPort = new System.Windows.Forms.LabelTS(); this.chkCATClient = new System.Windows.Forms.CheckBoxTS(); this.txtCATLocalIPAddress = new System.Windows.Forms.TextBoxTS(); this.lblCATIPAddress = new System.Windows.Forms.LabelTS(); this.txtCATpassword = new System.Windows.Forms.TextBoxTS(); this.labelTS12 = new System.Windows.Forms.LabelTS(); this.chkCATServer = new System.Windows.Forms.CheckBoxTS(); this.lblCATRigType = new System.Windows.Forms.LabelTS(); this.grpPTTBitBang = new System.Windows.Forms.GroupBoxTS(); this.lblCATPTTPort = new System.Windows.Forms.LabelTS(); this.chkCATPTT_RTS = new System.Windows.Forms.CheckBoxTS(); this.chkCATPTT_DTR = new System.Windows.Forms.CheckBoxTS(); this.chkCATPTTEnabled = new System.Windows.Forms.CheckBoxTS(); this.grpCatControlBox = new System.Windows.Forms.GroupBoxTS(); this.chkCATPushData = new System.Windows.Forms.CheckBoxTS(); this.comboCATstopbits = new System.Windows.Forms.ComboBoxTS(); this.lblCATData = new System.Windows.Forms.LabelTS(); this.comboCATdatabits = new System.Windows.Forms.ComboBoxTS(); this.lblCATParity = new System.Windows.Forms.LabelTS(); this.comboCATparity = new System.Windows.Forms.ComboBoxTS(); this.lblCATBaud = new System.Windows.Forms.LabelTS(); this.comboCATbaud = new System.Windows.Forms.ComboBoxTS(); this.lblCATPort = new System.Windows.Forms.LabelTS(); this.chkCATEnable = new System.Windows.Forms.CheckBoxTS(); this.tpServerClient = new System.Windows.Forms.TabPage(); this.grpNetClient = new System.Windows.Forms.GroupBoxTS(); this.chkClientCompression = new System.Windows.Forms.CheckBoxTS(); this.udClientMulticastPort = new System.Windows.Forms.NumericUpDownTS(); this.lblClientMulticastPort = new System.Windows.Forms.LabelTS(); this.txtClientMulticastAddress = new System.Windows.Forms.TextBoxTS(); this.lblMulticastIPAddress = new System.Windows.Forms.LabelTS(); this.lblClientIPAddress = new System.Windows.Forms.LabelTS(); this.txtClientIPAddress = new System.Windows.Forms.TextBoxTS(); this.chkNetworkClient = new System.Windows.Forms.CheckBoxTS(); this.grpNetServer = new System.Windows.Forms.GroupBoxTS(); this.udServerPort = new System.Windows.Forms.NumericUpDownTS(); this.lblServerLocalPort = new System.Windows.Forms.LabelTS(); this.chkServerCompression = new System.Windows.Forms.CheckBoxTS(); this.lblServerTTL = new System.Windows.Forms.LabelTS(); this.udTTL = new System.Windows.Forms.NumericUpDownTS(); this.udMulticastPort = new System.Windows.Forms.NumericUpDownTS(); this.lblServerMulticastPort = new System.Windows.Forms.LabelTS(); this.txtMulticastIPAddress = new System.Windows.Forms.TextBoxTS(); this.lblServerMulticastAddress = new System.Windows.Forms.LabelTS(); this.lblServerIPAddress = new System.Windows.Forms.LabelTS(); this.txtServerIPAddress = new System.Windows.Forms.TextBoxTS(); this.chkNetworkServer = new System.Windows.Forms.CheckBoxTS(); this.tpMultiPSK = new System.Windows.Forms.TabPage(); this.grpMultiPSK = new System.Windows.Forms.GroupBoxTS(); this.txtMultiPSKServerAddress = new System.Windows.Forms.TextBoxTS(); this.lblServerAddress = new System.Windows.Forms.LabelTS(); this.lblServerPort = new System.Windows.Forms.LabelTS(); this.txtMultiPSKLocalAddres = new System.Windows.Forms.TextBoxTS(); this.lblLocalAddress = new System.Windows.Forms.LabelTS(); this.txtMultiPSKPassword = new System.Windows.Forms.TextBoxTS(); this.lblMultiPSKPassword = new System.Windows.Forms.LabelTS(); this.chkStartServer = new System.Windows.Forms.CheckBoxTS(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.groupBoxTS8 = new System.Windows.Forms.GroupBoxTS(); this.txtStnLOC = new System.Windows.Forms.TextBoxTS(); this.lblStnLOC = new System.Windows.Forms.LabelTS(); this.txtStnQTH = new System.Windows.Forms.TextBoxTS(); this.lblStnQTH = new System.Windows.Forms.LabelTS(); this.txtStnName = new System.Windows.Forms.TextBoxTS(); this.lblStnName = new System.Windows.Forms.LabelTS(); this.txtStnCALL = new System.Windows.Forms.TextBoxTS(); this.labelTS17 = new System.Windows.Forms.LabelTS(); this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog(); this.fontDialog = new System.Windows.Forms.FontDialog(); this.lblKBModeUp = new System.Windows.Forms.LabelTS(); this.lblKBModeDown = new System.Windows.Forms.LabelTS(); this.labelTS3 = new System.Windows.Forms.LabelTS(); this.lblCATStop = new System.Windows.Forms.LabelTS(); this.lblCATRigType1 = new System.Windows.Forms.LabelTS(); this.groupBoxTS1 = new System.Windows.Forms.GroupBoxTS(); this.checkBoxTS2 = new System.Windows.Forms.CheckBoxTS(); this.labelTS7 = new System.Windows.Forms.LabelTS(); this.groupBoxTS2 = new System.Windows.Forms.GroupBoxTS(); this.labelTS8 = new System.Windows.Forms.LabelTS(); this.labelTS9 = new System.Windows.Forms.LabelTS(); this.groupBoxTS3 = new System.Windows.Forms.GroupBoxTS(); this.labelTS10 = new System.Windows.Forms.LabelTS(); this.groupBoxTS4 = new System.Windows.Forms.GroupBoxTS(); ((System.ComponentModel.ISupportInitialize)(this.udG40Xtal1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG160Xtal2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG160Xtal1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udFilterDefaultLowCut)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterShift)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterWidth)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59DASH_DOT_ratio)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59CWSpeed)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_divisor)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_address)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_xtal1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udIQCorrection)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioMicGain1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLineIn1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVoltage1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainRX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayScopeTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterAvg)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiTextHoldTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiPeakHoldTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallAvgTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallLowLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallHighLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCPUMeter)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPeakText)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterDelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayFPS)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayAVGTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPhasePts)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridStep)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMin)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMax)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRgain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRdelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRtaps)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFgain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFdelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFtaps)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWPitch)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerWeight)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerRise)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerSemiBreakInDelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCMaxGaindB)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCFixedGaindB)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXAMCarrierLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXAF)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGate)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXTunePower)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbTXCompander)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXCompander)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFFCompression)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbTXFFCompression)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterLow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterHigh)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPACalPower)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenScale)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tkbarTestGenFreq)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHzSec)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHigh)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenLow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_xtal2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_xtal3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udMemoryZapping)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRleak)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFleak)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATServerPort)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udQRP2000XTRVIF)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udSRSi570Addr)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59CWSpeedCorr)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udMultiPSKServerPort)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udWBIRTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG137Xtal1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG500Xtal1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udFDCOmin)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udFDCOmax)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59XtrvIF)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATEthCollTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATEthServerWatchdogTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59TXSwitchTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udtTX_IF_SHIFT)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUFullTune)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUMemoryTune)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUBypass)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUCarrierTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG11XTRVLosc)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udMultimeterCalValue)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCalValue)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerFall)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udRXShift)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udVACPhase)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udVACGain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59PTT_ON_time)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59PTT_OFF_time)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPrimaryGain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPrimaryPhase)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPrimaryRXshift)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udUSBSerialNo)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatencyVAC)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbPrimaryGain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbPrimaryPhase)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbVACGain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbVACPhase)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udQRP2000_Si570Xtal)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATCI_V)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udVACchNumber)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udRTL_SDR_correction)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG11extPAON)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG11extPAOFF)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG6ExtPAoffTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG6ExtPAonTime)).BeginInit(); this.tpTests.SuspendLayout(); this.grpAudioTests.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udWBIRindex)).BeginInit(); this.grpBoxTS1.SuspendLayout(); this.groupBoxTS5.SuspendLayout(); this.grpTestAudioBalance.SuspendLayout(); this.grpTestTXIMD.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDPower)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq1)).BeginInit(); this.grpImpulseTest.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udImpulseNum)).BeginInit(); this.tpKeyboard.SuspendLayout(); this.grpCWXKeys.SuspendLayout(); this.grpVoiceMsgSetup.SuspendLayout(); this.grpKBCWSpeed.SuspendLayout(); this.grpKBXIT.SuspendLayout(); this.grpKBRIT.SuspendLayout(); this.grpKBBand.SuspendLayout(); this.grpKBTune.SuspendLayout(); this.grpKBFilter.SuspendLayout(); this.grpKBCW.SuspendLayout(); this.tpAppearance.SuspendLayout(); this.tcAppearance.SuspendLayout(); this.tpAppearanceDisplay.SuspendLayout(); this.grpSubRX.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbSubRXAlpha)).BeginInit(); this.grpMainRX.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbMainRXAlpha)).BeginInit(); this.grpDisplay.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbGridLineAlpha)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDataLineAlpha)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDisplayTxtAlpha)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayLineWidth)).BeginInit(); this.grpDisplayPeakCursor.SuspendLayout(); this.tpAppearanceGeneral.SuspendLayout(); this.grpAppearanceNewVFO.SuspendLayout(); this.grpAppearanceBand.SuspendLayout(); this.grpAppearanceVFO.SuspendLayout(); this.tpAppearanceMeter.SuspendLayout(); this.grpNewVFOSMeter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbSmeterAlpha)).BeginInit(); this.groupBoxTS11.SuspendLayout(); this.grpMeterEdge.SuspendLayout(); this.grpAppearanceMeter.SuspendLayout(); this.tcSkins.SuspendLayout(); this.grpSMeter.SuspendLayout(); this.grpSkin.SuspendLayout(); this.tpPowerAmplifier.SuspendLayout(); this.grpPABandOffset.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC2190)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC600)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC160)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC80)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC60)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC40)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC30)).BeginInit(); this.grpPAGainByBand.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain2190)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain600)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain30)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain40)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain60)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain80)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain160)).BeginInit(); this.tpTransmit.SuspendLayout(); this.groupBoxTS12.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXFMDeviation)).BeginInit(); this.grpGenesis.SuspendLayout(); this.grpTXAM.SuspendLayout(); this.grpTXMonitor.SuspendLayout(); this.grpTXVOX.SuspendLayout(); this.grpTXNoiseGate.SuspendLayout(); this.grpTXProfile.SuspendLayout(); this.grpPATune.SuspendLayout(); this.grpTXCompression.SuspendLayout(); this.grpTXFilter.SuspendLayout(); this.tpDSP.SuspendLayout(); this.tcDSP.SuspendLayout(); this.tpDSPOptions.SuspendLayout(); this.grpDSPBufferSize.SuspendLayout(); this.grpDSPNB.SuspendLayout(); this.grpDSPLMSNR.SuspendLayout(); this.grpDSPLMSANF.SuspendLayout(); this.grpDSPWindow.SuspendLayout(); this.grpDSPNB2.SuspendLayout(); this.tpDSPImageReject.SuspendLayout(); this.grpDSPImageRejectTX.SuspendLayout(); this.tpDSPKeyer.SuspendLayout(); this.grpExteCWKeyer.SuspendLayout(); this.grpDSPKeyerOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWMonFreq)).BeginInit(); this.grpKeyerConnections.SuspendLayout(); this.grpDSPCWPitch.SuspendLayout(); this.grpDSPKeyerSignalShaping.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerDeBounce)).BeginInit(); this.grpDSPKeyerSemiBreakIn.SuspendLayout(); this.tpDSPAGCALC.SuspendLayout(); this.grpDSPLeveler.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerAttack)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPLevelerHangThreshold)).BeginInit(); this.grpDSPALC.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPALCHangThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCAttack)).BeginInit(); this.grpDSPAGC.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPAGCHangThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCAttack)).BeginInit(); this.tpDisplay.SuspendLayout(); this.grpDisplayDriverEngine.SuspendLayout(); this.grpDisplayPolyPhase.SuspendLayout(); this.grpDisplayScopeMode.SuspendLayout(); this.grpDisplayMultimeter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDecayTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAtackTime)).BeginInit(); this.grpDisplayWaterfall.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbWaterfallAlpha)).BeginInit(); this.grpDisplayRefreshRates.SuspendLayout(); this.grpDisplayAverage.SuspendLayout(); this.grpDisplayPhase.SuspendLayout(); this.grpDisplaySpectrumGrid.SuspendLayout(); this.tpAudio.SuspendLayout(); this.tcAudio.SuspendLayout(); this.tpAudioCard1.SuspendLayout(); this.grpAudioDetails1.SuspendLayout(); this.grpPrimaryDirectI_Q.SuspendLayout(); this.grpSampleCorrection.SuspendLayout(); this.grpAudioChannels.SuspendLayout(); this.groupBoxTS7.SuspendLayout(); this.groupBoxTS6.SuspendLayout(); this.grpAudioLatency1.SuspendLayout(); this.tpVAC.SuspendLayout(); this.grpVACDirectIQ.SuspendLayout(); this.grpLoopDll.SuspendLayout(); this.grpAudioVACAutoEnable.SuspendLayout(); this.grpAudioVAC.SuspendLayout(); this.grpAudioLatencyVAC.SuspendLayout(); this.grpAudioVACGain.SuspendLayout(); this.grpAudioDetailsVAC.SuspendLayout(); this.tabPage1.SuspendLayout(); this.tpGeneral.SuspendLayout(); this.tcGeneral.SuspendLayout(); this.tpGeneralHardware.SuspendLayout(); this.grpG6.SuspendLayout(); this.grpG11.SuspendLayout(); this.grpG11Filters.SuspendLayout(); this.grpG11XTRV.SuspendLayout(); this.grpG59.SuspendLayout(); this.grpXTRV.SuspendLayout(); this.grpRTL_SDR.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udRTL_VACcorr)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRTL_SDR_AGC_Gain)).BeginInit(); this.grpQRP2000.SuspendLayout(); this.groupBoxTS10.SuspendLayout(); this.groupBoxTS9.SuspendLayout(); this.grpGeneralModel.SuspendLayout(); this.grpGeneralHardwareSetup.SuspendLayout(); this.grpNETBox.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udLocalNETBoxPort)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udNETBoxPort)).BeginInit(); this.grpGenesis80.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal1)).BeginInit(); this.grpGenesis160.SuspendLayout(); this.grpGenesis137.SuspendLayout(); this.grpGenesis500.SuspendLayout(); this.grpGenesis40.SuspendLayout(); this.grpGenesis3020.SuspendLayout(); this.tpGeneralOptions.SuspendLayout(); this.grpIRRemote.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udWinLIRCport)).BeginInit(); this.grpAutoPWR.SuspendLayout(); this.grpMemoryZap.SuspendLayout(); this.grpOptMainConsole.SuspendLayout(); this.grpOptQuickQSY.SuspendLayout(); this.grpGenTuningOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGU)).BeginInit(); this.grpGeneralOptions.SuspendLayout(); this.grpGeneralProcessPriority.SuspendLayout(); this.tpGeneralCalibration.SuspendLayout(); this.grpWBIR.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udRXGain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRXGain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRXPhase)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udRXPhase)).BeginInit(); this.grpGenCalRXImage.SuspendLayout(); this.grpGenCalLevel.SuspendLayout(); this.tpFilters.SuspendLayout(); this.grpOptFilterControls.SuspendLayout(); this.tpGenesisOption.SuspendLayout(); this.grpG59Keyer.SuspendLayout(); this.grpSi570.SuspendLayout(); this.grpGenesisConnection.SuspendLayout(); this.grpGenesisUSB.SuspendLayout(); this.tcSetup.SuspendLayout(); this.tpATU.SuspendLayout(); this.grpExtATU.SuspendLayout(); this.grpATUTiming.SuspendLayout(); this.grpATUMode.SuspendLayout(); this.tpCAT.SuspendLayout(); this.tcCAT.SuspendLayout(); this.tpCATCOM.SuspendLayout(); this.grpCATIcom.SuspendLayout(); this.grpCATOverEthernet.SuspendLayout(); this.grpPTTBitBang.SuspendLayout(); this.grpCatControlBox.SuspendLayout(); this.tpServerClient.SuspendLayout(); this.grpNetClient.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udClientMulticastPort)).BeginInit(); this.grpNetServer.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udServerPort)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTTL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udMulticastPort)).BeginInit(); this.tpMultiPSK.SuspendLayout(); this.grpMultiPSK.SuspendLayout(); this.tabPage2.SuspendLayout(); this.groupBoxTS8.SuspendLayout(); this.groupBoxTS1.SuspendLayout(); this.groupBoxTS2.SuspendLayout(); this.groupBoxTS3.SuspendLayout(); this.SuspendLayout(); // // VID_TextBox // this.VID_TextBox.Location = new System.Drawing.Point(22, 52); this.VID_TextBox.Name = "VID_TextBox"; this.VID_TextBox.Size = new System.Drawing.Size(65, 20); this.VID_TextBox.TabIndex = 4; this.VID_TextBox.Text = "fffe"; this.VID_TextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.VID_TextBox, "Vendor ID"); this.VID_TextBox.TextChanged += new System.EventHandler(this.VID_TextBox_TextChanged); // // PID_TextBox // this.PID_TextBox.Location = new System.Drawing.Point(22, 83); this.PID_TextBox.Name = "PID_TextBox"; this.PID_TextBox.Size = new System.Drawing.Size(65, 20); this.PID_TextBox.TabIndex = 5; this.PID_TextBox.Text = "1970"; this.PID_TextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.PID_TextBox, "Product ID"); this.PID_TextBox.TextChanged += new System.EventHandler(this.PID_TextBox_TextChanged); // // lbxTX_IF_shift // this.lbxTX_IF_shift.AutoSize = true; this.lbxTX_IF_shift.Location = new System.Drawing.Point(29, 83); this.lbxTX_IF_shift.Name = "lbxTX_IF_shift"; this.lbxTX_IF_shift.Size = new System.Drawing.Size(41, 13); this.lbxTX_IF_shift.TabIndex = 1; this.lbxTX_IF_shift.Text = "IF shift:"; this.toolTip1.SetToolTip(this.lbxTX_IF_shift, "Fixed IF shift"); // // chkG59_PA10 // this.chkG59_PA10.AutoSize = true; this.chkG59_PA10.Image = null; this.chkG59_PA10.Location = new System.Drawing.Point(40, 13); this.chkG59_PA10.Name = "chkG59_PA10"; this.chkG59_PA10.Size = new System.Drawing.Size(90, 17); this.chkG59_PA10.TabIndex = 0; this.chkG59_PA10.Text = "PA10 present"; this.toolTip1.SetToolTip(this.chkG59_PA10, "Check this if PA10 is present in system"); this.chkG59_PA10.UseVisualStyleBackColor = true; this.chkG59_PA10.CheckedChanged += new System.EventHandler(this.chkG59_PA10_CheckedChanged); // // udG40Xtal1 // this.udG40Xtal1.DecimalPlaces = 6; this.udG40Xtal1.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG40Xtal1.Location = new System.Drawing.Point(30, 69); this.udG40Xtal1.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG40Xtal1.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG40Xtal1.Name = "udG40Xtal1"; this.udG40Xtal1.Size = new System.Drawing.Size(105, 20); this.udG40Xtal1.TabIndex = 29; this.toolTip1.SetToolTip(this.udG40Xtal1, "C"); this.udG40Xtal1.Value = new decimal(new int[] { 7045, 0, 0, 196608}); this.udG40Xtal1.ValueChanged += new System.EventHandler(this.udG40Xtal1_ValueChanged); // // udG3020Xtal4 // this.udG3020Xtal4.DecimalPlaces = 6; this.udG3020Xtal4.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG3020Xtal4.Location = new System.Drawing.Point(33, 116); this.udG3020Xtal4.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG3020Xtal4.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG3020Xtal4.Name = "udG3020Xtal4"; this.udG3020Xtal4.Size = new System.Drawing.Size(105, 20); this.udG3020Xtal4.TabIndex = 31; this.toolTip1.SetToolTip(this.udG3020Xtal4, "C"); this.udG3020Xtal4.Value = new decimal(new int[] { 14232, 0, 0, 196608}); this.udG3020Xtal4.ValueChanged += new System.EventHandler(this.udG3020Xtal4_ValueChanged); // // udG3020Xtal3 // this.udG3020Xtal3.DecimalPlaces = 6; this.udG3020Xtal3.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG3020Xtal3.Location = new System.Drawing.Point(33, 86); this.udG3020Xtal3.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG3020Xtal3.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG3020Xtal3.Name = "udG3020Xtal3"; this.udG3020Xtal3.Size = new System.Drawing.Size(105, 20); this.udG3020Xtal3.TabIndex = 30; this.toolTip1.SetToolTip(this.udG3020Xtal3, "C"); this.udG3020Xtal3.Value = new decimal(new int[] { 14138, 0, 0, 196608}); this.udG3020Xtal3.ValueChanged += new System.EventHandler(this.udG3020Xtal3_ValueChanged); // // udG3020Xtal2 // this.udG3020Xtal2.DecimalPlaces = 6; this.udG3020Xtal2.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG3020Xtal2.Location = new System.Drawing.Point(33, 56); this.udG3020Xtal2.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG3020Xtal2.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG3020Xtal2.Name = "udG3020Xtal2"; this.udG3020Xtal2.Size = new System.Drawing.Size(105, 20); this.udG3020Xtal2.TabIndex = 29; this.toolTip1.SetToolTip(this.udG3020Xtal2, "C"); this.udG3020Xtal2.Value = new decimal(new int[] { 14045, 0, 0, 196608}); this.udG3020Xtal2.ValueChanged += new System.EventHandler(this.udG3020Xtal2_ValueChanged); // // udG3020Xtal1 // this.udG3020Xtal1.DecimalPlaces = 6; this.udG3020Xtal1.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG3020Xtal1.Location = new System.Drawing.Point(33, 26); this.udG3020Xtal1.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG3020Xtal1.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG3020Xtal1.Name = "udG3020Xtal1"; this.udG3020Xtal1.Size = new System.Drawing.Size(105, 20); this.udG3020Xtal1.TabIndex = 28; this.toolTip1.SetToolTip(this.udG3020Xtal1, "C"); this.udG3020Xtal1.Value = new decimal(new int[] { 10125, 0, 0, 196608}); this.udG3020Xtal1.ValueChanged += new System.EventHandler(this.udG3020Xtal1_ValueChanged); // // udG160Xtal2 // this.udG160Xtal2.DecimalPlaces = 6; this.udG160Xtal2.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG160Xtal2.Location = new System.Drawing.Point(33, 97); this.udG160Xtal2.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG160Xtal2.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG160Xtal2.Name = "udG160Xtal2"; this.udG160Xtal2.Size = new System.Drawing.Size(105, 20); this.udG160Xtal2.TabIndex = 30; this.toolTip1.SetToolTip(this.udG160Xtal2, "C"); this.udG160Xtal2.Value = new decimal(new int[] { 1845, 0, 0, 196608}); this.udG160Xtal2.ValueChanged += new System.EventHandler(this.udG160Xtal2_ValueChanged); // // udG160Xtal1 // this.udG160Xtal1.DecimalPlaces = 6; this.udG160Xtal1.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG160Xtal1.Location = new System.Drawing.Point(33, 46); this.udG160Xtal1.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG160Xtal1.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG160Xtal1.Name = "udG160Xtal1"; this.udG160Xtal1.Size = new System.Drawing.Size(105, 20); this.udG160Xtal1.TabIndex = 29; this.toolTip1.SetToolTip(this.udG160Xtal1, "C"); this.udG160Xtal1.Value = new decimal(new int[] { 1838, 0, 0, 196608}); this.udG160Xtal1.ValueChanged += new System.EventHandler(this.udG160Xtal1_ValueChanged); // // lblShowHideGui // this.lblShowHideGui.AutoSize = true; this.lblShowHideGui.Image = null; this.lblShowHideGui.Location = new System.Drawing.Point(16, 108); this.lblShowHideGui.Name = "lblShowHideGui"; this.lblShowHideGui.Size = new System.Drawing.Size(61, 13); this.lblShowHideGui.TabIndex = 15; this.lblShowHideGui.Text = "Show/Hide"; this.toolTip1.SetToolTip(this.lblShowHideGui, "Show/Hide Gui for external Si570"); // // chkDragVFOA // this.chkDragVFOA.AutoSize = true; this.chkDragVFOA.Image = null; this.chkDragVFOA.Location = new System.Drawing.Point(16, 131); this.chkDragVFOA.Name = "chkDragVFOA"; this.chkDragVFOA.Size = new System.Drawing.Size(76, 17); this.chkDragVFOA.TabIndex = 13; this.chkDragVFOA.Text = "Drag filters"; this.toolTip1.SetToolTip(this.chkDragVFOA, "Check this if you want to \"drag\" filters."); this.chkDragVFOA.UseVisualStyleBackColor = true; this.chkDragVFOA.CheckedChanged += new System.EventHandler(this.chkDragVFOA_CheckedChanged); // // chkAlwaysOnTop // this.chkAlwaysOnTop.Image = null; this.chkAlwaysOnTop.Location = new System.Drawing.Point(16, 30); this.chkAlwaysOnTop.Name = "chkAlwaysOnTop"; this.chkAlwaysOnTop.Size = new System.Drawing.Size(136, 16); this.chkAlwaysOnTop.TabIndex = 12; this.chkAlwaysOnTop.Text = "Automatic focus"; this.toolTip1.SetToolTip(this.chkAlwaysOnTop, "Automatic focus for sliders and display"); this.chkAlwaysOnTop.CheckedChanged += new System.EventHandler(this.chkAlwaysOnTop_CheckedChanged); // // chkGeneralRXOnly // this.chkGeneralRXOnly.Image = null; this.chkGeneralRXOnly.Location = new System.Drawing.Point(16, 56); this.chkGeneralRXOnly.Name = "chkGeneralRXOnly"; this.chkGeneralRXOnly.Size = new System.Drawing.Size(96, 16); this.chkGeneralRXOnly.TabIndex = 11; this.chkGeneralRXOnly.Text = "Receive Only"; this.toolTip1.SetToolTip(this.chkGeneralRXOnly, "Check to disable transmit functionality."); this.chkGeneralRXOnly.CheckedChanged += new System.EventHandler(this.chkGeneralRXOnly_CheckedChanged); // // chkGeneralUSBPresent // this.chkGeneralUSBPresent.Image = null; this.chkGeneralUSBPresent.Location = new System.Drawing.Point(16, 82); this.chkGeneralUSBPresent.Name = "chkGeneralUSBPresent"; this.chkGeneralUSBPresent.Size = new System.Drawing.Size(116, 16); this.chkGeneralUSBPresent.TabIndex = 10; this.chkGeneralUSBPresent.Text = "USB Si570 board"; this.toolTip1.SetToolTip(this.chkGeneralUSBPresent, "Check if the USB Si570 board present"); this.chkGeneralUSBPresent.CheckedChanged += new System.EventHandler(this.chkGeneralUSBPresent_CheckedChanged); // // chkOptAlwaysOnTop // this.chkOptAlwaysOnTop.Image = null; this.chkOptAlwaysOnTop.Location = new System.Drawing.Point(16, 24); this.chkOptAlwaysOnTop.Name = "chkOptAlwaysOnTop"; this.chkOptAlwaysOnTop.Size = new System.Drawing.Size(104, 16); this.chkOptAlwaysOnTop.TabIndex = 0; this.chkOptAlwaysOnTop.Text = "Always On Top"; this.toolTip1.SetToolTip(this.chkOptAlwaysOnTop, "Check this box to set the main console to always be on top (visible)."); this.chkOptAlwaysOnTop.CheckedChanged += new System.EventHandler(this.chkOptAlwaysOnTop_CheckedChanged); // // chkOptEnableKBShortcuts // this.chkOptEnableKBShortcuts.Checked = true; this.chkOptEnableKBShortcuts.CheckState = System.Windows.Forms.CheckState.Checked; this.chkOptEnableKBShortcuts.Image = null; this.chkOptEnableKBShortcuts.Location = new System.Drawing.Point(16, 24); this.chkOptEnableKBShortcuts.Name = "chkOptEnableKBShortcuts"; this.chkOptEnableKBShortcuts.Size = new System.Drawing.Size(109, 16); this.chkOptEnableKBShortcuts.TabIndex = 1; this.chkOptEnableKBShortcuts.Text = "Enable Shortcuts"; this.toolTip1.SetToolTip(this.chkOptEnableKBShortcuts, "Enable keyboard shortcuts. If this box is not checked, none of the keyboard shor" + "tcuts other than those that are built into windows will function."); this.chkOptEnableKBShortcuts.CheckedChanged += new System.EventHandler(this.chkOptEnableKBShortcuts_CheckedChanged); // // chkOptQuickQSY // this.chkOptQuickQSY.Checked = true; this.chkOptQuickQSY.CheckState = System.Windows.Forms.CheckState.Checked; this.chkOptQuickQSY.Image = null; this.chkOptQuickQSY.Location = new System.Drawing.Point(16, 48); this.chkOptQuickQSY.Name = "chkOptQuickQSY"; this.chkOptQuickQSY.Size = new System.Drawing.Size(80, 16); this.chkOptQuickQSY.TabIndex = 0; this.chkOptQuickQSY.Text = "Quick QSY"; this.toolTip1.SetToolTip(this.chkOptQuickQSY, "Enabled the Quick QSY feature -- directly enter the frequency in MHz while the ma" + "in form has the focus and hit enter."); this.chkOptQuickQSY.CheckedChanged += new System.EventHandler(this.chkOptQuickQSY_CheckedChanged); // // chkGeneralDisablePTT // this.chkGeneralDisablePTT.Image = null; this.chkGeneralDisablePTT.Location = new System.Drawing.Point(20, 17); this.chkGeneralDisablePTT.Name = "chkGeneralDisablePTT"; this.chkGeneralDisablePTT.Size = new System.Drawing.Size(104, 24); this.chkGeneralDisablePTT.TabIndex = 4; this.chkGeneralDisablePTT.Text = "Disable PTT"; this.toolTip1.SetToolTip(this.chkGeneralDisablePTT, "Disable Push To Talk detection."); this.chkGeneralDisablePTT.CheckedChanged += new System.EventHandler(this.chkGeneralDisablePTT_CheckedChanged); // // comboGeneralProcessPriority // this.comboGeneralProcessPriority.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboGeneralProcessPriority.DropDownWidth = 112; this.comboGeneralProcessPriority.Items.AddRange(new object[] { "Idle", "Below Normal", "Normal", "Above Normal", "High", "Real Time"}); this.comboGeneralProcessPriority.Location = new System.Drawing.Point(16, 24); this.comboGeneralProcessPriority.Name = "comboGeneralProcessPriority"; this.comboGeneralProcessPriority.Size = new System.Drawing.Size(112, 21); this.comboGeneralProcessPriority.TabIndex = 0; this.toolTip1.SetToolTip(this.comboGeneralProcessPriority, "Sets the process priority of the PowerSDR software."); this.comboGeneralProcessPriority.SelectedIndexChanged += new System.EventHandler(this.comboGeneralProcessPriority_SelectedIndexChanged); // // btnGeneralCalImageReset // this.btnGeneralCalImageReset.Image = null; this.btnGeneralCalImageReset.Location = new System.Drawing.Point(22, 24); this.btnGeneralCalImageReset.Name = "btnGeneralCalImageReset"; this.btnGeneralCalImageReset.Size = new System.Drawing.Size(75, 23); this.btnGeneralCalImageReset.TabIndex = 7; this.btnGeneralCalImageReset.Text = "Reset"; this.toolTip1.SetToolTip(this.btnGeneralCalImageReset, "Click to reset/restart WBIR."); this.btnGeneralCalImageReset.Click += new System.EventHandler(this.btnGeneralCalImageReset_Click); // // udGeneralCalLevel // this.udGeneralCalLevel.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalLevel.Location = new System.Drawing.Point(108, 50); this.udGeneralCalLevel.Maximum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalLevel.Minimum = new decimal(new int[] { 150, 0, 0, -2147483648}); this.udGeneralCalLevel.Name = "udGeneralCalLevel"; this.udGeneralCalLevel.Size = new System.Drawing.Size(48, 20); this.udGeneralCalLevel.TabIndex = 3; this.toolTip1.SetToolTip(this.udGeneralCalLevel, "Level calibration reference level"); this.udGeneralCalLevel.Value = new decimal(new int[] { 70, 0, 0, -2147483648}); this.udGeneralCalLevel.LostFocus += new System.EventHandler(this.udGeneralCalLevel_LostFocus); // // udGeneralCalFreq2 // this.udGeneralCalFreq2.DecimalPlaces = 6; this.udGeneralCalFreq2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udGeneralCalFreq2.Location = new System.Drawing.Point(84, 24); this.udGeneralCalFreq2.Maximum = new decimal(new int[] { 65, 0, 0, 0}); this.udGeneralCalFreq2.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalFreq2.Name = "udGeneralCalFreq2"; this.udGeneralCalFreq2.Size = new System.Drawing.Size(72, 20); this.udGeneralCalFreq2.TabIndex = 1; this.toolTip1.SetToolTip(this.udGeneralCalFreq2, "Calibration frequency."); this.udGeneralCalFreq2.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalFreq2.LostFocus += new System.EventHandler(this.udGeneralCalFreq2_LostFocus); // // btnGeneralCalLevelStart // this.btnGeneralCalLevelStart.Image = null; this.btnGeneralCalLevelStart.Location = new System.Drawing.Point(48, 141); this.btnGeneralCalLevelStart.Name = "btnGeneralCalLevelStart"; this.btnGeneralCalLevelStart.Size = new System.Drawing.Size(75, 23); this.btnGeneralCalLevelStart.TabIndex = 4; this.btnGeneralCalLevelStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnGeneralCalLevelStart, "Click to start the level calibration using the frequency and level references abo" + "ve."); this.btnGeneralCalLevelStart.Click += new System.EventHandler(this.btnGeneralCalLevelStart_Click); // // udFilterDefaultLowCut // this.udFilterDefaultLowCut.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udFilterDefaultLowCut.Location = new System.Drawing.Point(134, 120); this.udFilterDefaultLowCut.Maximum = new decimal(new int[] { 500, 0, 0, 0}); this.udFilterDefaultLowCut.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udFilterDefaultLowCut.Name = "udFilterDefaultLowCut"; this.udFilterDefaultLowCut.Size = new System.Drawing.Size(48, 20); this.udFilterDefaultLowCut.TabIndex = 17; this.toolTip1.SetToolTip(this.udFilterDefaultLowCut, "Sets the default low cut filter for filter changes"); this.udFilterDefaultLowCut.Value = new decimal(new int[] { 150, 0, 0, 0}); this.udFilterDefaultLowCut.ValueChanged += new System.EventHandler(this.udFilterDefaultLowCut_ValueChanged); this.udFilterDefaultLowCut.LostFocus += new System.EventHandler(this.udFilterDefaultLowCut_LostFocus); // // udOptMaxFilterShift // this.udOptMaxFilterShift.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptMaxFilterShift.Location = new System.Drawing.Point(126, 72); this.udOptMaxFilterShift.Maximum = new decimal(new int[] { 48000, 0, 0, 0}); this.udOptMaxFilterShift.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptMaxFilterShift.Name = "udOptMaxFilterShift"; this.udOptMaxFilterShift.Size = new System.Drawing.Size(56, 20); this.udOptMaxFilterShift.TabIndex = 13; this.udOptMaxFilterShift.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.toolTip1.SetToolTip(this.udOptMaxFilterShift, "Sets the maximum amount for the Shift control. Set lower for finer resolution co" + "ntrol"); this.udOptMaxFilterShift.Value = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterShift.ValueChanged += new System.EventHandler(this.udOptMaxFilterShift_ValueChanged); this.udOptMaxFilterShift.LostFocus += new System.EventHandler(this.udOptMaxFilterShift_LostFocus); // // comboOptFilterWidthMode // this.comboOptFilterWidthMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboOptFilterWidthMode.DropDownWidth = 112; this.comboOptFilterWidthMode.Items.AddRange(new object[] { "Linear", "Log", "Log10"}); this.comboOptFilterWidthMode.Location = new System.Drawing.Point(126, 48); this.comboOptFilterWidthMode.Name = "comboOptFilterWidthMode"; this.comboOptFilterWidthMode.Size = new System.Drawing.Size(56, 21); this.comboOptFilterWidthMode.TabIndex = 12; this.toolTip1.SetToolTip(this.comboOptFilterWidthMode, "Sets the mapping for the filter width slider."); this.comboOptFilterWidthMode.SelectedIndexChanged += new System.EventHandler(this.comboOptFilterWidthMode_SelectedIndexChanged); // // udOptMaxFilterWidth // this.udOptMaxFilterWidth.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptMaxFilterWidth.Location = new System.Drawing.Point(126, 24); this.udOptMaxFilterWidth.Maximum = new decimal(new int[] { 125000, 0, 0, 0}); this.udOptMaxFilterWidth.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptMaxFilterWidth.Name = "udOptMaxFilterWidth"; this.udOptMaxFilterWidth.Size = new System.Drawing.Size(56, 20); this.udOptMaxFilterWidth.TabIndex = 0; this.udOptMaxFilterWidth.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.toolTip1.SetToolTip(this.udOptMaxFilterWidth, "Wets the maximum filter bandwidth"); this.udOptMaxFilterWidth.Value = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterWidth.ValueChanged += new System.EventHandler(this.udOptMaxFilterWidth_ValueChanged); this.udOptMaxFilterWidth.LostFocus += new System.EventHandler(this.udOptMaxFilterWidth_LostFocus); // // chkOptFilterSaveChanges // this.chkOptFilterSaveChanges.Image = null; this.chkOptFilterSaveChanges.Location = new System.Drawing.Point(16, 96); this.chkOptFilterSaveChanges.Name = "chkOptFilterSaveChanges"; this.chkOptFilterSaveChanges.Size = new System.Drawing.Size(176, 16); this.chkOptFilterSaveChanges.TabIndex = 15; this.chkOptFilterSaveChanges.Text = "Save Slider/Display Changes"; this.toolTip1.SetToolTip(this.chkOptFilterSaveChanges, "If checked, changes made to the filters via the display or sliders will be saved " + "in the Variable filter."); this.chkOptFilterSaveChanges.CheckedChanged += new System.EventHandler(this.chkOptFilterSaveChanges_CheckedChanged); // // lblG59_DASH_DOT_ratio // this.lblG59_DASH_DOT_ratio.AutoSize = true; this.lblG59_DASH_DOT_ratio.Image = null; this.lblG59_DASH_DOT_ratio.Location = new System.Drawing.Point(22, 218); this.lblG59_DASH_DOT_ratio.Name = "lblG59_DASH_DOT_ratio"; this.lblG59_DASH_DOT_ratio.Size = new System.Drawing.Size(65, 13); this.lblG59_DASH_DOT_ratio.TabIndex = 5; this.lblG59_DASH_DOT_ratio.Text = "DASH/DOT"; this.toolTip1.SetToolTip(this.lblG59_DASH_DOT_ratio, "Dash/DOT ratio"); // // udG59DASH_DOT_ratio // this.udG59DASH_DOT_ratio.DecimalPlaces = 1; this.udG59DASH_DOT_ratio.Increment = new decimal(new int[] { 5, 0, 0, 65536}); this.udG59DASH_DOT_ratio.Location = new System.Drawing.Point(95, 216); this.udG59DASH_DOT_ratio.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udG59DASH_DOT_ratio.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udG59DASH_DOT_ratio.Name = "udG59DASH_DOT_ratio"; this.udG59DASH_DOT_ratio.Size = new System.Drawing.Size(39, 20); this.udG59DASH_DOT_ratio.TabIndex = 4; this.udG59DASH_DOT_ratio.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG59DASH_DOT_ratio, "Dash/DOT ratio"); this.udG59DASH_DOT_ratio.Value = new decimal(new int[] { 3, 0, 0, 0}); this.udG59DASH_DOT_ratio.ValueChanged += new System.EventHandler(this.udG59DASH_DOT_ratio_ValueChanged); // // chkIambicReverse // this.chkIambicReverse.AutoSize = true; this.chkIambicReverse.Image = null; this.chkIambicReverse.Location = new System.Drawing.Point(25, 87); this.chkIambicReverse.Name = "chkIambicReverse"; this.chkIambicReverse.Size = new System.Drawing.Size(85, 17); this.chkIambicReverse.TabIndex = 2; this.chkIambicReverse.Text = "Rev. Paddle"; this.toolTip1.SetToolTip(this.chkIambicReverse, "Reverse Paddle"); this.chkIambicReverse.UseVisualStyleBackColor = true; this.chkIambicReverse.CheckedChanged += new System.EventHandler(this.chkG59IambicReverse_CheckedChanged); // // udG59CWSpeed // this.udG59CWSpeed.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udG59CWSpeed.Location = new System.Drawing.Point(96, 148); this.udG59CWSpeed.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udG59CWSpeed.Minimum = new decimal(new int[] { 7, 0, 0, 0}); this.udG59CWSpeed.Name = "udG59CWSpeed"; this.udG59CWSpeed.Size = new System.Drawing.Size(39, 20); this.udG59CWSpeed.TabIndex = 1; this.udG59CWSpeed.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG59CWSpeed, "CW Keyer speed in words per minute"); this.udG59CWSpeed.Value = new decimal(new int[] { 7, 0, 0, 0}); this.udG59CWSpeed.ValueChanged += new System.EventHandler(this.udG59CWSpeed_ValueChanged); // // btnSi570Test // this.btnSi570Test.Image = null; this.btnSi570Test.Location = new System.Drawing.Point(66, 217); this.btnSi570Test.Name = "btnSi570Test"; this.btnSi570Test.Size = new System.Drawing.Size(75, 23); this.btnSi570Test.TabIndex = 6; this.btnSi570Test.Text = "Test"; this.toolTip1.SetToolTip(this.btnSi570Test, "Test new settings"); this.btnSi570Test.UseVisualStyleBackColor = true; this.btnSi570Test.Click += new System.EventHandler(this.btnSi570Test_Click); // // udSi570_divisor // this.udSi570_divisor.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udSi570_divisor.Location = new System.Drawing.Point(140, 91); this.udSi570_divisor.Maximum = new decimal(new int[] { 11, 0, 0, 0}); this.udSi570_divisor.Minimum = new decimal(new int[] { 4, 0, 0, 0}); this.udSi570_divisor.Name = "udSi570_divisor"; this.udSi570_divisor.Size = new System.Drawing.Size(52, 20); this.udSi570_divisor.TabIndex = 4; this.udSi570_divisor.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udSi570_divisor, "Frequency divisor"); this.udSi570_divisor.Value = new decimal(new int[] { 11, 0, 0, 0}); this.udSi570_divisor.ValueChanged += new System.EventHandler(this.udSi570_divisor_ValueChanged); // // udSi570_address // this.udSi570_address.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udSi570_address.Location = new System.Drawing.Point(140, 115); this.udSi570_address.Maximum = new decimal(new int[] { 10000, 0, 0, 0}); this.udSi570_address.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udSi570_address.Name = "udSi570_address"; this.udSi570_address.Size = new System.Drawing.Size(52, 20); this.udSi570_address.TabIndex = 2; this.udSi570_address.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udSi570_address, "I2C address"); this.udSi570_address.Value = new decimal(new int[] { 170, 0, 0, 0}); this.udSi570_address.ValueChanged += new System.EventHandler(this.udSi570_address_ValueChanged); // // udSi570_xtal1 // this.udSi570_xtal1.DecimalPlaces = 6; this.udSi570_xtal1.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udSi570_xtal1.Location = new System.Drawing.Point(77, 19); this.udSi570_xtal1.Maximum = new decimal(new int[] { 115000000, 0, 0, 0}); this.udSi570_xtal1.Minimum = new decimal(new int[] { 114000000, 0, 0, 0}); this.udSi570_xtal1.Name = "udSi570_xtal1"; this.udSi570_xtal1.Size = new System.Drawing.Size(115, 20); this.udSi570_xtal1.TabIndex = 0; this.udSi570_xtal1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udSi570_xtal1, "Internal crystal reference"); this.udSi570_xtal1.Value = new decimal(new int[] { 114260800, 0, 0, 0}); this.udSi570_xtal1.ValueChanged += new System.EventHandler(this.udSi570_xtal_ValueChanged); // // comboKeyerConnPrimary // this.comboKeyerConnPrimary.DisplayMember = "USB"; this.comboKeyerConnPrimary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnPrimary.DropDownWidth = 64; this.comboKeyerConnPrimary.Items.AddRange(new object[] { "None"}); this.comboKeyerConnPrimary.Location = new System.Drawing.Point(64, 27); this.comboKeyerConnPrimary.Name = "comboKeyerConnPrimary"; this.comboKeyerConnPrimary.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnPrimary.TabIndex = 40; this.toolTip1.SetToolTip(this.comboKeyerConnPrimary, "Choose port for connecting with G** radios."); this.comboKeyerConnPrimary.ValueMember = "USB"; this.comboKeyerConnPrimary.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnPrimary_SelectedIndexChanged); // // lblKeyerConnPrimary // this.lblKeyerConnPrimary.Image = null; this.lblKeyerConnPrimary.Location = new System.Drawing.Point(16, 32); this.lblKeyerConnPrimary.Name = "lblKeyerConnPrimary"; this.lblKeyerConnPrimary.Size = new System.Drawing.Size(53, 16); this.lblKeyerConnPrimary.TabIndex = 41; this.lblKeyerConnPrimary.Text = "Port:"; this.toolTip1.SetToolTip(this.lblKeyerConnPrimary, "0"); // // udIQCorrection // this.udIQCorrection.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udIQCorrection.Location = new System.Drawing.Point(16, 20); this.udIQCorrection.Maximum = new decimal(new int[] { 32, 0, 0, 0}); this.udIQCorrection.Minimum = new decimal(new int[] { 32, 0, 0, -2147483648}); this.udIQCorrection.Name = "udIQCorrection"; this.udIQCorrection.Size = new System.Drawing.Size(56, 20); this.udIQCorrection.TabIndex = 0; this.toolTip1.SetToolTip(this.udIQCorrection, "Corrects sample shift for Left and Right Soundcard input. "); this.udIQCorrection.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udIQCorrection.ValueChanged += new System.EventHandler(this.udIQCorrection_ValueChanged); // // chkTXIQswap // this.chkTXIQswap.AutoSize = true; this.chkTXIQswap.Image = null; this.chkTXIQswap.Location = new System.Drawing.Point(479, 290); this.chkTXIQswap.Name = "chkTXIQswap"; this.chkTXIQswap.Size = new System.Drawing.Size(87, 17); this.chkTXIQswap.TabIndex = 48; this.chkTXIQswap.Text = "TX swap I/Q"; this.toolTip1.SetToolTip(this.chkTXIQswap, "Swap Left and Right channel during transmition period"); this.chkTXIQswap.UseVisualStyleBackColor = true; this.chkTXIQswap.CheckedChanged += new System.EventHandler(this.chkTXIQswap_CheckedChanged); // // chkRXIQswap // this.chkRXIQswap.AutoSize = true; this.chkRXIQswap.Image = null; this.chkRXIQswap.Location = new System.Drawing.Point(379, 290); this.chkRXIQswap.Name = "chkRXIQswap"; this.chkRXIQswap.Size = new System.Drawing.Size(88, 17); this.chkRXIQswap.TabIndex = 47; this.chkRXIQswap.Text = "RX swap I/Q"; this.toolTip1.SetToolTip(this.chkRXIQswap, "Swap Left and Right channel on receive mode"); this.chkRXIQswap.UseVisualStyleBackColor = true; this.chkRXIQswap.CheckedChanged += new System.EventHandler(this.chkIQswap_CheckedChanged); // // chkVACPrimaryAudioDevice // this.chkVACPrimaryAudioDevice.Image = null; this.chkVACPrimaryAudioDevice.Location = new System.Drawing.Point(27, 286); this.chkVACPrimaryAudioDevice.Name = "chkVACPrimaryAudioDevice"; this.chkVACPrimaryAudioDevice.Size = new System.Drawing.Size(220, 24); this.chkVACPrimaryAudioDevice.TabIndex = 46; this.chkVACPrimaryAudioDevice.Text = "Enable VAC as Mic/Speaker device"; this.toolTip1.SetToolTip(this.chkVACPrimaryAudioDevice, "Enables Dual soundcard support. Primary device is dedicated to I/Q processing, Se" + "condary (VAC) device is dedicated to Audio processing. "); this.chkVACPrimaryAudioDevice.CheckedChanged += new System.EventHandler(this.chkVACPrimaryAudioDevice_CheckedChanged); // // comboAudioChannels1 // this.comboAudioChannels1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioChannels1.DropDownWidth = 56; this.comboAudioChannels1.Items.AddRange(new object[] { "2", "4", "6"}); this.comboAudioChannels1.Location = new System.Drawing.Point(48, 13); this.comboAudioChannels1.Name = "comboAudioChannels1"; this.comboAudioChannels1.Size = new System.Drawing.Size(56, 21); this.comboAudioChannels1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioChannels1, "Number of channels to open"); this.comboAudioChannels1.SelectedIndexChanged += new System.EventHandler(this.comboAudioChannels1_SelectedIndexChanged); // // udAudioMicGain1 // this.udAudioMicGain1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioMicGain1.Location = new System.Drawing.Point(350, 84); this.udAudioMicGain1.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udAudioMicGain1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioMicGain1.Name = "udAudioMicGain1"; this.udAudioMicGain1.Size = new System.Drawing.Size(40, 20); this.udAudioMicGain1.TabIndex = 51; this.toolTip1.SetToolTip(this.udAudioMicGain1, "MIC Gain - Input Volume"); this.udAudioMicGain1.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udAudioMicGain1.ValueChanged += new System.EventHandler(this.udAudioMicGain1_ValueChanged); this.udAudioMicGain1.LostFocus += new System.EventHandler(this.udAudioMicGain1_LostFocus); // // udAudioLineIn1 // this.udAudioLineIn1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioLineIn1.Location = new System.Drawing.Point(350, 62); this.udAudioLineIn1.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udAudioLineIn1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioLineIn1.Name = "udAudioLineIn1"; this.udAudioLineIn1.Size = new System.Drawing.Size(40, 20); this.udAudioLineIn1.TabIndex = 51; this.toolTip1.SetToolTip(this.udAudioLineIn1, "IF Gain - Input Volume"); this.udAudioLineIn1.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udAudioLineIn1.ValueChanged += new System.EventHandler(this.udAudioLineIn1_ValueChanged); this.udAudioLineIn1.LostFocus += new System.EventHandler(this.udAudioLineIn1_LostFocus); // // btnAudioVoltTest1 // this.btnAudioVoltTest1.Image = null; this.btnAudioVoltTest1.Location = new System.Drawing.Point(340, 145); this.btnAudioVoltTest1.Name = "btnAudioVoltTest1"; this.btnAudioVoltTest1.Size = new System.Drawing.Size(40, 23); this.btnAudioVoltTest1.TabIndex = 2; this.btnAudioVoltTest1.Text = "Test"; this.toolTip1.SetToolTip(this.btnAudioVoltTest1, "Outputs a full scale sinewave at the CW pitch for determining the RMS Voltage of " + "the sound card."); this.btnAudioVoltTest1.Click += new System.EventHandler(this.btnAudioVoltTest1_Click); // // udAudioVoltage1 // this.udAudioVoltage1.DecimalPlaces = 2; this.udAudioVoltage1.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udAudioVoltage1.Location = new System.Drawing.Point(244, 145); this.udAudioVoltage1.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udAudioVoltage1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioVoltage1.Name = "udAudioVoltage1"; this.udAudioVoltage1.Size = new System.Drawing.Size(56, 20); this.udAudioVoltage1.TabIndex = 1; this.udAudioVoltage1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udAudioVoltage1, "The measured VRMS on the sound card output when outputting a full range tone."); this.udAudioVoltage1.Value = new decimal(new int[] { 100, 0, 0, 131072}); this.udAudioVoltage1.ValueChanged += new System.EventHandler(this.udAudioVoltage1_ValueChanged); this.udAudioVoltage1.LostFocus += new System.EventHandler(this.udAudioVoltage1_LostFocus); // // comboAudioTransmit1 // this.comboAudioTransmit1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioTransmit1.DropDownWidth = 160; this.comboAudioTransmit1.ItemHeight = 13; this.comboAudioTransmit1.Location = new System.Drawing.Point(56, 224); this.comboAudioTransmit1.MaxDropDownItems = 15; this.comboAudioTransmit1.Name = "comboAudioTransmit1"; this.comboAudioTransmit1.Size = new System.Drawing.Size(140, 21); this.comboAudioTransmit1.TabIndex = 2; this.toolTip1.SetToolTip(this.comboAudioTransmit1, "Transmit mode mixer MUX setting."); this.comboAudioTransmit1.SelectedIndexChanged += new System.EventHandler(this.comboAudioTransmit1_SelectedIndexChanged); // // comboAudioOutput1 // this.comboAudioOutput1.DisplayMember = "sdfg"; this.comboAudioOutput1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioOutput1.DropDownWidth = 160; this.comboAudioOutput1.ItemHeight = 13; this.comboAudioOutput1.Location = new System.Drawing.Point(56, 128); this.comboAudioOutput1.MaxDropDownItems = 15; this.comboAudioOutput1.Name = "comboAudioOutput1"; this.comboAudioOutput1.Size = new System.Drawing.Size(140, 21); this.comboAudioOutput1.TabIndex = 5; this.toolTip1.SetToolTip(this.comboAudioOutput1, "Output Audio Device"); this.comboAudioOutput1.SelectedIndexChanged += new System.EventHandler(this.comboAudioOutput1_SelectedIndexChanged); // // comboAudioInput1 // this.comboAudioInput1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioInput1.DropDownWidth = 160; this.comboAudioInput1.ItemHeight = 13; this.comboAudioInput1.Location = new System.Drawing.Point(56, 96); this.comboAudioInput1.MaxDropDownItems = 15; this.comboAudioInput1.Name = "comboAudioInput1"; this.comboAudioInput1.Size = new System.Drawing.Size(140, 21); this.comboAudioInput1.TabIndex = 1; this.toolTip1.SetToolTip(this.comboAudioInput1, "Input Audio Device"); this.comboAudioInput1.SelectedIndexChanged += new System.EventHandler(this.comboAudioInput1_SelectedIndexChanged); // // comboAudioDriver1 // this.comboAudioDriver1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioDriver1.DropDownWidth = 160; this.comboAudioDriver1.ItemHeight = 13; this.comboAudioDriver1.Location = new System.Drawing.Point(56, 64); this.comboAudioDriver1.MaxDropDownItems = 15; this.comboAudioDriver1.Name = "comboAudioDriver1"; this.comboAudioDriver1.Size = new System.Drawing.Size(140, 21); this.comboAudioDriver1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioDriver1, "Sound Card Driver Selection"); this.comboAudioDriver1.SelectedIndexChanged += new System.EventHandler(this.comboAudioDriver1_SelectedIndexChanged); // // comboAudioMixer1 // this.comboAudioMixer1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioMixer1.DropDownWidth = 160; this.comboAudioMixer1.ItemHeight = 13; this.comboAudioMixer1.Location = new System.Drawing.Point(56, 160); this.comboAudioMixer1.MaxDropDownItems = 15; this.comboAudioMixer1.Name = "comboAudioMixer1"; this.comboAudioMixer1.Size = new System.Drawing.Size(140, 21); this.comboAudioMixer1.TabIndex = 21; this.toolTip1.SetToolTip(this.comboAudioMixer1, "Audio Mixer Device "); this.comboAudioMixer1.SelectedIndexChanged += new System.EventHandler(this.comboAudioMixer1_SelectedIndexChanged); // // comboAudioReceive1 // this.comboAudioReceive1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioReceive1.DropDownWidth = 160; this.comboAudioReceive1.ItemHeight = 13; this.comboAudioReceive1.Location = new System.Drawing.Point(56, 192); this.comboAudioReceive1.MaxDropDownItems = 15; this.comboAudioReceive1.Name = "comboAudioReceive1"; this.comboAudioReceive1.Size = new System.Drawing.Size(140, 21); this.comboAudioReceive1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioReceive1, "Receive mode Mixer MUX setting"); this.comboAudioReceive1.SelectedIndexChanged += new System.EventHandler(this.comboAudioReceive1_SelectedIndexChanged); // // udAudioLatency1 // this.udAudioLatency1.Enabled = false; this.udAudioLatency1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioLatency1.Location = new System.Drawing.Point(16, 48); this.udAudioLatency1.Maximum = new decimal(new int[] { 240, 0, 0, 0}); this.udAudioLatency1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioLatency1.Name = "udAudioLatency1"; this.udAudioLatency1.Size = new System.Drawing.Size(48, 20); this.udAudioLatency1.TabIndex = 0; this.udAudioLatency1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udAudioLatency1, "Adds latency/stability to the audio subsystem. Not needed when using ASIO driver" + ". Mainly for compatibility. The Manual setting should only be used for unsuppo" + "rted cards."); this.udAudioLatency1.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udAudioLatency1.ValueChanged += new System.EventHandler(this.udAudioLatency1_ValueChanged); this.udAudioLatency1.LostFocus += new System.EventHandler(this.udAudioLatency1_LostFocus); // // comboAudioSoundCard // this.comboAudioSoundCard.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSoundCard.DropDownWidth = 184; this.comboAudioSoundCard.Items.AddRange(new object[] { "M-Audio Delta 44 (PCI)", "PreSonus FireBox (FireWire)", "Edirol FA-66 (FireWire)", "SB Audigy (PCI)", "SB Audigy 2 (PCI)", "SB Audigy 2 ZS (PCI)", "Sound Blaster Extigy (USB)", "Sound Blaster MP3+ (USB)", "Turtle Beach Santa Cruz (PCI)", "Realtek HD audio", "No Mixer Audio Card", "Genesis G6", "RTL SDR", "Unsupported Card"}); this.comboAudioSoundCard.Location = new System.Drawing.Point(56, 32); this.comboAudioSoundCard.MaxDropDownItems = 10; this.comboAudioSoundCard.Name = "comboAudioSoundCard"; this.comboAudioSoundCard.Size = new System.Drawing.Size(140, 21); this.comboAudioSoundCard.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioSoundCard, "Sound Card Selection (use Unsupported Card if your card isn\'t in the list -- this" + " will require manual setup of the below controls)."); this.comboAudioSoundCard.SelectedIndexChanged += new System.EventHandler(this.comboAudioSoundCard_SelectedIndexChanged); // // comboAudioBuffer1 // this.comboAudioBuffer1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioBuffer1.DropDownWidth = 56; this.comboAudioBuffer1.Items.AddRange(new object[] { "64", "128", "256", "384", "512", "1024", "2048"}); this.comboAudioBuffer1.Location = new System.Drawing.Point(334, 14); this.comboAudioBuffer1.Name = "comboAudioBuffer1"; this.comboAudioBuffer1.Size = new System.Drawing.Size(56, 21); this.comboAudioBuffer1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioBuffer1, "Samples per audio buffer. Smaller settings give less latency, more CPU load."); this.comboAudioBuffer1.SelectedIndexChanged += new System.EventHandler(this.comboAudioBuffer1_SelectedIndexChanged); // // comboAudioSampleRate1 // this.comboAudioSampleRate1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSampleRate1.DropDownWidth = 64; this.comboAudioSampleRate1.Location = new System.Drawing.Point(326, 38); this.comboAudioSampleRate1.Name = "comboAudioSampleRate1"; this.comboAudioSampleRate1.Size = new System.Drawing.Size(64, 21); this.comboAudioSampleRate1.TabIndex = 4; this.toolTip1.SetToolTip(this.comboAudioSampleRate1, "Sample Rate -- Range is dependent on selected sound card! "); this.comboAudioSampleRate1.SelectedIndexChanged += new System.EventHandler(this.comboAudioSampleRate1_SelectedIndexChanged); // // chkAudioVACAutoEnable // this.chkAudioVACAutoEnable.Image = null; this.chkAudioVACAutoEnable.Location = new System.Drawing.Point(16, 24); this.chkAudioVACAutoEnable.Name = "chkAudioVACAutoEnable"; this.chkAudioVACAutoEnable.Size = new System.Drawing.Size(200, 32); this.chkAudioVACAutoEnable.TabIndex = 0; this.chkAudioVACAutoEnable.Text = "Enable for Digital modes, Disable for all others"; this.toolTip1.SetToolTip(this.chkAudioVACAutoEnable, "Click this button to automatically enable VAC when in Digital modes (DIGL, DIGU, " + "DRM)"); this.chkAudioVACAutoEnable.CheckedChanged += new System.EventHandler(this.chkAudioVACAutoEnable_CheckedChanged); // // udAudioVACGainTX // this.udAudioVACGainTX.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioVACGainTX.Location = new System.Drawing.Point(48, 42); this.udAudioVACGainTX.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udAudioVACGainTX.Minimum = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udAudioVACGainTX.Name = "udAudioVACGainTX"; this.udAudioVACGainTX.Size = new System.Drawing.Size(40, 20); this.udAudioVACGainTX.TabIndex = 38; this.udAudioVACGainTX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udAudioVACGainTX, "Controls the gain on the audio coming from third party applications."); this.udAudioVACGainTX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioVACGainTX.ValueChanged += new System.EventHandler(this.udAudioVACGainTX_ValueChanged); this.udAudioVACGainTX.LostFocus += new System.EventHandler(this.udAudioVACGainTX_LostFocus); // // udAudioVACGainRX // this.udAudioVACGainRX.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioVACGainRX.Location = new System.Drawing.Point(48, 18); this.udAudioVACGainRX.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udAudioVACGainRX.Minimum = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udAudioVACGainRX.Name = "udAudioVACGainRX"; this.udAudioVACGainRX.Size = new System.Drawing.Size(40, 20); this.udAudioVACGainRX.TabIndex = 36; this.udAudioVACGainRX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udAudioVACGainRX, "Controls the gain applied to the RX audio before it is sent to the third party ap" + "plication."); this.udAudioVACGainRX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioVACGainRX.ValueChanged += new System.EventHandler(this.udAudioVACGainRX_ValueChanged); this.udAudioVACGainRX.LostFocus += new System.EventHandler(this.udAudioVACGainRX_LostFocus); // // comboAudioSampleRateVAC // this.comboAudioSampleRateVAC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSampleRateVAC.DropDownWidth = 64; this.comboAudioSampleRateVAC.Items.AddRange(new object[] { "24000", "44100", "48000", "96000", "192000"}); this.comboAudioSampleRateVAC.Location = new System.Drawing.Point(84, 48); this.comboAudioSampleRateVAC.Name = "comboAudioSampleRateVAC"; this.comboAudioSampleRateVAC.Size = new System.Drawing.Size(64, 21); this.comboAudioSampleRateVAC.TabIndex = 60; this.toolTip1.SetToolTip(this.comboAudioSampleRateVAC, "Samples per second. Set to match the third party software program."); this.comboAudioSampleRateVAC.SelectedIndexChanged += new System.EventHandler(this.comboAudioSampleRate2_SelectedIndexChanged); // // comboAudioBufferVAC // this.comboAudioBufferVAC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioBufferVAC.DropDownWidth = 56; this.comboAudioBufferVAC.Items.AddRange(new object[] { "64", "128", "256", "512", "1024", "2048"}); this.comboAudioBufferVAC.Location = new System.Drawing.Point(84, 19); this.comboAudioBufferVAC.Name = "comboAudioBufferVAC"; this.comboAudioBufferVAC.Size = new System.Drawing.Size(64, 21); this.comboAudioBufferVAC.TabIndex = 58; this.toolTip1.SetToolTip(this.comboAudioBufferVAC, "Samples per buffer."); this.comboAudioBufferVAC.SelectedIndexChanged += new System.EventHandler(this.comboAudioBuffer2_SelectedIndexChanged); // // comboAudioOutputVAC // this.comboAudioOutputVAC.DisplayMember = "sdfg"; this.comboAudioOutputVAC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioOutputVAC.DropDownWidth = 160; this.comboAudioOutputVAC.ItemHeight = 13; this.comboAudioOutputVAC.Location = new System.Drawing.Point(54, 88); this.comboAudioOutputVAC.MaxDropDownItems = 15; this.comboAudioOutputVAC.Name = "comboAudioOutputVAC"; this.comboAudioOutputVAC.Size = new System.Drawing.Size(144, 21); this.comboAudioOutputVAC.TabIndex = 34; this.toolTip1.SetToolTip(this.comboAudioOutputVAC, "Output Audio Device"); this.comboAudioOutputVAC.SelectedIndexChanged += new System.EventHandler(this.comboAudioOutputVAC_SelectedIndexChanged); // // comboAudioInputVAC // this.comboAudioInputVAC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioInputVAC.DropDownWidth = 160; this.comboAudioInputVAC.ItemHeight = 13; this.comboAudioInputVAC.Location = new System.Drawing.Point(54, 56); this.comboAudioInputVAC.MaxDropDownItems = 15; this.comboAudioInputVAC.Name = "comboAudioInputVAC"; this.comboAudioInputVAC.Size = new System.Drawing.Size(144, 21); this.comboAudioInputVAC.TabIndex = 28; this.toolTip1.SetToolTip(this.comboAudioInputVAC, "Input Audio Device"); this.comboAudioInputVAC.SelectedIndexChanged += new System.EventHandler(this.comboAudioInputVAC_SelectedIndexChanged); // // comboAudioDriverVAC // this.comboAudioDriverVAC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioDriverVAC.DropDownWidth = 160; this.comboAudioDriverVAC.ItemHeight = 13; this.comboAudioDriverVAC.Location = new System.Drawing.Point(54, 24); this.comboAudioDriverVAC.Name = "comboAudioDriverVAC"; this.comboAudioDriverVAC.Size = new System.Drawing.Size(144, 21); this.comboAudioDriverVAC.TabIndex = 26; this.toolTip1.SetToolTip(this.comboAudioDriverVAC, "Sound Card Driver Selection"); this.comboAudioDriverVAC.SelectedIndexChanged += new System.EventHandler(this.comboAudioDriverVAC_SelectedIndexChanged); // // chkAudioEnableVAC // this.chkAudioEnableVAC.Image = null; this.chkAudioEnableVAC.Location = new System.Drawing.Point(45, 8); this.chkAudioEnableVAC.Name = "chkAudioEnableVAC"; this.chkAudioEnableVAC.Size = new System.Drawing.Size(88, 24); this.chkAudioEnableVAC.TabIndex = 25; this.chkAudioEnableVAC.Text = "Enable VAC"; this.toolTip1.SetToolTip(this.chkAudioEnableVAC, "Enable Virtual Audio Cable Support using the settings on this form."); this.chkAudioEnableVAC.CheckedChanged += new System.EventHandler(this.chkAudioEnableVAC_CheckedChanged); // // comboDisplayDriver // this.comboDisplayDriver.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDisplayDriver.DropDownWidth = 48; this.comboDisplayDriver.Items.AddRange(new object[] { "GDI+", "DirectX"}); this.comboDisplayDriver.Location = new System.Drawing.Point(8, 24); this.comboDisplayDriver.Name = "comboDisplayDriver"; this.comboDisplayDriver.Size = new System.Drawing.Size(80, 21); this.comboDisplayDriver.TabIndex = 45; this.toolTip1.SetToolTip(this.comboDisplayDriver, "Sets the driver to be used for the display."); this.comboDisplayDriver.SelectedIndexChanged += new System.EventHandler(this.comboDisplayDriver_SelectedIndexChanged); // // chkSpectrumPolyphase // this.chkSpectrumPolyphase.Image = null; this.chkSpectrumPolyphase.Location = new System.Drawing.Point(16, 24); this.chkSpectrumPolyphase.Name = "chkSpectrumPolyphase"; this.chkSpectrumPolyphase.Size = new System.Drawing.Size(64, 16); this.chkSpectrumPolyphase.TabIndex = 39; this.chkSpectrumPolyphase.Text = "Enable"; this.toolTip1.SetToolTip(this.chkSpectrumPolyphase, "Check to enable polyphase spectrum display mode. While adding latency, this adds" + " resolution to the display."); this.chkSpectrumPolyphase.CheckedChanged += new System.EventHandler(this.chkSpectrumPolyphase_CheckedChanged); // // udDisplayScopeTime // this.udDisplayScopeTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayScopeTime.Location = new System.Drawing.Point(64, 24); this.udDisplayScopeTime.Maximum = new decimal(new int[] { 85, 0, 0, 0}); this.udDisplayScopeTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayScopeTime.Name = "udDisplayScopeTime"; this.udDisplayScopeTime.Size = new System.Drawing.Size(48, 20); this.udDisplayScopeTime.TabIndex = 0; this.udDisplayScopeTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udDisplayScopeTime, "Amount of time to display across the width of the scope display window."); this.udDisplayScopeTime.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udDisplayScopeTime.ValueChanged += new System.EventHandler(this.udDisplayScopeTime_ValueChanged); this.udDisplayScopeTime.LostFocus += new System.EventHandler(this.udDisplayScopeTime_LostFocus); // // udDisplayMeterAvg // this.udDisplayMeterAvg.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterAvg.Location = new System.Drawing.Point(132, 72); this.udDisplayMeterAvg.Maximum = new decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMeterAvg.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterAvg.Name = "udDisplayMeterAvg"; this.udDisplayMeterAvg.Size = new System.Drawing.Size(56, 20); this.udDisplayMeterAvg.TabIndex = 8; this.toolTip1.SetToolTip(this.udDisplayMeterAvg, "Controls the length of time to average for the meter."); this.udDisplayMeterAvg.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayMeterAvg.ValueChanged += new System.EventHandler(this.udDisplayMeterAvg_ValueChanged); this.udDisplayMeterAvg.LostFocus += new System.EventHandler(this.udDisplayMeterAvg_LostFocus); // // udDisplayMultiTextHoldTime // this.udDisplayMultiTextHoldTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Location = new System.Drawing.Point(132, 48); this.udDisplayMultiTextHoldTime.Maximum = new decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Name = "udDisplayMultiTextHoldTime"; this.udDisplayMultiTextHoldTime.Size = new System.Drawing.Size(56, 20); this.udDisplayMultiTextHoldTime.TabIndex = 4; this.toolTip1.SetToolTip(this.udDisplayMultiTextHoldTime, "Controls how long the meter will hold the digital peak value when in the Peak Pow" + "er mode."); this.udDisplayMultiTextHoldTime.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDisplayMultiTextHoldTime.ValueChanged += new System.EventHandler(this.udDisplayMultiTextHoldTime_ValueChanged); this.udDisplayMultiTextHoldTime.LostFocus += new System.EventHandler(this.udDisplayMultiTextHoldTime_LostFocus); // // udDisplayMultiPeakHoldTime // this.udDisplayMultiPeakHoldTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Location = new System.Drawing.Point(132, 24); this.udDisplayMultiPeakHoldTime.Maximum = new decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Name = "udDisplayMultiPeakHoldTime"; this.udDisplayMultiPeakHoldTime.Size = new System.Drawing.Size(56, 20); this.udDisplayMultiPeakHoldTime.TabIndex = 1; this.toolTip1.SetToolTip(this.udDisplayMultiPeakHoldTime, "Controls how long the analog peak red line will be held on the multimeter."); this.udDisplayMultiPeakHoldTime.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.ValueChanged += new System.EventHandler(this.udDisplayMultiPeakHoldTime_ValueChanged); this.udDisplayMultiPeakHoldTime.LostFocus += new System.EventHandler(this.udDisplayMultiPeakHoldTime_LostFocus); // // udDisplayWaterfallAvgTime // this.udDisplayWaterfallAvgTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Location = new System.Drawing.Point(192, 103); this.udDisplayWaterfallAvgTime.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Name = "udDisplayWaterfallAvgTime"; this.udDisplayWaterfallAvgTime.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallAvgTime.TabIndex = 70; this.udDisplayWaterfallAvgTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udDisplayWaterfallAvgTime, "When averaging, use this number of buffers to calculate the average."); this.udDisplayWaterfallAvgTime.Value = new decimal(new int[] { 750, 0, 0, 0}); this.udDisplayWaterfallAvgTime.ValueChanged += new System.EventHandler(this.udDisplayWaterfallAvgTime_ValueChanged); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(8, 72); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(40, 13); this.label1.TabIndex = 71; this.label1.Text = "Palette"; this.toolTip1.SetToolTip(this.label1, "Color sheme"); // // comboColorPalette // this.comboColorPalette.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboColorPalette.DropDownWidth = 48; this.comboColorPalette.Items.AddRange(new object[] { "original", "enhanced", "Spectran", "BlackWhite"}); this.comboColorPalette.Location = new System.Drawing.Point(48, 70); this.comboColorPalette.Name = "comboColorPalette"; this.comboColorPalette.Size = new System.Drawing.Size(72, 21); this.comboColorPalette.TabIndex = 45; this.toolTip1.SetToolTip(this.comboColorPalette, "Sets the color sheme"); this.comboColorPalette.SelectedIndexChanged += new System.EventHandler(this.comboColorPalette_SelectedIndexChanged); // // clrbtnWaterfallMid // this.clrbtnWaterfallMid.Automatic = "Automatic"; this.clrbtnWaterfallMid.Color = System.Drawing.Color.Transparent; this.clrbtnWaterfallMid.Image = null; this.clrbtnWaterfallMid.Location = new System.Drawing.Point(200, 41); this.clrbtnWaterfallMid.MoreColors = "More Colors..."; this.clrbtnWaterfallMid.Name = "clrbtnWaterfallMid"; this.clrbtnWaterfallMid.Size = new System.Drawing.Size(40, 23); this.clrbtnWaterfallMid.TabIndex = 70; this.toolTip1.SetToolTip(this.clrbtnWaterfallMid, "The mid color used when the signal level is exactly between the low and high leve" + "ls shown above. A gradient is used if it is not eactly in the middle."); this.clrbtnWaterfallMid.Changed += new System.EventHandler(this.clrbtnWaterfallMid_Changed); // // clrbtnWaterfallHigh // this.clrbtnWaterfallHigh.Automatic = "Automatic"; this.clrbtnWaterfallHigh.Color = System.Drawing.Color.Transparent; this.clrbtnWaterfallHigh.Image = null; this.clrbtnWaterfallHigh.Location = new System.Drawing.Point(200, 69); this.clrbtnWaterfallHigh.MoreColors = "More Colors..."; this.clrbtnWaterfallHigh.Name = "clrbtnWaterfallHigh"; this.clrbtnWaterfallHigh.Size = new System.Drawing.Size(40, 23); this.clrbtnWaterfallHigh.TabIndex = 69; this.toolTip1.SetToolTip(this.clrbtnWaterfallHigh, "The color to display when the signal level is at or above the high level shown ab" + "ove."); this.clrbtnWaterfallHigh.Changed += new System.EventHandler(this.clrbtnWaterfallHigh_Changed); // // clrbtnWaterfallLow // this.clrbtnWaterfallLow.Automatic = "Automatic"; this.clrbtnWaterfallLow.Color = System.Drawing.Color.Transparent; this.clrbtnWaterfallLow.Image = null; this.clrbtnWaterfallLow.Location = new System.Drawing.Point(200, 13); this.clrbtnWaterfallLow.MoreColors = "More Colors..."; this.clrbtnWaterfallLow.Name = "clrbtnWaterfallLow"; this.clrbtnWaterfallLow.Size = new System.Drawing.Size(40, 23); this.clrbtnWaterfallLow.TabIndex = 68; this.toolTip1.SetToolTip(this.clrbtnWaterfallLow, "The Color to use when the signal level is at or below the low level set above."); this.clrbtnWaterfallLow.Changed += new System.EventHandler(this.clrbtnWaterfallLow_Changed); // // udDisplayWaterfallLowLevel // this.udDisplayWaterfallLowLevel.Increment = new decimal(new int[] { 5, 0, 0, 0}); this.udDisplayWaterfallLowLevel.Location = new System.Drawing.Point(72, 16); this.udDisplayWaterfallLowLevel.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayWaterfallLowLevel.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayWaterfallLowLevel.Name = "udDisplayWaterfallLowLevel"; this.udDisplayWaterfallLowLevel.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallLowLevel.TabIndex = 2; this.toolTip1.SetToolTip(this.udDisplayWaterfallLowLevel, "Waterfall Low Signal - Show Low Color below this value (gradient in between)."); this.udDisplayWaterfallLowLevel.Value = new decimal(new int[] { 110, 0, 0, -2147483648}); this.udDisplayWaterfallLowLevel.ValueChanged += new System.EventHandler(this.udDisplayWaterfallLowLevel_ValueChanged); this.udDisplayWaterfallLowLevel.LostFocus += new System.EventHandler(this.udDisplayWaterfallLowLevel_LostFocus); // // udDisplayWaterfallHighLevel // this.udDisplayWaterfallHighLevel.Increment = new decimal(new int[] { 5, 0, 0, 0}); this.udDisplayWaterfallHighLevel.Location = new System.Drawing.Point(72, 43); this.udDisplayWaterfallHighLevel.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayWaterfallHighLevel.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayWaterfallHighLevel.Name = "udDisplayWaterfallHighLevel"; this.udDisplayWaterfallHighLevel.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallHighLevel.TabIndex = 0; this.toolTip1.SetToolTip(this.udDisplayWaterfallHighLevel, "Waterfall High Signal - Show High Color above this value (gradient in between)."); this.udDisplayWaterfallHighLevel.Value = new decimal(new int[] { 70, 0, 0, -2147483648}); this.udDisplayWaterfallHighLevel.ValueChanged += new System.EventHandler(this.udDisplayWaterfallHighLevel_ValueChanged); this.udDisplayWaterfallHighLevel.LostFocus += new System.EventHandler(this.udDisplayWaterfallHighLevel_LostFocus); // // udDisplayCPUMeter // this.udDisplayCPUMeter.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayCPUMeter.Location = new System.Drawing.Point(120, 96); this.udDisplayCPUMeter.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayCPUMeter.Minimum = new decimal(new int[] { 100, 0, 0, 0}); this.udDisplayCPUMeter.Name = "udDisplayCPUMeter"; this.udDisplayCPUMeter.Size = new System.Drawing.Size(48, 20); this.udDisplayCPUMeter.TabIndex = 38; this.toolTip1.SetToolTip(this.udDisplayCPUMeter, "CPU Meter Refresh Rate."); this.udDisplayCPUMeter.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayCPUMeter.ValueChanged += new System.EventHandler(this.udDisplayCPUMeter_ValueChanged); this.udDisplayCPUMeter.LostFocus += new System.EventHandler(this.udDisplayCPUMeter_LostFocus); // // udDisplayPeakText // this.udDisplayPeakText.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayPeakText.Location = new System.Drawing.Point(120, 72); this.udDisplayPeakText.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayPeakText.Minimum = new decimal(new int[] { 100, 0, 0, 0}); this.udDisplayPeakText.Name = "udDisplayPeakText"; this.udDisplayPeakText.Size = new System.Drawing.Size(48, 20); this.udDisplayPeakText.TabIndex = 36; this.toolTip1.SetToolTip(this.udDisplayPeakText, "Peak Text Refresh Rate."); this.udDisplayPeakText.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDisplayPeakText.ValueChanged += new System.EventHandler(this.udDisplayPeakText_ValueChanged); this.udDisplayPeakText.LostFocus += new System.EventHandler(this.udDisplayPeakText_LostFocus); // // udDisplayMeterDelay // this.udDisplayMeterDelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterDelay.Location = new System.Drawing.Point(120, 48); this.udDisplayMeterDelay.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayMeterDelay.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDisplayMeterDelay.Name = "udDisplayMeterDelay"; this.udDisplayMeterDelay.Size = new System.Drawing.Size(48, 20); this.udDisplayMeterDelay.TabIndex = 34; this.toolTip1.SetToolTip(this.udDisplayMeterDelay, "Multimeter Refresh Rate."); this.udDisplayMeterDelay.Value = new decimal(new int[] { 30, 0, 0, 0}); this.udDisplayMeterDelay.ValueChanged += new System.EventHandler(this.udDisplayMeterDelay_ValueChanged); this.udDisplayMeterDelay.LostFocus += new System.EventHandler(this.udDisplayMeterDelay_LostFocus); // // udDisplayFPS // this.udDisplayFPS.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayFPS.Location = new System.Drawing.Point(120, 24); this.udDisplayFPS.Maximum = new decimal(new int[] { 50, 0, 0, 0}); this.udDisplayFPS.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayFPS.Name = "udDisplayFPS"; this.udDisplayFPS.Size = new System.Drawing.Size(48, 20); this.udDisplayFPS.TabIndex = 32; this.toolTip1.SetToolTip(this.udDisplayFPS, "Frames Per Second (approximate)"); this.udDisplayFPS.Value = new decimal(new int[] { 15, 0, 0, 0}); this.udDisplayFPS.ValueChanged += new System.EventHandler(this.udDisplayFPS_ValueChanged); this.udDisplayFPS.LostFocus += new System.EventHandler(this.udDisplayFPS_LostFocus); // // udDisplayAVGTime // this.udDisplayAVGTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayAVGTime.Location = new System.Drawing.Point(64, 24); this.udDisplayAVGTime.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayAVGTime.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayAVGTime.Name = "udDisplayAVGTime"; this.udDisplayAVGTime.Size = new System.Drawing.Size(48, 20); this.udDisplayAVGTime.TabIndex = 2; this.udDisplayAVGTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udDisplayAVGTime, "When averaging, use this number of buffers to calculate the average."); this.udDisplayAVGTime.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udDisplayAVGTime.ValueChanged += new System.EventHandler(this.udDisplayAVGTime_ValueChanged); this.udDisplayAVGTime.LostFocus += new System.EventHandler(this.udDisplayAVGTime_LostFocus); // // udDisplayPhasePts // this.udDisplayPhasePts.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayPhasePts.Location = new System.Drawing.Point(64, 24); this.udDisplayPhasePts.Maximum = new decimal(new int[] { 500, 0, 0, 0}); this.udDisplayPhasePts.Minimum = new decimal(new int[] { 25, 0, 0, 0}); this.udDisplayPhasePts.Name = "udDisplayPhasePts"; this.udDisplayPhasePts.Size = new System.Drawing.Size(48, 20); this.udDisplayPhasePts.TabIndex = 0; this.udDisplayPhasePts.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udDisplayPhasePts, "Number of points to display in Phase Mode."); this.udDisplayPhasePts.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udDisplayPhasePts.ValueChanged += new System.EventHandler(this.udDisplayPhasePts_ValueChanged); // // chkHorGrid // this.chkHorGrid.AutoSize = true; this.chkHorGrid.Image = null; this.chkHorGrid.Location = new System.Drawing.Point(15, 124); this.chkHorGrid.Name = "chkHorGrid"; this.chkHorGrid.Size = new System.Drawing.Size(95, 17); this.chkHorGrid.TabIndex = 32; this.chkHorGrid.Text = "Horizontal Grid"; this.chkHorGrid.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.toolTip1.SetToolTip(this.chkHorGrid, "Show horizontal grid on display"); this.chkHorGrid.UseVisualStyleBackColor = true; this.chkHorGrid.CheckedChanged += new System.EventHandler(this.chkHorGrid_CheckedChanged); // // chkVertGrid // this.chkVertGrid.AutoSize = true; this.chkVertGrid.Image = null; this.chkVertGrid.Location = new System.Drawing.Point(15, 107); this.chkVertGrid.Name = "chkVertGrid"; this.chkVertGrid.Size = new System.Drawing.Size(83, 17); this.chkVertGrid.TabIndex = 31; this.chkVertGrid.Text = "Vertical Grid"; this.toolTip1.SetToolTip(this.chkVertGrid, "Show vertical grid on display"); this.chkVertGrid.UseVisualStyleBackColor = true; this.chkVertGrid.CheckedChanged += new System.EventHandler(this.chkVertGrid_CheckedChanged); // // comboDisplayLabelAlign // this.comboDisplayLabelAlign.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDisplayLabelAlign.DropDownWidth = 48; this.comboDisplayLabelAlign.Items.AddRange(new object[] { "Left", "Cntr", "Right", "Auto", "Off"}); this.comboDisplayLabelAlign.Location = new System.Drawing.Point(48, 85); this.comboDisplayLabelAlign.Name = "comboDisplayLabelAlign"; this.comboDisplayLabelAlign.Size = new System.Drawing.Size(56, 21); this.comboDisplayLabelAlign.TabIndex = 30; this.toolTip1.SetToolTip(this.comboDisplayLabelAlign, "Sets the alignement of the grid callouts on the display."); this.comboDisplayLabelAlign.SelectedIndexChanged += new System.EventHandler(this.comboDisplayLabelAlign_SelectedIndexChanged); // // udDisplayGridStep // this.udDisplayGridStep.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayGridStep.Location = new System.Drawing.Point(48, 61); this.udDisplayGridStep.Maximum = new decimal(new int[] { 40, 0, 0, 0}); this.udDisplayGridStep.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDisplayGridStep.Name = "udDisplayGridStep"; this.udDisplayGridStep.Size = new System.Drawing.Size(56, 20); this.udDisplayGridStep.TabIndex = 25; this.toolTip1.SetToolTip(this.udDisplayGridStep, "Horizontal Grid Step Size in dB."); this.udDisplayGridStep.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udDisplayGridStep.ValueChanged += new System.EventHandler(this.udDisplayGridStep_ValueChanged); this.udDisplayGridStep.LostFocus += new System.EventHandler(this.udDisplayGridStep_LostFocus); // // udDisplayGridMin // this.udDisplayGridMin.Increment = new decimal(new int[] { 5, 0, 0, 0}); this.udDisplayGridMin.Location = new System.Drawing.Point(48, 37); this.udDisplayGridMin.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayGridMin.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayGridMin.Name = "udDisplayGridMin"; this.udDisplayGridMin.Size = new System.Drawing.Size(56, 20); this.udDisplayGridMin.TabIndex = 24; this.toolTip1.SetToolTip(this.udDisplayGridMin, "Signal Level at bottom of display in dB."); this.udDisplayGridMin.Value = new decimal(new int[] { 150, 0, 0, -2147483648}); this.udDisplayGridMin.ValueChanged += new System.EventHandler(this.udDisplayGridMin_ValueChanged); this.udDisplayGridMin.LostFocus += new System.EventHandler(this.udDisplayGridMin_LostFocus); // // udDisplayGridMax // this.udDisplayGridMax.Increment = new decimal(new int[] { 5, 0, 0, 0}); this.udDisplayGridMax.Location = new System.Drawing.Point(48, 13); this.udDisplayGridMax.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDisplayGridMax.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayGridMax.Name = "udDisplayGridMax"; this.udDisplayGridMax.Size = new System.Drawing.Size(56, 20); this.udDisplayGridMax.TabIndex = 23; this.toolTip1.SetToolTip(this.udDisplayGridMax, "Signal level at top of display in dB."); this.udDisplayGridMax.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDisplayGridMax.ValueChanged += new System.EventHandler(this.udDisplayGridMax_ValueChanged); this.udDisplayGridMax.LostFocus += new System.EventHandler(this.udDisplayGridMax_LostFocus); // // comboDSPBufSizePhone // this.comboDSPBufSizePhone.DisplayMember = "2048"; this.comboDSPBufSizePhone.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPBufSizePhone.DropDownWidth = 64; this.comboDSPBufSizePhone.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPBufSizePhone.Location = new System.Drawing.Point(74, 26); this.comboDSPBufSizePhone.Name = "comboDSPBufSizePhone"; this.comboDSPBufSizePhone.Size = new System.Drawing.Size(64, 21); this.comboDSPBufSizePhone.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPBufSizePhone, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPBufSizePhone.ValueMember = "1024"; this.comboDSPBufSizePhone.SelectedIndexChanged += new System.EventHandler(this.comboDSPBufSizePhone_SelectedIndexChanged); // // udDSPNB // this.udDSPNB.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB.Location = new System.Drawing.Point(64, 24); this.udDSPNB.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udDSPNB.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB.Name = "udDSPNB"; this.udDSPNB.Size = new System.Drawing.Size(40, 20); this.udDSPNB.TabIndex = 0; this.toolTip1.SetToolTip(this.udDSPNB, "Controls the detection threshold for impulse noise. "); this.udDSPNB.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udDSPNB.ValueChanged += new System.EventHandler(this.udDSPNB_ValueChanged); this.udDSPNB.LostFocus += new System.EventHandler(this.udDSPNB_LostFocus); // // udLMSNRgain // this.udLMSNRgain.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRgain.Location = new System.Drawing.Point(56, 74); this.udLMSNRgain.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udLMSNRgain.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRgain.Name = "udLMSNRgain"; this.udLMSNRgain.Size = new System.Drawing.Size(48, 20); this.udLMSNRgain.TabIndex = 7; this.toolTip1.SetToolTip(this.udLMSNRgain, "Determines the adaptation rate of the filter."); this.udLMSNRgain.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udLMSNRgain.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); this.udLMSNRgain.LostFocus += new System.EventHandler(this.udLMSNRgain_LostFocus); // // udLMSNRdelay // this.udLMSNRdelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRdelay.Location = new System.Drawing.Point(56, 49); this.udLMSNRdelay.Maximum = new decimal(new int[] { 127, 0, 0, 0}); this.udLMSNRdelay.Minimum = new decimal(new int[] { 16, 0, 0, 0}); this.udLMSNRdelay.Name = "udLMSNRdelay"; this.udLMSNRdelay.Size = new System.Drawing.Size(48, 20); this.udLMSNRdelay.TabIndex = 6; this.toolTip1.SetToolTip(this.udLMSNRdelay, "Determines how far back you look in the signal before you begin to compute a cohe" + "rent signal enhancement filter. "); this.udLMSNRdelay.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udLMSNRdelay.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); this.udLMSNRdelay.LostFocus += new System.EventHandler(this.udLMSNRdelay_LostFocus); // // udLMSNRtaps // this.udLMSNRtaps.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRtaps.Location = new System.Drawing.Point(56, 24); this.udLMSNRtaps.Maximum = new decimal(new int[] { 127, 0, 0, 0}); this.udLMSNRtaps.Minimum = new decimal(new int[] { 31, 0, 0, 0}); this.udLMSNRtaps.Name = "udLMSNRtaps"; this.udLMSNRtaps.Size = new System.Drawing.Size(48, 20); this.udLMSNRtaps.TabIndex = 5; this.toolTip1.SetToolTip(this.udLMSNRtaps, "Determines the length of the NR computed filter. "); this.udLMSNRtaps.Value = new decimal(new int[] { 65, 0, 0, 0}); this.udLMSNRtaps.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); this.udLMSNRtaps.LostFocus += new System.EventHandler(this.udLMSNRtaps_LostFocus); // // udLMSANFgain // this.udLMSANFgain.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFgain.Location = new System.Drawing.Point(56, 74); this.udLMSANFgain.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udLMSANFgain.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFgain.Name = "udLMSANFgain"; this.udLMSANFgain.Size = new System.Drawing.Size(48, 20); this.udLMSANFgain.TabIndex = 3; this.toolTip1.SetToolTip(this.udLMSANFgain, "Determines the adaptation rate of the filter."); this.udLMSANFgain.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udLMSANFgain.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); this.udLMSANFgain.LostFocus += new System.EventHandler(this.udLMSANFgain_LostFocus); // // udLMSANFdelay // this.udLMSANFdelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFdelay.Location = new System.Drawing.Point(56, 49); this.udLMSANFdelay.Maximum = new decimal(new int[] { 127, 0, 0, 0}); this.udLMSANFdelay.Minimum = new decimal(new int[] { 16, 0, 0, 0}); this.udLMSANFdelay.Name = "udLMSANFdelay"; this.udLMSANFdelay.Size = new System.Drawing.Size(48, 20); this.udLMSANFdelay.TabIndex = 2; this.toolTip1.SetToolTip(this.udLMSANFdelay, "Determines how far back you look in the signal before you begin to compute a canc" + "ellation filter"); this.udLMSANFdelay.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udLMSANFdelay.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); this.udLMSANFdelay.LostFocus += new System.EventHandler(this.udLMSANFdelay_LostFocus); // // udLMSANFtaps // this.udLMSANFtaps.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFtaps.Location = new System.Drawing.Point(56, 24); this.udLMSANFtaps.Maximum = new decimal(new int[] { 127, 0, 0, 0}); this.udLMSANFtaps.Minimum = new decimal(new int[] { 31, 0, 0, 0}); this.udLMSANFtaps.Name = "udLMSANFtaps"; this.udLMSANFtaps.Size = new System.Drawing.Size(48, 20); this.udLMSANFtaps.TabIndex = 1; this.toolTip1.SetToolTip(this.udLMSANFtaps, "Determines the length of the computed notch filter."); this.udLMSANFtaps.Value = new decimal(new int[] { 65, 0, 0, 0}); this.udLMSANFtaps.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); this.udLMSANFtaps.LostFocus += new System.EventHandler(this.udLMSANFtaps_LostFocus); // // comboDSPWindow // this.comboDSPWindow.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPWindow.DropDownWidth = 88; this.comboDSPWindow.Location = new System.Drawing.Point(16, 24); this.comboDSPWindow.Name = "comboDSPWindow"; this.comboDSPWindow.Size = new System.Drawing.Size(88, 21); this.comboDSPWindow.TabIndex = 0; this.toolTip1.SetToolTip(this.comboDSPWindow, "Selects the DSP windowing function that will be applied to the power spectrum in " + "the main display when in Spectrum, Panadapter, and Waterfall modes. "); this.comboDSPWindow.SelectedIndexChanged += new System.EventHandler(this.comboDSPWindow_SelectedIndexChanged); // // udDSPNB2 // this.udDSPNB2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB2.Location = new System.Drawing.Point(64, 24); this.udDSPNB2.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udDSPNB2.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB2.Name = "udDSPNB2"; this.udDSPNB2.Size = new System.Drawing.Size(40, 20); this.udDSPNB2.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPNB2, "Controls the detection threshold for a pulse. "); this.udDSPNB2.Value = new decimal(new int[] { 15, 0, 0, 0}); this.udDSPNB2.ValueChanged += new System.EventHandler(this.udDSPNB2_ValueChanged); this.udDSPNB2.LostFocus += new System.EventHandler(this.udDSPNB2_LostFocus); // // btnTXCalibrateAll // this.btnTXCalibrateAll.Location = new System.Drawing.Point(131, 175); this.btnTXCalibrateAll.Name = "btnTXCalibrateAll"; this.btnTXCalibrateAll.Size = new System.Drawing.Size(88, 30); this.btnTXCalibrateAll.TabIndex = 40; this.btnTXCalibrateAll.Text = "Calibrate All"; this.toolTip1.SetToolTip(this.btnTXCalibrateAll, "Save Phase and Gain into database for all frequency!"); this.btnTXCalibrateAll.UseVisualStyleBackColor = true; this.btnTXCalibrateAll.Click += new System.EventHandler(this.btnTXCalibrateAll_Click); // // btnTXClearBandCalibration // this.btnTXClearBandCalibration.Location = new System.Drawing.Point(19, 220); this.btnTXClearBandCalibration.Name = "btnTXClearBandCalibration"; this.btnTXClearBandCalibration.Size = new System.Drawing.Size(88, 30); this.btnTXClearBandCalibration.TabIndex = 39; this.btnTXClearBandCalibration.Text = "Reset band"; this.toolTip1.SetToolTip(this.btnTXClearBandCalibration, "This command will erase all Phase and Gain data for current band from database!"); this.btnTXClearBandCalibration.UseVisualStyleBackColor = true; this.btnTXClearBandCalibration.Click += new System.EventHandler(this.btnTXClearBandCalibration_Click); // // btnTXCalibrateBand // this.btnTXCalibrateBand.Location = new System.Drawing.Point(19, 175); this.btnTXCalibrateBand.Name = "btnTXCalibrateBand"; this.btnTXCalibrateBand.Size = new System.Drawing.Size(88, 30); this.btnTXCalibrateBand.TabIndex = 38; this.btnTXCalibrateBand.Text = "Calibrate band"; this.toolTip1.SetToolTip(this.btnTXCalibrateBand, "Save Phase and Gain into database for current band!"); this.btnTXCalibrateBand.UseVisualStyleBackColor = true; this.btnTXCalibrateBand.Click += new System.EventHandler(this.btnTXCalibrateBand_Click); // // btnTXCallibrateClear // this.btnTXCallibrateClear.Location = new System.Drawing.Point(131, 220); this.btnTXCallibrateClear.Name = "btnTXCallibrateClear"; this.btnTXCallibrateClear.Size = new System.Drawing.Size(88, 30); this.btnTXCallibrateClear.TabIndex = 18; this.btnTXCallibrateClear.Text = "Reset all data"; this.toolTip1.SetToolTip(this.btnTXCallibrateClear, "This command will erase all Phase and Gain data from database!"); this.btnTXCallibrateClear.UseVisualStyleBackColor = true; this.btnTXCallibrateClear.Click += new System.EventHandler(this.btnTXCallibrateClear_Click); // // checkboxTXImagCal // this.checkboxTXImagCal.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.checkboxTXImagCal.Image = null; this.checkboxTXImagCal.Location = new System.Drawing.Point(48, 136); this.checkboxTXImagCal.Name = "checkboxTXImagCal"; this.checkboxTXImagCal.Size = new System.Drawing.Size(136, 16); this.checkboxTXImagCal.TabIndex = 37; this.checkboxTXImagCal.Text = "Enable TX Imag Tone"; this.toolTip1.SetToolTip(this.checkboxTXImagCal, "Check this box while in MOX on USB to calibrate the Transmit Rejection using the " + "controls above."); this.checkboxTXImagCal.CheckedChanged += new System.EventHandler(this.chkTXImagCal_CheckedChanged); // // udDSPImageGainTX // this.udDSPImageGainTX.DecimalPlaces = 2; this.udDSPImageGainTX.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImageGainTX.Location = new System.Drawing.Point(16, 91); this.udDSPImageGainTX.Maximum = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPImageGainTX.Minimum = new decimal(new int[] { 500, 0, 0, -2147483648}); this.udDSPImageGainTX.Name = "udDSPImageGainTX"; this.udDSPImageGainTX.Size = new System.Drawing.Size(56, 20); this.udDSPImageGainTX.TabIndex = 8; this.udDSPImageGainTX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udDSPImageGainTX, "Sets the amplitude/gain offset between the I and Q channels. "); this.udDSPImageGainTX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPImageGainTX.ValueChanged += new System.EventHandler(this.udDSPImageGainTX_ValueChanged); this.udDSPImageGainTX.LostFocus += new System.EventHandler(this.udDSPImageGainTX_LostFocus); // // udDSPImagePhaseTX // this.udDSPImagePhaseTX.DecimalPlaces = 2; this.udDSPImagePhaseTX.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImagePhaseTX.Location = new System.Drawing.Point(16, 40); this.udDSPImagePhaseTX.Maximum = new decimal(new int[] { 400, 0, 0, 0}); this.udDSPImagePhaseTX.Minimum = new decimal(new int[] { 400, 0, 0, -2147483648}); this.udDSPImagePhaseTX.Name = "udDSPImagePhaseTX"; this.udDSPImagePhaseTX.Size = new System.Drawing.Size(56, 20); this.udDSPImagePhaseTX.TabIndex = 7; this.udDSPImagePhaseTX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udDSPImagePhaseTX, "Sets the phase offset between the I and Q channels. "); this.udDSPImagePhaseTX.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPImagePhaseTX.ValueChanged += new System.EventHandler(this.udDSPImagePhaseTX_ValueChanged); this.udDSPImagePhaseTX.LostFocus += new System.EventHandler(this.udDSPImagePhaseTX_LostFocus); // // tbDSPImagePhaseTX // this.tbDSPImagePhaseTX.LargeChange = 1; this.tbDSPImagePhaseTX.Location = new System.Drawing.Point(72, 24); this.tbDSPImagePhaseTX.Maximum = 400; this.tbDSPImagePhaseTX.Minimum = -400; this.tbDSPImagePhaseTX.Name = "tbDSPImagePhaseTX"; this.tbDSPImagePhaseTX.Size = new System.Drawing.Size(160, 45); this.tbDSPImagePhaseTX.TabIndex = 3; this.tbDSPImagePhaseTX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImagePhaseTX, "Sets the phase offset between the I and Q channels. "); this.tbDSPImagePhaseTX.Scroll += new System.EventHandler(this.tbDSPImagePhaseTX_Scroll); // // tbDSPImageGainTX // this.tbDSPImageGainTX.LargeChange = 1; this.tbDSPImageGainTX.Location = new System.Drawing.Point(72, 75); this.tbDSPImageGainTX.Maximum = 500; this.tbDSPImageGainTX.Minimum = -500; this.tbDSPImageGainTX.Name = "tbDSPImageGainTX"; this.tbDSPImageGainTX.Size = new System.Drawing.Size(160, 45); this.tbDSPImageGainTX.TabIndex = 4; this.tbDSPImageGainTX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImageGainTX, "Sets the amplitude/gain offset between the I and Q channels. "); this.tbDSPImageGainTX.Scroll += new System.EventHandler(this.tbDSPImageGainTX_Scroll); // // comboKeyerConnDASHLine // this.comboKeyerConnDASHLine.DisplayMember = "None"; this.comboKeyerConnDASHLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnDASHLine.DropDownWidth = 64; this.comboKeyerConnDASHLine.Items.AddRange(new object[] { "None", "DSR", "CTS", "DCD"}); this.comboKeyerConnDASHLine.Location = new System.Drawing.Point(61, 87); this.comboKeyerConnDASHLine.Name = "comboKeyerConnDASHLine"; this.comboKeyerConnDASHLine.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnDASHLine.TabIndex = 51; this.toolTip1.SetToolTip(this.comboKeyerConnDASHLine, "Sets the COM port line that triggers the tone on the DASH."); this.comboKeyerConnDASHLine.ValueMember = "None"; this.comboKeyerConnDASHLine.Visible = false; this.comboKeyerConnDASHLine.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnDASHLine_SelectedIndexChanged); // // comboKeyerConnSecondary // this.comboKeyerConnSecondary.DisplayMember = "None"; this.comboKeyerConnSecondary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnSecondary.DropDownWidth = 64; this.comboKeyerConnSecondary.Items.AddRange(new object[] { "None"}); this.comboKeyerConnSecondary.Location = new System.Drawing.Point(61, 25); this.comboKeyerConnSecondary.Name = "comboKeyerConnSecondary"; this.comboKeyerConnSecondary.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnSecondary.TabIndex = 53; this.toolTip1.SetToolTip(this.comboKeyerConnSecondary, "Sets Keyer Input COM port. This can be an external keyer or a virtual COM port b" + "eing driven by a third party program."); this.comboKeyerConnSecondary.ValueMember = "None"; this.comboKeyerConnSecondary.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnSecondary_SelectedIndexChanged); // // comboKeyerConnDOTLine // this.comboKeyerConnDOTLine.DisplayMember = "None"; this.comboKeyerConnDOTLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnDOTLine.DropDownWidth = 64; this.comboKeyerConnDOTLine.Items.AddRange(new object[] { "None", "DSR", "CTS", "DCD"}); this.comboKeyerConnDOTLine.Location = new System.Drawing.Point(61, 56); this.comboKeyerConnDOTLine.Name = "comboKeyerConnDOTLine"; this.comboKeyerConnDOTLine.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnDOTLine.TabIndex = 49; this.toolTip1.SetToolTip(this.comboKeyerConnDOTLine, "Sets the line on the Keyer Port above that triggers DOT."); this.comboKeyerConnDOTLine.ValueMember = "None"; this.comboKeyerConnDOTLine.Visible = false; this.comboKeyerConnDOTLine.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnDOTLine_SelectedIndexChanged); // // udDSPCWPitch // this.udDSPCWPitch.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPCWPitch.Location = new System.Drawing.Point(40, 24); this.udDSPCWPitch.Maximum = new decimal(new int[] { 2250, 0, 0, 0}); this.udDSPCWPitch.Minimum = new decimal(new int[] { 200, 0, 0, 0}); this.udDSPCWPitch.Name = "udDSPCWPitch"; this.udDSPCWPitch.Size = new System.Drawing.Size(48, 20); this.udDSPCWPitch.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPCWPitch, "Selects the preferred CW tone frequency."); this.udDSPCWPitch.Value = new decimal(new int[] { 600, 0, 0, 0}); this.udDSPCWPitch.ValueChanged += new System.EventHandler(this.udDSPCWPitch_ValueChanged); this.udDSPCWPitch.LostFocus += new System.EventHandler(this.udDSPCWPitch_LostFocus); // // chkCWKeyerMode // this.chkCWKeyerMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWKeyerMode.Image = null; this.chkCWKeyerMode.Location = new System.Drawing.Point(16, 114); this.chkCWKeyerMode.Name = "chkCWKeyerMode"; this.chkCWKeyerMode.Size = new System.Drawing.Size(96, 16); this.chkCWKeyerMode.TabIndex = 40; this.chkCWKeyerMode.Text = "Mode B"; this.toolTip1.SetToolTip(this.chkCWKeyerMode, "Set Keyer Mode"); this.chkCWKeyerMode.CheckedChanged += new System.EventHandler(this.chkCWKeyerMode_CheckedChanged); // // chkHiPerfKeyer // this.chkHiPerfKeyer.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkHiPerfKeyer.Image = null; this.chkHiPerfKeyer.Location = new System.Drawing.Point(16, 84); this.chkHiPerfKeyer.Name = "chkHiPerfKeyer"; this.chkHiPerfKeyer.Size = new System.Drawing.Size(96, 16); this.chkHiPerfKeyer.TabIndex = 39; this.chkHiPerfKeyer.Text = "High Res."; this.toolTip1.SetToolTip(this.chkHiPerfKeyer, "Sets High Res CW keyer clock -- only use with P4."); this.chkHiPerfKeyer.CheckedChanged += new System.EventHandler(this.chkHiPerfKeyer_CheckedChanged); // // chkCWKeyerRevPdl // this.chkCWKeyerRevPdl.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWKeyerRevPdl.Image = null; this.chkCWKeyerRevPdl.Location = new System.Drawing.Point(16, 54); this.chkCWKeyerRevPdl.Name = "chkCWKeyerRevPdl"; this.chkCWKeyerRevPdl.Size = new System.Drawing.Size(88, 16); this.chkCWKeyerRevPdl.TabIndex = 38; this.chkCWKeyerRevPdl.Text = "Rev. Paddle"; this.toolTip1.SetToolTip(this.chkCWKeyerRevPdl, "Reverses the input paddle -- Dot becomes Dash and vice versa."); this.chkCWKeyerRevPdl.CheckedChanged += new System.EventHandler(this.chkCWKeyerRevPdl_CheckedChanged); // // chkCWKeyerIambic // this.chkCWKeyerIambic.Checked = true; this.chkCWKeyerIambic.CheckState = System.Windows.Forms.CheckState.Checked; this.chkCWKeyerIambic.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkCWKeyerIambic.Image = null; this.chkCWKeyerIambic.Location = new System.Drawing.Point(16, 24); this.chkCWKeyerIambic.Name = "chkCWKeyerIambic"; this.chkCWKeyerIambic.Size = new System.Drawing.Size(64, 16); this.chkCWKeyerIambic.TabIndex = 36; this.chkCWKeyerIambic.Text = "Iambic"; this.toolTip1.SetToolTip(this.chkCWKeyerIambic, "Iambic or Straight Key?"); this.chkCWKeyerIambic.CheckedChanged += new System.EventHandler(this.chkCWKeyerIambic_CheckedChanged); // // udCWKeyerWeight // this.udCWKeyerWeight.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerWeight.Location = new System.Drawing.Point(80, 24); this.udCWKeyerWeight.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udCWKeyerWeight.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCWKeyerWeight.Name = "udCWKeyerWeight"; this.udCWKeyerWeight.Size = new System.Drawing.Size(40, 20); this.udCWKeyerWeight.TabIndex = 40; this.toolTip1.SetToolTip(this.udCWKeyerWeight, "Sets the weight of the tones when sending Iambic."); this.udCWKeyerWeight.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udCWKeyerWeight.ValueChanged += new System.EventHandler(this.udCWKeyerWeight_ValueChanged); this.udCWKeyerWeight.LostFocus += new System.EventHandler(this.udCWKeyerWeight_LostFocus); // // udCWKeyerRise // this.udCWKeyerRise.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerRise.Location = new System.Drawing.Point(80, 47); this.udCWKeyerRise.Maximum = new decimal(new int[] { 25, 0, 0, 0}); this.udCWKeyerRise.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCWKeyerRise.Name = "udCWKeyerRise"; this.udCWKeyerRise.Size = new System.Drawing.Size(40, 20); this.udCWKeyerRise.TabIndex = 40; this.toolTip1.SetToolTip(this.udCWKeyerRise, "The rising edge of the tone."); this.udCWKeyerRise.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udCWKeyerRise.ValueChanged += new System.EventHandler(this.udCWKeyerRise_ValueChanged); this.udCWKeyerRise.LostFocus += new System.EventHandler(this.udCWKeyerRise_LostFocus); // // chkDSPKeyerSemiBreakInEnabled // this.chkDSPKeyerSemiBreakInEnabled.Checked = true; this.chkDSPKeyerSemiBreakInEnabled.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDSPKeyerSemiBreakInEnabled.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.chkDSPKeyerSemiBreakInEnabled.Image = null; this.chkDSPKeyerSemiBreakInEnabled.Location = new System.Drawing.Point(16, 24); this.chkDSPKeyerSemiBreakInEnabled.Name = "chkDSPKeyerSemiBreakInEnabled"; this.chkDSPKeyerSemiBreakInEnabled.Size = new System.Drawing.Size(80, 16); this.chkDSPKeyerSemiBreakInEnabled.TabIndex = 36; this.chkDSPKeyerSemiBreakInEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkDSPKeyerSemiBreakInEnabled, "Enables Semi Break In operation."); this.chkDSPKeyerSemiBreakInEnabled.CheckedChanged += new System.EventHandler(this.chkDSPKeyerSemiBreakInEnabled_CheckedChanged); // // udCWKeyerSemiBreakInDelay // this.udCWKeyerSemiBreakInDelay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerSemiBreakInDelay.Location = new System.Drawing.Point(72, 48); this.udCWKeyerSemiBreakInDelay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udCWKeyerSemiBreakInDelay.Minimum = new decimal(new int[] { 150, 0, 0, 0}); this.udCWKeyerSemiBreakInDelay.Name = "udCWKeyerSemiBreakInDelay"; this.udCWKeyerSemiBreakInDelay.Size = new System.Drawing.Size(48, 20); this.udCWKeyerSemiBreakInDelay.TabIndex = 35; this.toolTip1.SetToolTip(this.udCWKeyerSemiBreakInDelay, "Amount of time to stay in TX after the last detected CW signal."); this.udCWKeyerSemiBreakInDelay.Value = new decimal(new int[] { 400, 0, 0, 0}); this.udCWKeyerSemiBreakInDelay.ValueChanged += new System.EventHandler(this.udCWKeyerSemiBreakInDelay_ValueChanged); this.udCWKeyerSemiBreakInDelay.LostFocus += new System.EventHandler(this.udCWKeyerSemiBreakInDelay_LostFocus); // // chkDSPLevelerEnabled // this.chkDSPLevelerEnabled.Checked = true; this.chkDSPLevelerEnabled.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDSPLevelerEnabled.Image = null; this.chkDSPLevelerEnabled.Location = new System.Drawing.Point(16, 24); this.chkDSPLevelerEnabled.Name = "chkDSPLevelerEnabled"; this.chkDSPLevelerEnabled.Size = new System.Drawing.Size(104, 16); this.chkDSPLevelerEnabled.TabIndex = 42; this.chkDSPLevelerEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkDSPLevelerEnabled, "Check this box to Enabled (activate) the leveler feature."); this.chkDSPLevelerEnabled.CheckedChanged += new System.EventHandler(this.chkDSPLevelerEnabled_CheckedChanged); // // udDSPLevelerThreshold // this.udDSPLevelerThreshold.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerThreshold.Location = new System.Drawing.Point(88, 72); this.udDSPLevelerThreshold.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udDSPLevelerThreshold.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerThreshold.Name = "udDSPLevelerThreshold"; this.udDSPLevelerThreshold.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerThreshold.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPLevelerThreshold, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPLevelerThreshold.Value = new decimal(new int[] { 15, 0, 0, 0}); this.udDSPLevelerThreshold.ValueChanged += new System.EventHandler(this.udDSPLevelerThreshold_ValueChanged); this.udDSPLevelerThreshold.LostFocus += new System.EventHandler(this.udDSPLevelerThreshold_LostFocus); // // udDSPALCThreshold // this.udDSPALCThreshold.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCThreshold.Location = new System.Drawing.Point(88, 48); this.udDSPALCThreshold.Maximum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCThreshold.Minimum = new decimal(new int[] { 120, 0, 0, -2147483648}); this.udDSPALCThreshold.Name = "udDSPALCThreshold"; this.udDSPALCThreshold.Size = new System.Drawing.Size(48, 20); this.udDSPALCThreshold.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPALCThreshold, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPALCThreshold.Value = new decimal(new int[] { 120, 0, 0, -2147483648}); this.udDSPALCThreshold.Visible = false; this.udDSPALCThreshold.ValueChanged += new System.EventHandler(this.udDSPALCThreshold_ValueChanged); this.udDSPALCThreshold.LostFocus += new System.EventHandler(this.udDSPALCThreshold_LostFocus); // // udDSPAGCMaxGaindB // this.udDSPAGCMaxGaindB.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCMaxGaindB.Location = new System.Drawing.Point(104, 48); this.udDSPAGCMaxGaindB.Maximum = new decimal(new int[] { 120, 0, 0, 0}); this.udDSPAGCMaxGaindB.Minimum = new decimal(new int[] { 20, 0, 0, -2147483648}); this.udDSPAGCMaxGaindB.Name = "udDSPAGCMaxGaindB"; this.udDSPAGCMaxGaindB.Size = new System.Drawing.Size(40, 20); this.udDSPAGCMaxGaindB.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPAGCMaxGaindB, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPAGCMaxGaindB.Value = new decimal(new int[] { 90, 0, 0, 0}); this.udDSPAGCMaxGaindB.ValueChanged += new System.EventHandler(this.udDSPAGCMaxGaindB_ValueChanged); this.udDSPAGCMaxGaindB.LostFocus += new System.EventHandler(this.udDSPAGCMaxGaindB_LostFocus); // // udDSPAGCFixedGaindB // this.udDSPAGCFixedGaindB.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCFixedGaindB.Location = new System.Drawing.Point(104, 200); this.udDSPAGCFixedGaindB.Maximum = new decimal(new int[] { 120, 0, 0, 0}); this.udDSPAGCFixedGaindB.Minimum = new decimal(new int[] { 20, 0, 0, -2147483648}); this.udDSPAGCFixedGaindB.Name = "udDSPAGCFixedGaindB"; this.udDSPAGCFixedGaindB.Size = new System.Drawing.Size(40, 20); this.udDSPAGCFixedGaindB.TabIndex = 4; this.toolTip1.SetToolTip(this.udDSPAGCFixedGaindB, "When you choose Fixed AGC on the front panel, this number is used to multiply the" + " signal."); this.udDSPAGCFixedGaindB.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udDSPAGCFixedGaindB.ValueChanged += new System.EventHandler(this.udDSPAGCFixedGaindB_ValueChanged); this.udDSPAGCFixedGaindB.LostFocus += new System.EventHandler(this.udDSPAGCFixedGaindB_LostFocus); // // udTXAMCarrierLevel // this.udTXAMCarrierLevel.DecimalPlaces = 1; this.udTXAMCarrierLevel.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udTXAMCarrierLevel.Location = new System.Drawing.Point(80, 24); this.udTXAMCarrierLevel.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTXAMCarrierLevel.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXAMCarrierLevel.Name = "udTXAMCarrierLevel"; this.udTXAMCarrierLevel.Size = new System.Drawing.Size(56, 20); this.udTXAMCarrierLevel.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXAMCarrierLevel, "Adjusts the carrier level on AM (pecentage of full 1/4 carrier) ."); this.udTXAMCarrierLevel.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udTXAMCarrierLevel.ValueChanged += new System.EventHandler(this.udTXAMCarrierLevel_ValueChanged); this.udTXAMCarrierLevel.LostFocus += new System.EventHandler(this.udTXAMCarrierLevel_LostFocus); // // udTXAF // this.udTXAF.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXAF.Location = new System.Drawing.Point(56, 19); this.udTXAF.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTXAF.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXAF.Name = "udTXAF"; this.udTXAF.Size = new System.Drawing.Size(48, 20); this.udTXAF.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXAF, "AF value to use when in TX mode (with the Delta 44 only)."); this.udTXAF.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udTXAF.ValueChanged += new System.EventHandler(this.udTXAF_ValueChanged); this.udTXAF.LostFocus += new System.EventHandler(this.udTXAF_LostFocus); // // udTXVOXHangTime // this.udTXVOXHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXVOXHangTime.Location = new System.Drawing.Point(72, 62); this.udTXVOXHangTime.Maximum = new decimal(new int[] { 10000, 0, 0, 0}); this.udTXVOXHangTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXVOXHangTime.Name = "udTXVOXHangTime"; this.udTXVOXHangTime.Size = new System.Drawing.Size(56, 20); this.udTXVOXHangTime.TabIndex = 51; this.toolTip1.SetToolTip(this.udTXVOXHangTime, "The amount of time in ms to stay in TX mode after the last signal above the thres" + "hold."); this.udTXVOXHangTime.Value = new decimal(new int[] { 250, 0, 0, 0}); this.udTXVOXHangTime.ValueChanged += new System.EventHandler(this.udTXVOXHangTime_ValueChanged); this.udTXVOXHangTime.LostFocus += new System.EventHandler(this.udTXVOXHangTime_LostFocus); // // chkTXVOXEnabled // this.chkTXVOXEnabled.Image = null; this.chkTXVOXEnabled.Location = new System.Drawing.Point(16, 14); this.chkTXVOXEnabled.Name = "chkTXVOXEnabled"; this.chkTXVOXEnabled.Size = new System.Drawing.Size(72, 16); this.chkTXVOXEnabled.TabIndex = 50; this.chkTXVOXEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkTXVOXEnabled, "Enables VOX operation using the parameters below."); this.chkTXVOXEnabled.CheckedChanged += new System.EventHandler(this.chkTXVOXEnabled_CheckedChanged); // // udTXVOXThreshold // this.udTXVOXThreshold.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXVOXThreshold.Location = new System.Drawing.Point(72, 38); this.udTXVOXThreshold.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udTXVOXThreshold.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXVOXThreshold.Name = "udTXVOXThreshold"; this.udTXVOXThreshold.Size = new System.Drawing.Size(48, 20); this.udTXVOXThreshold.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXVOXThreshold, "Numeric sample value above which triggers the VOX circuit."); this.udTXVOXThreshold.Value = new decimal(new int[] { 90, 0, 0, 0}); this.udTXVOXThreshold.ValueChanged += new System.EventHandler(this.udTXVOXThreshold_ValueChanged); this.udTXVOXThreshold.LostFocus += new System.EventHandler(this.udTXVOXThreshold_LostFocus); // // chkTXNoiseGateEnabled // this.chkTXNoiseGateEnabled.Image = null; this.chkTXNoiseGateEnabled.Location = new System.Drawing.Point(16, 24); this.chkTXNoiseGateEnabled.Name = "chkTXNoiseGateEnabled"; this.chkTXNoiseGateEnabled.Size = new System.Drawing.Size(72, 16); this.chkTXNoiseGateEnabled.TabIndex = 49; this.chkTXNoiseGateEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkTXNoiseGateEnabled, "Enables the noise gate to operate using the threshold set below."); this.chkTXNoiseGateEnabled.CheckedChanged += new System.EventHandler(this.chkTXNoiseGateEnabled_CheckedChanged); // // udTXNoiseGate // this.udTXNoiseGate.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXNoiseGate.Location = new System.Drawing.Point(88, 48); this.udTXNoiseGate.Maximum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXNoiseGate.Minimum = new decimal(new int[] { 160, 0, 0, -2147483648}); this.udTXNoiseGate.Name = "udTXNoiseGate"; this.udTXNoiseGate.Size = new System.Drawing.Size(48, 20); this.udTXNoiseGate.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXNoiseGate, "Signal level in dB above which to transmit audio."); this.udTXNoiseGate.Value = new decimal(new int[] { 40, 0, 0, -2147483648}); this.udTXNoiseGate.ValueChanged += new System.EventHandler(this.udTXNoiseGate_ValueChanged); this.udTXNoiseGate.LostFocus += new System.EventHandler(this.udTXNoiseGate_LostFocus); // // btnTXProfileDelete // this.btnTXProfileDelete.Location = new System.Drawing.Point(72, 48); this.btnTXProfileDelete.Name = "btnTXProfileDelete"; this.btnTXProfileDelete.Size = new System.Drawing.Size(48, 21); this.btnTXProfileDelete.TabIndex = 2; this.btnTXProfileDelete.Text = "Delete"; this.toolTip1.SetToolTip(this.btnTXProfileDelete, "Click to delete the currently selected TX Profile."); this.btnTXProfileDelete.Click += new System.EventHandler(this.btnTXProfileDelete_Click); // // btnTXProfileSave // this.btnTXProfileSave.Location = new System.Drawing.Point(16, 48); this.btnTXProfileSave.Name = "btnTXProfileSave"; this.btnTXProfileSave.Size = new System.Drawing.Size(48, 21); this.btnTXProfileSave.TabIndex = 1; this.btnTXProfileSave.Text = "Save"; this.toolTip1.SetToolTip(this.btnTXProfileSave, "Click to save the current settings to a TX Profile."); this.btnTXProfileSave.Click += new System.EventHandler(this.btnTXProfileSave_Click); // // comboTXProfileName // this.comboTXProfileName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboTXProfileName.DropDownWidth = 104; this.comboTXProfileName.Location = new System.Drawing.Point(16, 21); this.comboTXProfileName.Name = "comboTXProfileName"; this.comboTXProfileName.Size = new System.Drawing.Size(104, 21); this.comboTXProfileName.TabIndex = 0; this.toolTip1.SetToolTip(this.comboTXProfileName, "Sets the current Transmit Profile to be used."); this.comboTXProfileName.SelectedIndexChanged += new System.EventHandler(this.comboTXProfileName_SelectedIndexChanged); // // udTXTunePower // this.udTXTunePower.DecimalPlaces = 1; this.udTXTunePower.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udTXTunePower.Location = new System.Drawing.Point(72, 18); this.udTXTunePower.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTXTunePower.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXTunePower.Name = "udTXTunePower"; this.udTXTunePower.Size = new System.Drawing.Size(58, 20); this.udTXTunePower.TabIndex = 4; this.udTXTunePower.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udTXTunePower, "Power used when using the TUN button on the front panel."); this.udTXTunePower.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udTXTunePower.ValueChanged += new System.EventHandler(this.udTransmitTunePower_ValueChanged); this.udTXTunePower.LostFocus += new System.EventHandler(this.udTXTunePower_LostFocus); // // tbTXCompander // this.tbTXCompander.Location = new System.Drawing.Point(20, 128); this.tbTXCompander.Name = "tbTXCompander"; this.tbTXCompander.Size = new System.Drawing.Size(152, 45); this.tbTXCompander.TabIndex = 34; this.toolTip1.SetToolTip(this.tbTXCompander, "Sets the compander value."); this.tbTXCompander.Value = 3; this.tbTXCompander.Scroll += new System.EventHandler(this.tbTXCmpd_Scroll); // // udTXCompander // this.udTXCompander.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXCompander.Location = new System.Drawing.Point(104, 104); this.udTXCompander.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udTXCompander.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXCompander.Name = "udTXCompander"; this.udTXCompander.Size = new System.Drawing.Size(48, 20); this.udTXCompander.TabIndex = 33; this.toolTip1.SetToolTip(this.udTXCompander, "Sets the compander value."); this.udTXCompander.Value = new decimal(new int[] { 3, 0, 0, 0}); this.udTXCompander.ValueChanged += new System.EventHandler(this.udTXCmpd_ValueChanged); this.udTXCompander.LostFocus += new System.EventHandler(this.udTXCompander_LostFocus); // // udTXFFCompression // this.udTXFFCompression.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXFFCompression.Location = new System.Drawing.Point(104, 24); this.udTXFFCompression.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udTXFFCompression.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXFFCompression.Name = "udTXFFCompression"; this.udTXFFCompression.Size = new System.Drawing.Size(48, 20); this.udTXFFCompression.TabIndex = 31; this.toolTip1.SetToolTip(this.udTXFFCompression, "Sets the compression value allowing more average power without raising the peaks." + ""); this.udTXFFCompression.Value = new decimal(new int[] { 3, 0, 0, 0}); this.udTXFFCompression.ValueChanged += new System.EventHandler(this.udTXFFCompression_ValueChanged); this.udTXFFCompression.LostFocus += new System.EventHandler(this.udTXFFCompression_LostFocus); // // tbTXFFCompression // this.tbTXFFCompression.Location = new System.Drawing.Point(24, 48); this.tbTXFFCompression.Maximum = 20; this.tbTXFFCompression.Name = "tbTXFFCompression"; this.tbTXFFCompression.Size = new System.Drawing.Size(152, 45); this.tbTXFFCompression.TabIndex = 21; this.tbTXFFCompression.TickFrequency = 2; this.toolTip1.SetToolTip(this.tbTXFFCompression, "Sets the compression value allowing more average power without raising the peaks." + ""); this.tbTXFFCompression.Value = 3; this.tbTXFFCompression.Scroll += new System.EventHandler(this.tbTXFFCompression_Scroll); // // udTXFilterLow // this.udTXFilterLow.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXFilterLow.Location = new System.Drawing.Point(56, 48); this.udTXFilterLow.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTXFilterLow.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXFilterLow.Name = "udTXFilterLow"; this.udTXFilterLow.Size = new System.Drawing.Size(56, 20); this.udTXFilterLow.TabIndex = 2; this.toolTip1.SetToolTip(this.udTXFilterLow, "Low Frequency TX Filter Cutoff"); this.udTXFilterLow.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udTXFilterLow.ValueChanged += new System.EventHandler(this.udTXFilterLow_ValueChanged); this.udTXFilterLow.LostFocus += new System.EventHandler(this.udTXFilterLow_LostFocus); // // udTXFilterHigh // this.udTXFilterHigh.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTXFilterHigh.Location = new System.Drawing.Point(56, 24); this.udTXFilterHigh.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTXFilterHigh.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTXFilterHigh.Name = "udTXFilterHigh"; this.udTXFilterHigh.Size = new System.Drawing.Size(56, 20); this.udTXFilterHigh.TabIndex = 0; this.toolTip1.SetToolTip(this.udTXFilterHigh, "High Frequency TX Filter Cutoff"); this.udTXFilterHigh.Value = new decimal(new int[] { 2900, 0, 0, 0}); this.udTXFilterHigh.ValueChanged += new System.EventHandler(this.udTXFilterHigh_ValueChanged); this.udTXFilterHigh.LostFocus += new System.EventHandler(this.udTXFilterHigh_LostFocus); // // chkDCBlock // this.chkDCBlock.Image = null; this.chkDCBlock.Location = new System.Drawing.Point(288, 16); this.chkDCBlock.Name = "chkDCBlock"; this.chkDCBlock.Size = new System.Drawing.Size(72, 16); this.chkDCBlock.TabIndex = 48; this.chkDCBlock.Text = "DC Block"; this.toolTip1.SetToolTip(this.chkDCBlock, "Enable this to engage a digital LPF to help eliminate DC garbage caused by some s" + "ound cards."); this.chkDCBlock.CheckedChanged += new System.EventHandler(this.chkDCBlock_CheckedChanged); // // btnPAGainReset // this.btnPAGainReset.Image = null; this.btnPAGainReset.Location = new System.Drawing.Point(201, 266); this.btnPAGainReset.Name = "btnPAGainReset"; this.btnPAGainReset.Size = new System.Drawing.Size(75, 23); this.btnPAGainReset.TabIndex = 21; this.btnPAGainReset.Text = "Reset"; this.toolTip1.SetToolTip(this.btnPAGainReset, "Reset all Gain values to the default 48.0dB"); this.btnPAGainReset.Click += new System.EventHandler(this.btnPAGainReset_Click); // // udPACalPower // this.udPACalPower.DecimalPlaces = 1; this.udPACalPower.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPACalPower.Location = new System.Drawing.Point(464, 254); this.udPACalPower.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udPACalPower.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPACalPower.Name = "udPACalPower"; this.udPACalPower.Size = new System.Drawing.Size(69, 20); this.udPACalPower.TabIndex = 22; this.udPACalPower.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udPACalPower, "The target power used for the PA Calibration."); this.udPACalPower.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udPACalPower.ValueChanged += new System.EventHandler(this.udPACalPower_ValueChanged); this.udPACalPower.LostFocus += new System.EventHandler(this.udPACalPower_LostFocus); // // btnDisplayFont // this.btnDisplayFont.Image = null; this.btnDisplayFont.Location = new System.Drawing.Point(204, 50); this.btnDisplayFont.Name = "btnDisplayFont"; this.btnDisplayFont.Size = new System.Drawing.Size(40, 23); this.btnDisplayFont.TabIndex = 74; this.btnDisplayFont.Text = "Font"; this.toolTip1.SetToolTip(this.btnDisplayFont, "Change font for displaying frequency."); this.btnDisplayFont.UseVisualStyleBackColor = true; this.btnDisplayFont.Click += new System.EventHandler(this.btnDisplayFont_Click); // // lblConsoleClor // this.lblConsoleClor.Image = null; this.lblConsoleClor.Location = new System.Drawing.Point(21, 151); this.lblConsoleClor.Name = "lblConsoleClor"; this.lblConsoleClor.Size = new System.Drawing.Size(81, 21); this.lblConsoleClor.TabIndex = 87; this.lblConsoleClor.Text = "Console color:"; this.toolTip1.SetToolTip(this.lblConsoleClor, "Choose text color on all controls."); // // clrbtnConsoleColor // this.clrbtnConsoleColor.Automatic = "Automatic"; this.clrbtnConsoleColor.Color = System.Drawing.SystemColors.Control; this.clrbtnConsoleColor.ForeColor = System.Drawing.SystemColors.ControlText; this.clrbtnConsoleColor.Image = null; this.clrbtnConsoleColor.Location = new System.Drawing.Point(123, 146); this.clrbtnConsoleColor.MoreColors = "More Colors..."; this.clrbtnConsoleColor.Name = "clrbtnConsoleColor"; this.clrbtnConsoleColor.Size = new System.Drawing.Size(40, 23); this.clrbtnConsoleColor.TabIndex = 86; this.toolTip1.SetToolTip(this.clrbtnConsoleColor, "Change console color."); this.clrbtnConsoleColor.Changed += new System.EventHandler(this.clrbtnConsoleColor_Changed); // // lblMenuFont // this.lblMenuFont.Image = null; this.lblMenuFont.Location = new System.Drawing.Point(21, 113); this.lblMenuFont.Name = "lblMenuFont"; this.lblMenuFont.Size = new System.Drawing.Size(72, 19); this.lblMenuFont.TabIndex = 79; this.lblMenuFont.Text = "Menu font:"; this.toolTip1.SetToolTip(this.lblMenuFont, "Choose main menu font."); // // btnMainMenuFont // this.btnMainMenuFont.Image = null; this.btnMainMenuFont.Location = new System.Drawing.Point(123, 107); this.btnMainMenuFont.Name = "btnMainMenuFont"; this.btnMainMenuFont.Size = new System.Drawing.Size(40, 23); this.btnMainMenuFont.TabIndex = 78; this.btnMainMenuFont.Text = "Font"; this.toolTip1.SetToolTip(this.btnMainMenuFont, "Change font for menu."); this.btnMainMenuFont.UseVisualStyleBackColor = true; this.btnMainMenuFont.Click += new System.EventHandler(this.btnMainMenuFont_Click); // // lblSkinButtonColor // this.lblSkinButtonColor.Image = null; this.lblSkinButtonColor.Location = new System.Drawing.Point(21, 73); this.lblSkinButtonColor.Name = "lblSkinButtonColor"; this.lblSkinButtonColor.Size = new System.Drawing.Size(63, 21); this.lblSkinButtonColor.TabIndex = 82; this.lblSkinButtonColor.Text = "Text color."; this.toolTip1.SetToolTip(this.lblSkinButtonColor, "Choose text color on all controls."); // // clrbtnSkinButtonColor // this.clrbtnSkinButtonColor.Automatic = "Automatic"; this.clrbtnSkinButtonColor.Color = System.Drawing.SystemColors.ControlText; this.clrbtnSkinButtonColor.Image = null; this.clrbtnSkinButtonColor.Location = new System.Drawing.Point(124, 68); this.clrbtnSkinButtonColor.MoreColors = "More Colors..."; this.clrbtnSkinButtonColor.Name = "clrbtnSkinButtonColor"; this.clrbtnSkinButtonColor.Size = new System.Drawing.Size(40, 22); this.clrbtnSkinButtonColor.TabIndex = 82; this.toolTip1.SetToolTip(this.clrbtnSkinButtonColor, "Color for controls text."); this.clrbtnSkinButtonColor.Changed += new System.EventHandler(this.clrbtnSkinButtonColor_Changed); // // comboMeterType // this.comboMeterType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboMeterType.DropDownWidth = 80; this.comboMeterType.Items.AddRange(new object[] { "Original", "Edge", "Analog"}); this.comboMeterType.Location = new System.Drawing.Point(80, 16); this.comboMeterType.Name = "comboMeterType"; this.comboMeterType.Size = new System.Drawing.Size(80, 21); this.comboMeterType.TabIndex = 78; this.toolTip1.SetToolTip(this.comboMeterType, "Changes the appearance of the Multimeter on the front panel."); this.comboMeterType.SelectedIndexChanged += new System.EventHandler(this.comboMeterType_SelectedIndexChanged); // // comboCWXMsg6 // this.comboCWXMsg6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCWXMsg6.DropDownWidth = 56; this.comboCWXMsg6.Location = new System.Drawing.Point(48, 157); this.comboCWXMsg6.Name = "comboCWXMsg6"; this.comboCWXMsg6.Size = new System.Drawing.Size(56, 21); this.comboCWXMsg6.TabIndex = 21; this.toolTip1.SetToolTip(this.comboCWXMsg6, "Increse CW keyer speed."); this.comboCWXMsg6.SelectedIndexChanged += new System.EventHandler(this.comboCWXMsg6_SelectedIndexChanged); // // comboCWXMsg5 // this.comboCWXMsg5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCWXMsg5.DropDownWidth = 56; this.comboCWXMsg5.Location = new System.Drawing.Point(48, 130); this.comboCWXMsg5.Name = "comboCWXMsg5"; this.comboCWXMsg5.Size = new System.Drawing.Size(56, 21); this.comboCWXMsg5.TabIndex = 19; this.toolTip1.SetToolTip(this.comboCWXMsg5, "Increse CW keyer speed."); this.comboCWXMsg5.SelectedIndexChanged += new System.EventHandler(this.comboCWXMsg5_SelectedIndexChanged); // // comboCWXMsg4 // this.comboCWXMsg4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCWXMsg4.DropDownWidth = 56; this.comboCWXMsg4.Location = new System.Drawing.Point(48, 103); this.comboCWXMsg4.Name = "comboCWXMsg4"; this.comboCWXMsg4.Size = new System.Drawing.Size(56, 21); this.comboCWXMsg4.TabIndex = 14; this.toolTip1.SetToolTip(this.comboCWXMsg4, "Increse CW keyer speed."); this.comboCWXMsg4.SelectedIndexChanged += new System.EventHandler(this.comboCWXMsg4_SelectedIndexChanged); // // comboCWXMsg3 // this.comboCWXMsg3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCWXMsg3.DropDownWidth = 56; this.comboCWXMsg3.Location = new System.Drawing.Point(48, 77); this.comboCWXMsg3.Name = "comboCWXMsg3"; this.comboCWXMsg3.Size = new System.Drawing.Size(56, 21); this.comboCWXMsg3.TabIndex = 13; this.toolTip1.SetToolTip(this.comboCWXMsg3, "Increse CW keyer speed."); this.comboCWXMsg3.SelectedIndexChanged += new System.EventHandler(this.comboCWXMsg3_SelectedIndexChanged); // // comboCWXMsg2 // this.comboCWXMsg2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCWXMsg2.DropDownWidth = 56; this.comboCWXMsg2.Location = new System.Drawing.Point(48, 51); this.comboCWXMsg2.Name = "comboCWXMsg2"; this.comboCWXMsg2.Size = new System.Drawing.Size(56, 21); this.comboCWXMsg2.TabIndex = 12; this.toolTip1.SetToolTip(this.comboCWXMsg2, "Increse CW keyer speed."); this.comboCWXMsg2.SelectedIndexChanged += new System.EventHandler(this.comboCWXMsg2_SelectedIndexChanged); // // comboCWXMsg1 // this.comboCWXMsg1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCWXMsg1.DropDownWidth = 56; this.comboCWXMsg1.Location = new System.Drawing.Point(48, 25); this.comboCWXMsg1.Name = "comboCWXMsg1"; this.comboCWXMsg1.Size = new System.Drawing.Size(56, 21); this.comboCWXMsg1.TabIndex = 11; this.toolTip1.SetToolTip(this.comboCWXMsg1, "Increse CW keyer speed."); this.comboCWXMsg1.SelectedIndexChanged += new System.EventHandler(this.comboCWXMsg1_SelectedIndexChanged); // // comboVoiceMsg6 // this.comboVoiceMsg6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboVoiceMsg6.DropDownWidth = 56; this.comboVoiceMsg6.Location = new System.Drawing.Point(48, 157); this.comboVoiceMsg6.Name = "comboVoiceMsg6"; this.comboVoiceMsg6.Size = new System.Drawing.Size(56, 21); this.comboVoiceMsg6.TabIndex = 21; this.toolTip1.SetToolTip(this.comboVoiceMsg6, "Increse CW keyer speed."); this.comboVoiceMsg6.SelectedIndexChanged += new System.EventHandler(this.comboVoiceMsg6_SelectedIndexChanged); // // comboVoiceMsg5 // this.comboVoiceMsg5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboVoiceMsg5.DropDownWidth = 56; this.comboVoiceMsg5.Location = new System.Drawing.Point(48, 130); this.comboVoiceMsg5.Name = "comboVoiceMsg5"; this.comboVoiceMsg5.Size = new System.Drawing.Size(56, 21); this.comboVoiceMsg5.TabIndex = 19; this.toolTip1.SetToolTip(this.comboVoiceMsg5, "Increse CW keyer speed."); this.comboVoiceMsg5.SelectedIndexChanged += new System.EventHandler(this.comboVoiceMsg5_SelectedIndexChanged); // // comboVoiceMsg4 // this.comboVoiceMsg4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboVoiceMsg4.DropDownWidth = 56; this.comboVoiceMsg4.Location = new System.Drawing.Point(48, 103); this.comboVoiceMsg4.Name = "comboVoiceMsg4"; this.comboVoiceMsg4.Size = new System.Drawing.Size(56, 21); this.comboVoiceMsg4.TabIndex = 14; this.toolTip1.SetToolTip(this.comboVoiceMsg4, "Increse CW keyer speed."); this.comboVoiceMsg4.SelectedIndexChanged += new System.EventHandler(this.comboVoiceMsg4_SelectedIndexChanged); // // comboVoiceMsg3 // this.comboVoiceMsg3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboVoiceMsg3.DropDownWidth = 56; this.comboVoiceMsg3.Location = new System.Drawing.Point(48, 77); this.comboVoiceMsg3.Name = "comboVoiceMsg3"; this.comboVoiceMsg3.Size = new System.Drawing.Size(56, 21); this.comboVoiceMsg3.TabIndex = 13; this.toolTip1.SetToolTip(this.comboVoiceMsg3, "Increse CW keyer speed."); this.comboVoiceMsg3.SelectedIndexChanged += new System.EventHandler(this.comboVoiceMsg3_SelectedIndexChanged); // // comboVoiceMsg2 // this.comboVoiceMsg2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboVoiceMsg2.DropDownWidth = 56; this.comboVoiceMsg2.Location = new System.Drawing.Point(48, 51); this.comboVoiceMsg2.Name = "comboVoiceMsg2"; this.comboVoiceMsg2.Size = new System.Drawing.Size(56, 21); this.comboVoiceMsg2.TabIndex = 12; this.toolTip1.SetToolTip(this.comboVoiceMsg2, "Increse CW keyer speed."); this.comboVoiceMsg2.SelectedIndexChanged += new System.EventHandler(this.comboVoiceMsg2_SelectedIndexChanged); // // comboVoiceMsg1 // this.comboVoiceMsg1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboVoiceMsg1.DropDownWidth = 56; this.comboVoiceMsg1.Location = new System.Drawing.Point(48, 25); this.comboVoiceMsg1.Name = "comboVoiceMsg1"; this.comboVoiceMsg1.Size = new System.Drawing.Size(56, 21); this.comboVoiceMsg1.TabIndex = 11; this.toolTip1.SetToolTip(this.comboVoiceMsg1, "Increse CW keyer speed."); this.comboVoiceMsg1.SelectedIndexChanged += new System.EventHandler(this.comboVoiceMsg1_SelectedIndexChanged); // // comboKBCWSpeedUp // this.comboKBCWSpeedUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWSpeedUp.DropDownWidth = 56; this.comboKBCWSpeedUp.Location = new System.Drawing.Point(48, 16); this.comboKBCWSpeedUp.Name = "comboKBCWSpeedUp"; this.comboKBCWSpeedUp.Size = new System.Drawing.Size(56, 21); this.comboKBCWSpeedUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBCWSpeedUp, "Increse CW keyer speed."); this.comboKBCWSpeedUp.SelectedIndexChanged += new System.EventHandler(this.comboKBCWSpeedUp_SelectedIndexChanged); // // comboKBCWSpeedDown // this.comboKBCWSpeedDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWSpeedDown.DropDownWidth = 56; this.comboKBCWSpeedDown.Location = new System.Drawing.Point(48, 40); this.comboKBCWSpeedDown.Name = "comboKBCWSpeedDown"; this.comboKBCWSpeedDown.Size = new System.Drawing.Size(56, 21); this.comboKBCWSpeedDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBCWSpeedDown, "Decrese CW keyer speed."); this.comboKBCWSpeedDown.SelectedIndexChanged += new System.EventHandler(this.comboKBCWSpeedDown_SelectedIndexChanged); // // comboKBXITUp // this.comboKBXITUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBXITUp.DropDownWidth = 56; this.comboKBXITUp.Location = new System.Drawing.Point(48, 16); this.comboKBXITUp.Name = "comboKBXITUp"; this.comboKBXITUp.Size = new System.Drawing.Size(56, 21); this.comboKBXITUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBXITUp, "Adjust XIT control up 1kHz."); this.comboKBXITUp.SelectedIndexChanged += new System.EventHandler(this.comboKBXITUp_SelectedIndexChanged); // // comboKBXITDown // this.comboKBXITDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBXITDown.DropDownWidth = 56; this.comboKBXITDown.Location = new System.Drawing.Point(48, 40); this.comboKBXITDown.Name = "comboKBXITDown"; this.comboKBXITDown.Size = new System.Drawing.Size(56, 21); this.comboKBXITDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBXITDown, "Adjust the XIT control down 1kHz."); this.comboKBXITDown.SelectedIndexChanged += new System.EventHandler(this.comboKBXITDown_SelectedIndexChanged); // // comboKBRITUp // this.comboKBRITUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBRITUp.DropDownWidth = 56; this.comboKBRITUp.Location = new System.Drawing.Point(48, 16); this.comboKBRITUp.Name = "comboKBRITUp"; this.comboKBRITUp.Size = new System.Drawing.Size(56, 21); this.comboKBRITUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBRITUp, "Adjust RIT control up 1kHz."); this.comboKBRITUp.SelectedIndexChanged += new System.EventHandler(this.comboKBRITUp_SelectedIndexChanged); // // comboKBRITDown // this.comboKBRITDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBRITDown.DropDownWidth = 56; this.comboKBRITDown.Location = new System.Drawing.Point(48, 40); this.comboKBRITDown.Name = "comboKBRITDown"; this.comboKBRITDown.Size = new System.Drawing.Size(56, 21); this.comboKBRITDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBRITDown, "Adjust RIT control down 1kHz."); this.comboKBRITDown.SelectedIndexChanged += new System.EventHandler(this.comboKBRITDown_SelectedIndexChanged); // // comboKBBandUp // this.comboKBBandUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBBandUp.DropDownWidth = 56; this.comboKBBandUp.Location = new System.Drawing.Point(48, 16); this.comboKBBandUp.Name = "comboKBBandUp"; this.comboKBBandUp.Size = new System.Drawing.Size(56, 21); this.comboKBBandUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBBandUp, "Jump to the next band stack memory."); this.comboKBBandUp.SelectedIndexChanged += new System.EventHandler(this.comboKBBandUp_SelectedIndexChanged); // // comboKBBandDown // this.comboKBBandDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBBandDown.DropDownWidth = 56; this.comboKBBandDown.Location = new System.Drawing.Point(48, 40); this.comboKBBandDown.Name = "comboKBBandDown"; this.comboKBBandDown.Size = new System.Drawing.Size(56, 21); this.comboKBBandDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBBandDown, "Jump to the previous band stack memory."); this.comboKBBandDown.SelectedIndexChanged += new System.EventHandler(this.comboKBBandDown_SelectedIndexChanged); // // comboKBTuneUp7 // this.comboKBTuneUp7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp7.DropDownWidth = 56; this.comboKBTuneUp7.Location = new System.Drawing.Point(392, 40); this.comboKBTuneUp7.Name = "comboKBTuneUp7"; this.comboKBTuneUp7.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp7.TabIndex = 19; this.toolTip1.SetToolTip(this.comboKBTuneUp7, "Tune Up 1Hz"); this.comboKBTuneUp7.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp7_SelectedIndexChanged); // // comboKBTuneDown7 // this.comboKBTuneDown7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown7.DropDownWidth = 56; this.comboKBTuneDown7.Location = new System.Drawing.Point(392, 64); this.comboKBTuneDown7.Name = "comboKBTuneDown7"; this.comboKBTuneDown7.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown7.TabIndex = 18; this.toolTip1.SetToolTip(this.comboKBTuneDown7, "Tune Down 1Hz"); this.comboKBTuneDown7.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown7_SelectedIndexChanged); // // comboKBTuneUp6 // this.comboKBTuneUp6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp6.DropDownWidth = 56; this.comboKBTuneUp6.Location = new System.Drawing.Point(336, 40); this.comboKBTuneUp6.Name = "comboKBTuneUp6"; this.comboKBTuneUp6.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp6.TabIndex = 17; this.toolTip1.SetToolTip(this.comboKBTuneUp6, "Tune Up 10Hz"); this.comboKBTuneUp6.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp6_SelectedIndexChanged); // // comboKBTuneDown6 // this.comboKBTuneDown6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown6.DropDownWidth = 56; this.comboKBTuneDown6.Location = new System.Drawing.Point(336, 64); this.comboKBTuneDown6.Name = "comboKBTuneDown6"; this.comboKBTuneDown6.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown6.TabIndex = 16; this.toolTip1.SetToolTip(this.comboKBTuneDown6, "Tune Down 10Hz"); this.comboKBTuneDown6.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown6_SelectedIndexChanged); // // comboKBTuneUp5 // this.comboKBTuneUp5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp5.DropDownWidth = 56; this.comboKBTuneUp5.Location = new System.Drawing.Point(280, 40); this.comboKBTuneUp5.Name = "comboKBTuneUp5"; this.comboKBTuneUp5.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp5.TabIndex = 15; this.toolTip1.SetToolTip(this.comboKBTuneUp5, "Tune Up 100Hz"); this.comboKBTuneUp5.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp5_SelectedIndexChanged); // // comboKBTuneDown5 // this.comboKBTuneDown5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown5.DropDownWidth = 56; this.comboKBTuneDown5.Location = new System.Drawing.Point(280, 64); this.comboKBTuneDown5.Name = "comboKBTuneDown5"; this.comboKBTuneDown5.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown5.TabIndex = 14; this.toolTip1.SetToolTip(this.comboKBTuneDown5, "Tune Down 100Hz"); this.comboKBTuneDown5.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown5_SelectedIndexChanged); // // comboKBTuneUp4 // this.comboKBTuneUp4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp4.DropDownWidth = 56; this.comboKBTuneUp4.Location = new System.Drawing.Point(224, 40); this.comboKBTuneUp4.Name = "comboKBTuneUp4"; this.comboKBTuneUp4.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp4.TabIndex = 13; this.toolTip1.SetToolTip(this.comboKBTuneUp4, "Tune Up 1kHz"); this.comboKBTuneUp4.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp4_SelectedIndexChanged); // // comboKBTuneDown4 // this.comboKBTuneDown4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown4.DropDownWidth = 56; this.comboKBTuneDown4.Location = new System.Drawing.Point(224, 64); this.comboKBTuneDown4.Name = "comboKBTuneDown4"; this.comboKBTuneDown4.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown4.TabIndex = 12; this.toolTip1.SetToolTip(this.comboKBTuneDown4, "Tune Down 1kHz"); this.comboKBTuneDown4.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown4_SelectedIndexChanged); // // comboKBTuneUp3 // this.comboKBTuneUp3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp3.DropDownWidth = 56; this.comboKBTuneUp3.Location = new System.Drawing.Point(168, 40); this.comboKBTuneUp3.Name = "comboKBTuneUp3"; this.comboKBTuneUp3.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp3.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBTuneUp3, "Tune Up 10kHz"); this.comboKBTuneUp3.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp3_SelectedIndexChanged); // // comboKBTuneDown3 // this.comboKBTuneDown3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown3.DropDownWidth = 56; this.comboKBTuneDown3.Location = new System.Drawing.Point(168, 64); this.comboKBTuneDown3.Name = "comboKBTuneDown3"; this.comboKBTuneDown3.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown3.TabIndex = 1; this.toolTip1.SetToolTip(this.comboKBTuneDown3, "Tune Down 10kHz"); this.comboKBTuneDown3.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown3_SelectedIndexChanged); // // comboKBTuneUp1 // this.comboKBTuneUp1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp1.DropDownWidth = 56; this.comboKBTuneUp1.Location = new System.Drawing.Point(48, 40); this.comboKBTuneUp1.Name = "comboKBTuneUp1"; this.comboKBTuneUp1.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp1.TabIndex = 4; this.toolTip1.SetToolTip(this.comboKBTuneUp1, "Tune Up 1MHz"); this.comboKBTuneUp1.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp1_SelectedIndexChanged); // // comboKBTuneUp2 // this.comboKBTuneUp2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp2.DropDownWidth = 56; this.comboKBTuneUp2.Location = new System.Drawing.Point(112, 40); this.comboKBTuneUp2.Name = "comboKBTuneUp2"; this.comboKBTuneUp2.Size = new System.Drawing.Size(56, 21); this.comboKBTuneUp2.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBTuneUp2, "Tune Up 100kHz"); this.comboKBTuneUp2.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp2_SelectedIndexChanged); // // comboKBTuneDown1 // this.comboKBTuneDown1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown1.DropDownWidth = 56; this.comboKBTuneDown1.Location = new System.Drawing.Point(48, 64); this.comboKBTuneDown1.Name = "comboKBTuneDown1"; this.comboKBTuneDown1.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboKBTuneDown1, "Tune Down 1MHz"); this.comboKBTuneDown1.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown1_SelectedIndexChanged); // // comboKBTuneDown2 // this.comboKBTuneDown2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown2.DropDownWidth = 56; this.comboKBTuneDown2.Location = new System.Drawing.Point(112, 64); this.comboKBTuneDown2.Name = "comboKBTuneDown2"; this.comboKBTuneDown2.Size = new System.Drawing.Size(56, 21); this.comboKBTuneDown2.TabIndex = 2; this.toolTip1.SetToolTip(this.comboKBTuneDown2, "Tune Down 100kHz"); this.comboKBTuneDown2.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown2_SelectedIndexChanged); // // comboKBFilterUp // this.comboKBFilterUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBFilterUp.DropDownWidth = 56; this.comboKBFilterUp.Location = new System.Drawing.Point(48, 16); this.comboKBFilterUp.Name = "comboKBFilterUp"; this.comboKBFilterUp.Size = new System.Drawing.Size(56, 21); this.comboKBFilterUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBFilterUp, "Select the Next filter."); this.comboKBFilterUp.SelectedIndexChanged += new System.EventHandler(this.comboKBFilterUp_SelectedIndexChanged); // // comboKBFilterDown // this.comboKBFilterDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBFilterDown.DropDownWidth = 56; this.comboKBFilterDown.Location = new System.Drawing.Point(48, 40); this.comboKBFilterDown.Name = "comboKBFilterDown"; this.comboKBFilterDown.Size = new System.Drawing.Size(56, 21); this.comboKBFilterDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBFilterDown, "Select the Previous filter."); this.comboKBFilterDown.SelectedIndexChanged += new System.EventHandler(this.comboKBFilterDown_SelectedIndexChanged); // // comboKBCWDot // this.comboKBCWDot.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWDot.DropDownWidth = 56; this.comboKBCWDot.Location = new System.Drawing.Point(48, 16); this.comboKBCWDot.Name = "comboKBCWDot"; this.comboKBCWDot.Size = new System.Drawing.Size(56, 21); this.comboKBCWDot.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBCWDot, "Note: Only works with old keyer."); this.comboKBCWDot.SelectedIndexChanged += new System.EventHandler(this.comboKBCWDot_SelectedIndexChanged); // // comboKBCWDash // this.comboKBCWDash.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWDash.DropDownWidth = 56; this.comboKBCWDash.Location = new System.Drawing.Point(48, 40); this.comboKBCWDash.Name = "comboKBCWDash"; this.comboKBCWDash.Size = new System.Drawing.Size(56, 21); this.comboKBCWDash.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBCWDash, "Note: Only works with old keyer."); this.comboKBCWDash.SelectedIndexChanged += new System.EventHandler(this.comboKBCWDash_SelectedIndexChanged); // // udTestGenScale // this.udTestGenScale.DecimalPlaces = 6; this.udTestGenScale.Increment = new decimal(new int[] { 1, 0, 0, 196608}); this.udTestGenScale.Location = new System.Drawing.Point(312, 22); this.udTestGenScale.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udTestGenScale.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestGenScale.Name = "udTestGenScale"; this.udTestGenScale.Size = new System.Drawing.Size(72, 20); this.udTestGenScale.TabIndex = 94; this.toolTip1.SetToolTip(this.udTestGenScale, "Sets the amplitude of the signal (typically between 0 and 1.0)"); this.udTestGenScale.Value = new decimal(new int[] { 10, 0, 0, 65536}); this.udTestGenScale.Visible = false; this.udTestGenScale.ValueChanged += new System.EventHandler(this.updnTestGenScale_ValueChanged); this.udTestGenScale.LostFocus += new System.EventHandler(this.udTestGenScale_LostFocus); // // radTestGenOutput // this.radTestGenOutput.Image = null; this.radTestGenOutput.Location = new System.Drawing.Point(200, 19); this.radTestGenOutput.Name = "radTestGenOutput"; this.radTestGenOutput.Size = new System.Drawing.Size(67, 24); this.radTestGenOutput.TabIndex = 93; this.radTestGenOutput.Text = "Output"; this.toolTip1.SetToolTip(this.radTestGenOutput, "Select this button if the signal is to be an output to the soundcard."); this.radTestGenOutput.CheckedChanged += new System.EventHandler(this.rbTestGenOutput_CheckedChanged); // // radTestGenInput // this.radTestGenInput.Checked = true; this.radTestGenInput.Image = null; this.radTestGenInput.Location = new System.Drawing.Point(144, 19); this.radTestGenInput.Name = "radTestGenInput"; this.radTestGenInput.Size = new System.Drawing.Size(56, 24); this.radTestGenInput.TabIndex = 92; this.radTestGenInput.TabStop = true; this.radTestGenInput.Text = "Input"; this.toolTip1.SetToolTip(this.radTestGenInput, "Select this button if the signal is to be an input to the DSP."); this.radTestGenInput.CheckedChanged += new System.EventHandler(this.rbTestGenInput_CheckedChanged); // // cmboTestGenMode // this.cmboTestGenMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmboTestGenMode.DropDownWidth = 121; this.cmboTestGenMode.Items.AddRange(new object[] { "Off", "Tone", "Noise", "Triangle", "Sawtooth"}); this.cmboTestGenMode.Location = new System.Drawing.Point(8, 19); this.cmboTestGenMode.Name = "cmboTestGenMode"; this.cmboTestGenMode.Size = new System.Drawing.Size(121, 21); this.cmboTestGenMode.TabIndex = 91; this.toolTip1.SetToolTip(this.cmboTestGenMode, "Select the signal type."); this.cmboTestGenMode.SelectedIndexChanged += new System.EventHandler(this.cmboTestGenMode_SelectedIndexChanged); // // tkbarTestGenFreq // this.tkbarTestGenFreq.Location = new System.Drawing.Point(28, 99); this.tkbarTestGenFreq.Maximum = 192000; this.tkbarTestGenFreq.Name = "tkbarTestGenFreq"; this.tkbarTestGenFreq.Size = new System.Drawing.Size(344, 45); this.tkbarTestGenFreq.TabIndex = 1; this.tkbarTestGenFreq.TickFrequency = 5000; this.toolTip1.SetToolTip(this.tkbarTestGenFreq, "Sets the frequency of the signal."); this.tkbarTestGenFreq.Value = 10000; this.tkbarTestGenFreq.Scroll += new System.EventHandler(this.tkbarTestGenFreq_Scroll); // // udTestGenHzSec // this.udTestGenHzSec.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestGenHzSec.Location = new System.Drawing.Point(252, 155); this.udTestGenHzSec.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTestGenHzSec.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestGenHzSec.Name = "udTestGenHzSec"; this.udTestGenHzSec.Size = new System.Drawing.Size(56, 20); this.udTestGenHzSec.TabIndex = 87; this.toolTip1.SetToolTip(this.udTestGenHzSec, "See the Sweep Button to the right."); this.udTestGenHzSec.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udTestGenHzSec.LostFocus += new System.EventHandler(this.udTestGenHzSec_LostFocus); // // udTestGenHigh // this.udTestGenHigh.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestGenHigh.Location = new System.Drawing.Point(140, 155); this.udTestGenHigh.Maximum = new decimal(new int[] { 48000, 0, 0, 0}); this.udTestGenHigh.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestGenHigh.Name = "udTestGenHigh"; this.udTestGenHigh.Size = new System.Drawing.Size(56, 20); this.udTestGenHigh.TabIndex = 85; this.toolTip1.SetToolTip(this.udTestGenHigh, "See the Sweep Button to the right."); this.udTestGenHigh.Value = new decimal(new int[] { 4000, 0, 0, 0}); this.udTestGenHigh.LostFocus += new System.EventHandler(this.udTestGenHigh_LostFocus); // // udTestGenLow // this.udTestGenLow.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestGenLow.Location = new System.Drawing.Point(44, 155); this.udTestGenLow.Maximum = new decimal(new int[] { 48000, 0, 0, 0}); this.udTestGenLow.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestGenLow.Name = "udTestGenLow"; this.udTestGenLow.Size = new System.Drawing.Size(56, 20); this.udTestGenLow.TabIndex = 83; this.toolTip1.SetToolTip(this.udTestGenLow, "See the Sweep Button to the right."); this.udTestGenLow.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udTestGenLow.LostFocus += new System.EventHandler(this.udTestGenLow_LostFocus); // // btnTestGenSweep // this.btnTestGenSweep.Image = null; this.btnTestGenSweep.Location = new System.Drawing.Point(340, 155); this.btnTestGenSweep.Name = "btnTestGenSweep"; this.btnTestGenSweep.Size = new System.Drawing.Size(48, 23); this.btnTestGenSweep.TabIndex = 0; this.btnTestGenSweep.Text = "Sweep"; this.toolTip1.SetToolTip(this.btnTestGenSweep, "Click this button to sweep from the Low setting to the High setting using the Hz/" + "Sec setting."); this.btnTestGenSweep.Click += new System.EventHandler(this.buttonTestGenSweep_Click); // // btnApply // this.btnApply.Image = null; this.btnApply.Location = new System.Drawing.Point(432, 376); this.btnApply.Name = "btnApply"; this.btnApply.Size = new System.Drawing.Size(75, 31); this.btnApply.TabIndex = 19; this.btnApply.Text = "Apply"; this.toolTip1.SetToolTip(this.btnApply, "Apply current settings."); this.btnApply.Click += new System.EventHandler(this.btnApply_Click); // // btnCancel // this.btnCancel.Image = null; this.btnCancel.Location = new System.Drawing.Point(327, 376); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 31); this.btnCancel.TabIndex = 18; this.btnCancel.Text = "Cancel"; this.toolTip1.SetToolTip(this.btnCancel, "Load settings from database and close form."); this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnOK // this.btnOK.Image = null; this.btnOK.Location = new System.Drawing.Point(222, 376); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 31); this.btnOK.TabIndex = 17; this.btnOK.Text = "OK"; this.toolTip1.SetToolTip(this.btnOK, "Keep current settings and close form."); this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // comboBoxTS2 // this.comboBoxTS2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxTS2.DropDownWidth = 56; this.comboBoxTS2.Items.AddRange(new object[] { "none", "odd ", "even", "mark", "space"}); this.comboBoxTS2.Location = new System.Drawing.Point(82, 183); this.comboBoxTS2.Name = "comboBoxTS2"; this.comboBoxTS2.Size = new System.Drawing.Size(72, 21); this.comboBoxTS2.TabIndex = 103; this.toolTip1.SetToolTip(this.comboBoxTS2, "Com port parity"); // // numericUpDownTS1 // this.numericUpDownTS1.DecimalPlaces = 6; this.numericUpDownTS1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.numericUpDownTS1.Location = new System.Drawing.Point(98, 22); this.numericUpDownTS1.Maximum = new decimal(new int[] { 65, 0, 0, 0}); this.numericUpDownTS1.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.numericUpDownTS1.Name = "numericUpDownTS1"; this.numericUpDownTS1.Size = new System.Drawing.Size(72, 20); this.numericUpDownTS1.TabIndex = 1; this.toolTip1.SetToolTip(this.numericUpDownTS1, "RX Image calibration reference frequency"); this.numericUpDownTS1.Value = new decimal(new int[] { 10113500, 0, 0, 393216}); // // buttonTS1 // this.buttonTS1.Image = null; this.buttonTS1.Location = new System.Drawing.Point(57, 250); this.buttonTS1.Name = "buttonTS1"; this.buttonTS1.Size = new System.Drawing.Size(75, 23); this.buttonTS1.TabIndex = 7; this.buttonTS1.Text = "Start"; this.toolTip1.SetToolTip(this.buttonTS1, "Click to start the RX Image rejection calibration using the above frequency refer" + "ence."); // // numericUpDownTS2 // this.numericUpDownTS2.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.numericUpDownTS2.Location = new System.Drawing.Point(80, 48); this.numericUpDownTS2.Maximum = new decimal(new int[] { 0, 0, 0, 0}); this.numericUpDownTS2.Minimum = new decimal(new int[] { 150, 0, 0, -2147483648}); this.numericUpDownTS2.Name = "numericUpDownTS2"; this.numericUpDownTS2.Size = new System.Drawing.Size(72, 20); this.numericUpDownTS2.TabIndex = 3; this.toolTip1.SetToolTip(this.numericUpDownTS2, "Level calibration reference level"); this.numericUpDownTS2.Value = new decimal(new int[] { 70, 0, 0, -2147483648}); // // numericUpDownTS3 // this.numericUpDownTS3.DecimalPlaces = 6; this.numericUpDownTS3.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.numericUpDownTS3.Location = new System.Drawing.Point(80, 24); this.numericUpDownTS3.Maximum = new decimal(new int[] { 65, 0, 0, 0}); this.numericUpDownTS3.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.numericUpDownTS3.Name = "numericUpDownTS3"; this.numericUpDownTS3.Size = new System.Drawing.Size(72, 20); this.numericUpDownTS3.TabIndex = 1; this.toolTip1.SetToolTip(this.numericUpDownTS3, "Level calibration reference frequency"); this.numericUpDownTS3.Value = new decimal(new int[] { 10, 0, 0, 0}); // // buttonTS2 // this.buttonTS2.Image = null; this.buttonTS2.Location = new System.Drawing.Point(48, 80); this.buttonTS2.Name = "buttonTS2"; this.buttonTS2.Size = new System.Drawing.Size(75, 23); this.buttonTS2.TabIndex = 4; this.buttonTS2.Text = "Start"; this.toolTip1.SetToolTip(this.buttonTS2, "Click to start the level calibration using the frequency and level references abo" + "ve."); // // buttonTS3 // this.buttonTS3.Image = null; this.buttonTS3.Location = new System.Drawing.Point(48, 80); this.buttonTS3.Name = "buttonTS3"; this.buttonTS3.Size = new System.Drawing.Size(75, 23); this.buttonTS3.TabIndex = 5; this.buttonTS3.Text = "Start"; this.toolTip1.SetToolTip(this.buttonTS3, "Click to start the frequency calibration using the reference frequency above."); // // numericUpDownTS4 // this.numericUpDownTS4.DecimalPlaces = 6; this.numericUpDownTS4.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.numericUpDownTS4.Location = new System.Drawing.Point(80, 24); this.numericUpDownTS4.Maximum = new decimal(new int[] { 65, 0, 0, 0}); this.numericUpDownTS4.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.numericUpDownTS4.Name = "numericUpDownTS4"; this.numericUpDownTS4.Size = new System.Drawing.Size(72, 20); this.numericUpDownTS4.TabIndex = 1; this.toolTip1.SetToolTip(this.numericUpDownTS4, "Frequency calibration reference frequency"); this.numericUpDownTS4.Value = new decimal(new int[] { 10, 0, 0, 0}); // // clrbtnPanFillColor // this.clrbtnPanFillColor.Automatic = "Automatic"; this.clrbtnPanFillColor.Color = System.Drawing.Color.CornflowerBlue; this.clrbtnPanFillColor.ForeColor = System.Drawing.SystemColors.ControlText; this.clrbtnPanFillColor.Image = null; this.clrbtnPanFillColor.Location = new System.Drawing.Point(84, 197); this.clrbtnPanFillColor.MoreColors = "More Colors..."; this.clrbtnPanFillColor.Name = "clrbtnPanFillColor"; this.clrbtnPanFillColor.Size = new System.Drawing.Size(40, 23); this.clrbtnPanFillColor.TabIndex = 88; this.toolTip1.SetToolTip(this.clrbtnPanFillColor, "Change console color."); this.clrbtnPanFillColor.Changed += new System.EventHandler(this.clrbtnPanFillColor_Changed); // // chkG59KeyerAutoCorrection // this.chkG59KeyerAutoCorrection.AutoSize = true; this.chkG59KeyerAutoCorrection.Image = null; this.chkG59KeyerAutoCorrection.Location = new System.Drawing.Point(25, 115); this.chkG59KeyerAutoCorrection.Name = "chkG59KeyerAutoCorrection"; this.chkG59KeyerAutoCorrection.Size = new System.Drawing.Size(98, 17); this.chkG59KeyerAutoCorrection.TabIndex = 6; this.chkG59KeyerAutoCorrection.Text = "Auto correction"; this.toolTip1.SetToolTip(this.chkG59KeyerAutoCorrection, "Enable/Disable keyer automatic pause corrections."); this.chkG59KeyerAutoCorrection.UseVisualStyleBackColor = true; this.chkG59KeyerAutoCorrection.CheckedChanged += new System.EventHandler(this.chkG59KeyerAutoCorrection_CheckedChanged); // // comboSMeterRXMode // this.comboSMeterRXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSMeterRXMode.DropDownWidth = 80; this.comboSMeterRXMode.Location = new System.Drawing.Point(95, 28); this.comboSMeterRXMode.Name = "comboSMeterRXMode"; this.comboSMeterRXMode.Size = new System.Drawing.Size(80, 21); this.comboSMeterRXMode.TabIndex = 79; this.toolTip1.SetToolTip(this.comboSMeterRXMode, "Changes the appearance of the Multimeter on the front panel."); this.comboSMeterRXMode.SelectedIndexChanged += new System.EventHandler(this.comboSMeterRXMode_SelectedIndexChanged); // // comboSMeterTXMode // this.comboSMeterTXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSMeterTXMode.DropDownWidth = 80; this.comboSMeterTXMode.Location = new System.Drawing.Point(95, 66); this.comboSMeterTXMode.Name = "comboSMeterTXMode"; this.comboSMeterTXMode.Size = new System.Drawing.Size(80, 21); this.comboSMeterTXMode.TabIndex = 81; this.toolTip1.SetToolTip(this.comboSMeterTXMode, "Changes the appearance of the Multimeter on the front panel."); this.comboSMeterTXMode.SelectedIndexChanged += new System.EventHandler(this.comboSMeterTXMode_SelectedIndexChanged); // // lblSi570_ref_osc2 // this.lblSi570_ref_osc2.AutoSize = true; this.lblSi570_ref_osc2.Image = null; this.lblSi570_ref_osc2.Location = new System.Drawing.Point(16, 45); this.lblSi570_ref_osc2.Name = "lblSi570_ref_osc2"; this.lblSi570_ref_osc2.Size = new System.Drawing.Size(56, 13); this.lblSi570_ref_osc2.TabIndex = 8; this.lblSi570_ref_osc2.Text = "17-30MHz"; this.toolTip1.SetToolTip(this.lblSi570_ref_osc2, "Adjust internal Si570 frequency"); // // udSi570_xtal2 // this.udSi570_xtal2.DecimalPlaces = 6; this.udSi570_xtal2.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udSi570_xtal2.Location = new System.Drawing.Point(77, 43); this.udSi570_xtal2.Maximum = new decimal(new int[] { 115000000, 0, 0, 0}); this.udSi570_xtal2.Minimum = new decimal(new int[] { 114000000, 0, 0, 0}); this.udSi570_xtal2.Name = "udSi570_xtal2"; this.udSi570_xtal2.Size = new System.Drawing.Size(115, 20); this.udSi570_xtal2.TabIndex = 7; this.udSi570_xtal2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udSi570_xtal2, "Internal crystal reference"); this.udSi570_xtal2.Value = new decimal(new int[] { 114260800, 0, 0, 0}); this.udSi570_xtal2.ValueChanged += new System.EventHandler(this.udSi570_xtal2_ValueChanged); // // lblSi570_ref_osc3 // this.lblSi570_ref_osc3.AutoSize = true; this.lblSi570_ref_osc3.Image = null; this.lblSi570_ref_osc3.Location = new System.Drawing.Point(16, 69); this.lblSi570_ref_osc3.Name = "lblSi570_ref_osc3"; this.lblSi570_ref_osc3.Size = new System.Drawing.Size(56, 13); this.lblSi570_ref_osc3.TabIndex = 10; this.lblSi570_ref_osc3.Text = "30-50MHz"; this.toolTip1.SetToolTip(this.lblSi570_ref_osc3, "Adjust internal Si570 frequency"); // // udSi570_xtal3 // this.udSi570_xtal3.DecimalPlaces = 6; this.udSi570_xtal3.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udSi570_xtal3.Location = new System.Drawing.Point(77, 67); this.udSi570_xtal3.Maximum = new decimal(new int[] { 115000000, 0, 0, 0}); this.udSi570_xtal3.Minimum = new decimal(new int[] { 114000000, 0, 0, 0}); this.udSi570_xtal3.Name = "udSi570_xtal3"; this.udSi570_xtal3.Size = new System.Drawing.Size(115, 20); this.udSi570_xtal3.TabIndex = 9; this.udSi570_xtal3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udSi570_xtal3, "Internal crystal reference"); this.udSi570_xtal3.Value = new decimal(new int[] { 114260800, 0, 0, 0}); this.udSi570_xtal3.ValueChanged += new System.EventHandler(this.udSi570_xtal3_ValueChanged); // // lblSi570_ref_osc1 // this.lblSi570_ref_osc1.AutoSize = true; this.lblSi570_ref_osc1.Image = null; this.lblSi570_ref_osc1.Location = new System.Drawing.Point(16, 21); this.lblSi570_ref_osc1.Name = "lblSi570_ref_osc1"; this.lblSi570_ref_osc1.Size = new System.Drawing.Size(50, 13); this.lblSi570_ref_osc1.TabIndex = 1; this.lblSi570_ref_osc1.Text = "1-17MHz"; this.toolTip1.SetToolTip(this.lblSi570_ref_osc1, "Adjust internal Si570 frequency"); // // btnVFOSmallFont // this.btnVFOSmallFont.Image = null; this.btnVFOSmallFont.Location = new System.Drawing.Point(107, 224); this.btnVFOSmallFont.Name = "btnVFOSmallFont"; this.btnVFOSmallFont.Size = new System.Drawing.Size(40, 22); this.btnVFOSmallFont.TabIndex = 90; this.btnVFOSmallFont.Text = "Font"; this.toolTip1.SetToolTip(this.btnVFOSmallFont, "Change font for displaying frequency."); this.btnVFOSmallFont.UseVisualStyleBackColor = true; this.btnVFOSmallFont.Click += new System.EventHandler(this.btnVFOSmallFont_Click); // // btnNewVFOSmallFont // this.btnNewVFOSmallFont.Image = null; this.btnNewVFOSmallFont.Location = new System.Drawing.Point(112, 112); this.btnNewVFOSmallFont.Name = "btnNewVFOSmallFont"; this.btnNewVFOSmallFont.Size = new System.Drawing.Size(40, 22); this.btnNewVFOSmallFont.TabIndex = 96; this.btnNewVFOSmallFont.Text = "Font"; this.toolTip1.SetToolTip(this.btnNewVFOSmallFont, "Change font for displaying frequency."); this.btnNewVFOSmallFont.UseVisualStyleBackColor = true; this.btnNewVFOSmallFont.Click += new System.EventHandler(this.btnNewVFOSmallFont_Click); // // btnNewVFOBandFont // this.btnNewVFOBandFont.Image = null; this.btnNewVFOBandFont.Location = new System.Drawing.Point(112, 150); this.btnNewVFOBandFont.Name = "btnNewVFOBandFont"; this.btnNewVFOBandFont.Size = new System.Drawing.Size(40, 22); this.btnNewVFOBandFont.TabIndex = 98; this.btnNewVFOBandFont.Text = "Font"; this.toolTip1.SetToolTip(this.btnNewVFOBandFont, "Change font for displaying frequency."); this.btnNewVFOBandFont.UseVisualStyleBackColor = true; this.btnNewVFOBandFont.Click += new System.EventHandler(this.btnNewVFOBandFont_Click); // // comboSi570GUI // this.comboSi570GUI.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSi570GUI.DropDownWidth = 56; this.comboSi570GUI.Location = new System.Drawing.Point(83, 104); this.comboSi570GUI.Name = "comboSi570GUI"; this.comboSi570GUI.Size = new System.Drawing.Size(56, 21); this.comboSi570GUI.TabIndex = 14; this.toolTip1.SetToolTip(this.comboSi570GUI, "Show/Hide Gui for external Si570"); this.comboSi570GUI.SelectedIndexChanged += new System.EventHandler(this.comboSi570GUI_SelectedIndexChanged); // // radGenModelGenesisG160 // this.radGenModelGenesisG160.Image = null; this.radGenModelGenesisG160.Location = new System.Drawing.Point(22, 110); this.radGenModelGenesisG160.Name = "radGenModelGenesisG160"; this.radGenModelGenesisG160.Size = new System.Drawing.Size(104, 17); this.radGenModelGenesisG160.TabIndex = 6; this.radGenModelGenesisG160.Text = "Genesis G160"; this.toolTip1.SetToolTip(this.radGenModelGenesisG160, "Singleband transceiver for 1.8MHz"); this.radGenModelGenesisG160.UseVisualStyleBackColor = true; this.radGenModelGenesisG160.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG160_CheckedChanged); // // radGenModelGenesisG80 // this.radGenModelGenesisG80.Image = null; this.radGenModelGenesisG80.Location = new System.Drawing.Point(22, 89); this.radGenModelGenesisG80.Name = "radGenModelGenesisG80"; this.radGenModelGenesisG80.Size = new System.Drawing.Size(104, 17); this.radGenModelGenesisG80.TabIndex = 5; this.radGenModelGenesisG80.Text = "Genesis G80"; this.toolTip1.SetToolTip(this.radGenModelGenesisG80, "Singleband transceiver for 3.5MHz"); this.radGenModelGenesisG80.UseVisualStyleBackColor = true; this.radGenModelGenesisG80.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG80_CheckedChanged); // // radGenModelGenesisG40 // this.radGenModelGenesisG40.Image = null; this.radGenModelGenesisG40.Location = new System.Drawing.Point(22, 68); this.radGenModelGenesisG40.Name = "radGenModelGenesisG40"; this.radGenModelGenesisG40.Size = new System.Drawing.Size(104, 17); this.radGenModelGenesisG40.TabIndex = 4; this.radGenModelGenesisG40.Text = "Genesis G40"; this.toolTip1.SetToolTip(this.radGenModelGenesisG40, "Singleband transceiver for 7MHz"); this.radGenModelGenesisG40.UseVisualStyleBackColor = true; this.radGenModelGenesisG40.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG40_CheckedChanged); // // radGenModelGenesisG3020 // this.radGenModelGenesisG3020.Image = null; this.radGenModelGenesisG3020.Location = new System.Drawing.Point(22, 41); this.radGenModelGenesisG3020.Name = "radGenModelGenesisG3020"; this.radGenModelGenesisG3020.Size = new System.Drawing.Size(104, 23); this.radGenModelGenesisG3020.TabIndex = 3; this.radGenModelGenesisG3020.Text = "Genesis G3020"; this.toolTip1.SetToolTip(this.radGenModelGenesisG3020, "Duoband transceiver(10 and 14MHz)"); this.radGenModelGenesisG3020.UseVisualStyleBackColor = true; this.radGenModelGenesisG3020.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG3020_CheckedChanged); // // radGenModelGenesisG59 // this.radGenModelGenesisG59.AutoSize = true; this.radGenModelGenesisG59.Image = null; this.radGenModelGenesisG59.Location = new System.Drawing.Point(22, 20); this.radGenModelGenesisG59.Name = "radGenModelGenesisG59"; this.radGenModelGenesisG59.Size = new System.Drawing.Size(78, 17); this.radGenModelGenesisG59.TabIndex = 2; this.radGenModelGenesisG59.Text = "Genesis 59"; this.toolTip1.SetToolTip(this.radGenModelGenesisG59, "Multiband transceiver(1.8-50MHz)"); this.radGenModelGenesisG59.UseVisualStyleBackColor = true; this.radGenModelGenesisG59.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG59_CheckedChanged); // // radGenModelGenesisNET // this.radGenModelGenesisNET.Image = null; this.radGenModelGenesisNET.Location = new System.Drawing.Point(22, 194); this.radGenModelGenesisNET.Name = "radGenModelGenesisNET"; this.radGenModelGenesisNET.Size = new System.Drawing.Size(104, 17); this.radGenModelGenesisNET.TabIndex = 7; this.radGenModelGenesisNET.Text = "NET Box"; this.toolTip1.SetToolTip(this.radGenModelGenesisNET, "Experimental ethernet controled device."); this.radGenModelGenesisNET.UseVisualStyleBackColor = true; this.radGenModelGenesisNET.CheckedChanged += new System.EventHandler(this.radGenModelGenesisNET_CheckedChanged); // // chkDTR_CWMonitor // this.chkDTR_CWMonitor.AutoSize = true; this.chkDTR_CWMonitor.Image = null; this.chkDTR_CWMonitor.Location = new System.Drawing.Point(10, 63); this.chkDTR_CWMonitor.Name = "chkDTR_CWMonitor"; this.chkDTR_CWMonitor.Size = new System.Drawing.Size(124, 17); this.chkDTR_CWMonitor.TabIndex = 42; this.chkDTR_CWMonitor.Text = "DTR as CW monitor!"; this.toolTip1.SetToolTip(this.chkDTR_CWMonitor, "(require the alteration of PCB board!)"); this.chkDTR_CWMonitor.UseVisualStyleBackColor = true; this.chkDTR_CWMonitor.CheckedChanged += new System.EventHandler(this.chkDTR_CWMonitor_CheckedChanged); // // btnAbortCalibration // this.btnAbortCalibration.Image = null; this.btnAbortCalibration.Location = new System.Drawing.Point(126, 272); this.btnAbortCalibration.Name = "btnAbortCalibration"; this.btnAbortCalibration.Size = new System.Drawing.Size(75, 23); this.btnAbortCalibration.TabIndex = 12; this.btnAbortCalibration.Text = "Abort"; this.toolTip1.SetToolTip(this.btnAbortCalibration, "Abort calibration process!"); this.btnAbortCalibration.Click += new System.EventHandler(this.btnAbortCalibration_Click); // // udMemoryZapping // this.udMemoryZapping.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udMemoryZapping.Location = new System.Drawing.Point(70, 71); this.udMemoryZapping.Maximum = new decimal(new int[] { 100000, 0, 0, 0}); this.udMemoryZapping.Minimum = new decimal(new int[] { 100, 0, 0, 0}); this.udMemoryZapping.Name = "udMemoryZapping"; this.udMemoryZapping.Size = new System.Drawing.Size(64, 20); this.udMemoryZapping.TabIndex = 0; this.udMemoryZapping.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udMemoryZapping, "Time between two memory zap"); this.udMemoryZapping.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udMemoryZapping.ValueChanged += new System.EventHandler(this.udMemoryZapping_ValueChanged); // // radMemoryZapUP // this.radMemoryZapUP.AutoSize = true; this.radMemoryZapUP.Checked = true; this.radMemoryZapUP.Image = null; this.radMemoryZapUP.Location = new System.Drawing.Point(17, 20); this.radMemoryZapUP.Name = "radMemoryZapUP"; this.radMemoryZapUP.Size = new System.Drawing.Size(37, 17); this.radMemoryZapUP.TabIndex = 2; this.radMemoryZapUP.TabStop = true; this.radMemoryZapUP.Text = "up"; this.toolTip1.SetToolTip(this.radMemoryZapUP, "Memory zap direction"); this.radMemoryZapUP.UseVisualStyleBackColor = true; this.radMemoryZapUP.CheckedChanged += new System.EventHandler(this.radMemoryZapUP_CheckedChanged); // // radMemoryZapDOWN // this.radMemoryZapDOWN.AutoSize = true; this.radMemoryZapDOWN.Image = null; this.radMemoryZapDOWN.Location = new System.Drawing.Point(17, 47); this.radMemoryZapDOWN.Name = "radMemoryZapDOWN"; this.radMemoryZapDOWN.Size = new System.Drawing.Size(51, 17); this.radMemoryZapDOWN.TabIndex = 3; this.radMemoryZapDOWN.Text = "down"; this.toolTip1.SetToolTip(this.radMemoryZapDOWN, "Memory zap direction"); this.radMemoryZapDOWN.UseVisualStyleBackColor = true; this.radMemoryZapDOWN.CheckedChanged += new System.EventHandler(this.radMemoryZapDOWN_CheckedChanged); // // chkAutoPowerUp // this.chkAutoPowerUp.AutoSize = true; this.chkAutoPowerUp.Image = null; this.chkAutoPowerUp.Location = new System.Drawing.Point(15, 18); this.chkAutoPowerUp.Name = "chkAutoPowerUp"; this.chkAutoPowerUp.Size = new System.Drawing.Size(99, 17); this.chkAutoPowerUp.TabIndex = 0; this.chkAutoPowerUp.Text = "Auto Power UP"; this.toolTip1.SetToolTip(this.chkAutoPowerUp, "Power UP when you start GSDR"); this.chkAutoPowerUp.UseVisualStyleBackColor = true; this.chkAutoPowerUp.CheckedChanged += new System.EventHandler(this.chkAutoPowerUp_CheckedChanged); // // btnGeneralCalImageSave // this.btnGeneralCalImageSave.Image = null; this.btnGeneralCalImageSave.Location = new System.Drawing.Point(107, 24); this.btnGeneralCalImageSave.Name = "btnGeneralCalImageSave"; this.btnGeneralCalImageSave.Size = new System.Drawing.Size(75, 23); this.btnGeneralCalImageSave.TabIndex = 39; this.btnGeneralCalImageSave.Text = "Save"; this.toolTip1.SetToolTip(this.btnGeneralCalImageSave, "Click to save calibration values."); this.btnGeneralCalImageSave.Click += new System.EventHandler(this.btnGeneralCalImageSave_Click); // // udLMSNRleak // this.udLMSNRleak.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRleak.Location = new System.Drawing.Point(56, 99); this.udLMSNRleak.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udLMSNRleak.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRleak.Name = "udLMSNRleak"; this.udLMSNRleak.Size = new System.Drawing.Size(48, 20); this.udLMSNRleak.TabIndex = 10; this.toolTip1.SetToolTip(this.udLMSNRleak, "Determines the adaptation rate of the filter."); this.udLMSNRleak.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udLMSNRleak.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); // // udLMSANFleak // this.udLMSANFleak.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFleak.Location = new System.Drawing.Point(56, 99); this.udLMSANFleak.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udLMSANFleak.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFleak.Name = "udLMSANFleak"; this.udLMSANFleak.Size = new System.Drawing.Size(48, 20); this.udLMSANFleak.TabIndex = 11; this.toolTip1.SetToolTip(this.udLMSANFleak, "Determines the adaptation rate of the filter."); this.udLMSANFleak.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udLMSANFleak.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); // // chkOSD // this.chkOSD.AutoSize = true; this.chkOSD.Image = null; this.chkOSD.Location = new System.Drawing.Point(16, 212); this.chkOSD.Name = "chkOSD"; this.chkOSD.Size = new System.Drawing.Size(114, 17); this.chkOSD.TabIndex = 17; this.chkOSD.Text = "On Screen Display"; this.toolTip1.SetToolTip(this.chkOSD, "Show vital informations on screen."); this.chkOSD.UseVisualStyleBackColor = true; this.chkOSD.CheckedChanged += new System.EventHandler(this.chkOSD_CheckedChanged); // // comboCATPort // this.comboCATPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATPort.DropDownWidth = 56; this.comboCATPort.Location = new System.Drawing.Point(72, 52); this.comboCATPort.Name = "comboCATPort"; this.comboCATPort.Size = new System.Drawing.Size(72, 21); this.comboCATPort.TabIndex = 96; this.toolTip1.SetToolTip(this.comboCATPort, "Sets the COM port to be used for the CAT interface."); this.comboCATPort.SelectedIndexChanged += new System.EventHandler(this.comboCATPort_SelectedIndexChanged); // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(18, 183); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(29, 13); this.label3.TabIndex = 105; this.label3.Text = "Stop"; this.toolTip1.SetToolTip(this.label3, "COM port stop bit"); // // comboCATPTTPort // this.comboCATPTTPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATPTTPort.DropDownWidth = 56; this.comboCATPTTPort.Location = new System.Drawing.Point(40, 56); this.comboCATPTTPort.Name = "comboCATPTTPort"; this.comboCATPTTPort.Size = new System.Drawing.Size(80, 21); this.comboCATPTTPort.TabIndex = 96; this.toolTip1.SetToolTip(this.comboCATPTTPort, "Selects the COM port for use with PTT control"); this.comboCATPTTPort.SelectedIndexChanged += new System.EventHandler(this.comboCATPTTPort_SelectedIndexChanged); // // comboCATRigType // this.comboCATRigType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATRigType.DropDownWidth = 56; this.comboCATRigType.Items.AddRange(new object[] { "SDR-1000", "TS-2000", "TS-50S", "TS-480", "IC-7000"}); this.comboCATRigType.Location = new System.Drawing.Point(250, 196); this.comboCATRigType.Name = "comboCATRigType"; this.comboCATRigType.Size = new System.Drawing.Size(88, 21); this.comboCATRigType.TabIndex = 94; this.toolTip1.SetToolTip(this.comboCATRigType, "Sets the CAT protocol for programs that do not have SDR-1000 specific setups."); this.comboCATRigType.SelectedIndexChanged += new System.EventHandler(this.comboCATRigType_SelectedIndexChanged); // // udCATServerPort // this.udCATServerPort.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCATServerPort.Location = new System.Drawing.Point(135, 214); this.udCATServerPort.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udCATServerPort.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udCATServerPort.Name = "udCATServerPort"; this.udCATServerPort.Size = new System.Drawing.Size(58, 20); this.udCATServerPort.TabIndex = 114; this.udCATServerPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udCATServerPort, "The local port to listen CAT commands."); this.udCATServerPort.Value = new decimal(new int[] { 1970, 0, 0, 0}); // // chkContinuousTuning // this.chkContinuousTuning.AutoSize = true; this.chkContinuousTuning.Image = null; this.chkContinuousTuning.Location = new System.Drawing.Point(16, 239); this.chkContinuousTuning.Name = "chkContinuousTuning"; this.chkContinuousTuning.Size = new System.Drawing.Size(111, 17); this.chkContinuousTuning.TabIndex = 18; this.chkContinuousTuning.Text = "Continuous tuning"; this.toolTip1.SetToolTip(this.chkContinuousTuning, "VFOA act as clasic radio."); this.chkContinuousTuning.UseVisualStyleBackColor = true; this.chkContinuousTuning.CheckedChanged += new System.EventHandler(this.chkContinuousTuning_CheckedChanged); // // radGenModelQRP2000 // this.radGenModelQRP2000.Image = null; this.radGenModelQRP2000.Location = new System.Drawing.Point(22, 215); this.radGenModelQRP2000.Name = "radGenModelQRP2000"; this.radGenModelQRP2000.Size = new System.Drawing.Size(122, 17); this.radGenModelQRP2000.TabIndex = 8; this.radGenModelQRP2000.Text = "QRP 2000"; this.toolTip1.SetToolTip(this.radGenModelQRP2000, "QRP200 USB device."); this.radGenModelQRP2000.UseVisualStyleBackColor = true; this.radGenModelQRP2000.CheckedChanged += new System.EventHandler(this.radGenModelQRP2000_CheckedChanged); // // chkQRP2000XTRV // this.chkQRP2000XTRV.AutoSize = true; this.chkQRP2000XTRV.Image = null; this.chkQRP2000XTRV.Location = new System.Drawing.Point(14, 15); this.chkQRP2000XTRV.Name = "chkQRP2000XTRV"; this.chkQRP2000XTRV.Size = new System.Drawing.Size(90, 17); this.chkQRP2000XTRV.TabIndex = 20; this.chkQRP2000XTRV.Text = "XTRV enable"; this.toolTip1.SetToolTip(this.chkQRP2000XTRV, "Check if the transverter board present."); this.chkQRP2000XTRV.CheckedChanged += new System.EventHandler(this.chkQRP2000XTRV_CheckedChanged); // // udQRP2000XTRVIF // this.udQRP2000XTRVIF.DecimalPlaces = 1; this.udQRP2000XTRVIF.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udQRP2000XTRVIF.Location = new System.Drawing.Point(74, 36); this.udQRP2000XTRVIF.Maximum = new decimal(new int[] { 905032704, 1, 0, 0}); this.udQRP2000XTRVIF.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udQRP2000XTRVIF.Name = "udQRP2000XTRVIF"; this.udQRP2000XTRVIF.Size = new System.Drawing.Size(99, 20); this.udQRP2000XTRVIF.TabIndex = 23; this.udQRP2000XTRVIF.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udQRP2000XTRVIF, "XTRV local oscillator frequency for 2m transverter."); this.udQRP2000XTRVIF.Value = new decimal(new int[] { 14000000, 0, 0, 0}); this.udQRP2000XTRVIF.ValueChanged += new System.EventHandler(this.udSRXTRVIF_ValueChanged); // // udSRSi570Addr // this.udSRSi570Addr.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udSRSi570Addr.Location = new System.Drawing.Point(127, 41); this.udSRSi570Addr.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udSRSi570Addr.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udSRSi570Addr.Name = "udSRSi570Addr"; this.udSRSi570Addr.Size = new System.Drawing.Size(52, 20); this.udSRSi570Addr.TabIndex = 24; this.udSRSi570Addr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udSRSi570Addr, "I2C address"); this.udSRSi570Addr.Value = new decimal(new int[] { 85, 0, 0, 0}); this.udSRSi570Addr.ValueChanged += new System.EventHandler(this.udSRSi570Addr_ValueChanged); // // QRP2000VID // this.QRP2000VID.Location = new System.Drawing.Point(55, 65); this.QRP2000VID.Name = "QRP2000VID"; this.QRP2000VID.Size = new System.Drawing.Size(41, 20); this.QRP2000VID.TabIndex = 28; this.QRP2000VID.Text = "16c0"; this.QRP2000VID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.QRP2000VID, "Vendor ID"); this.QRP2000VID.ValidatingType = typeof(int); // // QRP2000PID // this.QRP2000PID.Location = new System.Drawing.Point(135, 65); this.QRP2000PID.Name = "QRP2000PID"; this.QRP2000PID.Size = new System.Drawing.Size(40, 20); this.QRP2000PID.TabIndex = 29; this.QRP2000PID.Text = "05dc"; this.QRP2000PID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.QRP2000PID, "Product ID"); // // radQRP2000CW1 // this.radQRP2000CW1.AutoSize = true; this.radQRP2000CW1.Checked = true; this.radQRP2000CW1.Image = null; this.radQRP2000CW1.Location = new System.Drawing.Point(27, 16); this.radQRP2000CW1.Name = "radQRP2000CW1"; this.radQRP2000CW1.Size = new System.Drawing.Size(49, 17); this.radQRP2000CW1.TabIndex = 30; this.radQRP2000CW1.TabStop = true; this.radQRP2000CW1.Text = "CW1"; this.toolTip1.SetToolTip(this.radQRP2000CW1, "PTT/CW Keyer source pin."); this.radQRP2000CW1.UseVisualStyleBackColor = true; this.radQRP2000CW1.CheckedChanged += new System.EventHandler(this.radQRP2000CW1_CheckedChanged); // // radQRP2000CW2 // this.radQRP2000CW2.AutoSize = true; this.radQRP2000CW2.Image = null; this.radQRP2000CW2.Location = new System.Drawing.Point(122, 16); this.radQRP2000CW2.Name = "radQRP2000CW2"; this.radQRP2000CW2.Size = new System.Drawing.Size(49, 17); this.radQRP2000CW2.TabIndex = 31; this.radQRP2000CW2.Text = "CW2"; this.toolTip1.SetToolTip(this.radQRP2000CW2, "PTT/CW Keyer source pin."); this.radQRP2000CW2.UseVisualStyleBackColor = true; this.radQRP2000CW2.CheckedChanged += new System.EventHandler(this.radQRP2000CW2_CheckedChanged); // // btnPAGainCalibration // this.btnPAGainCalibration.Image = null; this.btnPAGainCalibration.Location = new System.Drawing.Point(35, 266); this.btnPAGainCalibration.Name = "btnPAGainCalibration"; this.btnPAGainCalibration.Size = new System.Drawing.Size(75, 23); this.btnPAGainCalibration.TabIndex = 20; this.btnPAGainCalibration.Text = "Calibrate"; this.toolTip1.SetToolTip(this.btnPAGainCalibration, "Only for G59, G11 and G6"); this.btnPAGainCalibration.Click += new System.EventHandler(this.btnPAGainCalibration_Click); // // chkCWMonitorVAC // this.chkCWMonitorVAC.AutoSize = true; this.chkCWMonitorVAC.Image = null; this.chkCWMonitorVAC.Location = new System.Drawing.Point(39, 75); this.chkCWMonitorVAC.Name = "chkCWMonitorVAC"; this.chkCWMonitorVAC.Size = new System.Drawing.Size(84, 17); this.chkCWMonitorVAC.TabIndex = 0; this.chkCWMonitorVAC.Text = "VAC monitor"; this.toolTip1.SetToolTip(this.chkCWMonitorVAC, "Enable VAC monitor for all modes."); this.chkCWMonitorVAC.UseVisualStyleBackColor = true; this.chkCWMonitorVAC.CheckedChanged += new System.EventHandler(this.chkCWMonitorVAC_CheckedChanged); // // btnWBIRStop // this.btnWBIRStop.Image = null; this.btnWBIRStop.Location = new System.Drawing.Point(21, 15); this.btnWBIRStop.Name = "btnWBIRStop"; this.btnWBIRStop.Size = new System.Drawing.Size(75, 23); this.btnWBIRStop.TabIndex = 40; this.btnWBIRStop.Text = "Stop"; this.toolTip1.SetToolTip(this.btnWBIRStop, "Stop WBIR."); this.btnWBIRStop.Click += new System.EventHandler(this.btnWBIRStop_Click); // // btnWBIRStart // this.btnWBIRStart.Image = null; this.btnWBIRStart.Location = new System.Drawing.Point(106, 15); this.btnWBIRStart.Name = "btnWBIRStart"; this.btnWBIRStart.Size = new System.Drawing.Size(75, 23); this.btnWBIRStart.TabIndex = 41; this.btnWBIRStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnWBIRStart, "Start WBIR."); this.btnWBIRStart.Click += new System.EventHandler(this.btnWBIRStart_Click); // // chkLineMic // this.chkLineMic.AutoSize = true; this.chkLineMic.Image = null; this.chkLineMic.Location = new System.Drawing.Point(238, 290); this.chkLineMic.Name = "chkLineMic"; this.chkLineMic.Size = new System.Drawing.Size(129, 17); this.chkLineMic.TabIndex = 50; this.chkLineMic.Text = "Line/Mic shared input"; this.toolTip1.SetToolTip(this.chkLineMic, "Shared Line/Mic input"); this.chkLineMic.UseVisualStyleBackColor = true; this.chkLineMic.CheckedChanged += new System.EventHandler(this.chkLineMic_CheckedChanged); // // udG59CWSpeedCorr // this.udG59CWSpeedCorr.DecimalPlaces = 1; this.udG59CWSpeedCorr.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udG59CWSpeedCorr.Location = new System.Drawing.Point(84, 181); this.udG59CWSpeedCorr.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udG59CWSpeedCorr.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG59CWSpeedCorr.Name = "udG59CWSpeedCorr"; this.udG59CWSpeedCorr.Size = new System.Drawing.Size(51, 20); this.udG59CWSpeedCorr.TabIndex = 7; this.udG59CWSpeedCorr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG59CWSpeedCorr, "CW Keyer speed in words per minute"); this.udG59CWSpeedCorr.Value = new decimal(new int[] { 23, 0, 0, 65536}); this.udG59CWSpeedCorr.ValueChanged += new System.EventHandler(this.udG59CWSpeedCorr_ValueChanged); // // udMultiPSKServerPort // this.udMultiPSKServerPort.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udMultiPSKServerPort.Location = new System.Drawing.Point(135, 169); this.udMultiPSKServerPort.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udMultiPSKServerPort.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udMultiPSKServerPort.Name = "udMultiPSKServerPort"; this.udMultiPSKServerPort.Size = new System.Drawing.Size(58, 20); this.udMultiPSKServerPort.TabIndex = 114; this.udMultiPSKServerPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udMultiPSKServerPort, "The local port to listen CAT commands."); this.udMultiPSKServerPort.Value = new decimal(new int[] { 3020, 0, 0, 0}); // // txtLoopDll // this.txtLoopDll.Location = new System.Drawing.Point(25, 18); this.txtLoopDll.MaxLength = 64; this.txtLoopDll.Name = "txtLoopDll"; this.txtLoopDll.Size = new System.Drawing.Size(205, 20); this.txtLoopDll.TabIndex = 0; this.toolTip1.SetToolTip(this.txtLoopDll, "Loop.dll folder"); // // udWBIRTime // this.udWBIRTime.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udWBIRTime.Location = new System.Drawing.Point(110, 46); this.udWBIRTime.Maximum = new decimal(new int[] { 10000, 0, 0, 0}); this.udWBIRTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udWBIRTime.Name = "udWBIRTime"; this.udWBIRTime.Size = new System.Drawing.Size(71, 20); this.udWBIRTime.TabIndex = 42; this.udWBIRTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udWBIRTime, "During TX/RX transition WBIR is activated again."); this.udWBIRTime.Value = new decimal(new int[] { 2000, 0, 0, 0}); this.udWBIRTime.ValueChanged += new System.EventHandler(this.udWBIRTime_ValueChanged); // // btnPA10Abort // this.btnPA10Abort.Image = null; this.btnPA10Abort.Location = new System.Drawing.Point(118, 266); this.btnPA10Abort.Name = "btnPA10Abort"; this.btnPA10Abort.Size = new System.Drawing.Size(75, 23); this.btnPA10Abort.TabIndex = 40; this.btnPA10Abort.Text = "Abort"; this.toolTip1.SetToolTip(this.btnPA10Abort, "Abort calibration process!"); this.btnPA10Abort.Click += new System.EventHandler(this.btnPA10Abort_Click); // // chkIARU // this.chkIARU.Image = null; this.chkIARU.Location = new System.Drawing.Point(20, 41); this.chkIARU.Name = "chkIARU"; this.chkIARU.Size = new System.Drawing.Size(104, 32); this.chkIARU.TabIndex = 5; this.chkIARU.Text = "Outside IARU"; this.toolTip1.SetToolTip(this.chkIARU, "Allow transmit outside IARU band specifications!"); this.chkIARU.CheckedChanged += new System.EventHandler(this.chkIARU_CheckedChanged); // // radGenModelGenesisG137 // this.radGenModelGenesisG137.Image = null; this.radGenModelGenesisG137.Location = new System.Drawing.Point(22, 131); this.radGenModelGenesisG137.Name = "radGenModelGenesisG137"; this.radGenModelGenesisG137.Size = new System.Drawing.Size(104, 17); this.radGenModelGenesisG137.TabIndex = 10; this.radGenModelGenesisG137.Text = "Genesis G137"; this.toolTip1.SetToolTip(this.radGenModelGenesisG137, "Singleband transceiver for 137KHz"); this.radGenModelGenesisG137.UseVisualStyleBackColor = true; this.radGenModelGenesisG137.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG137_CheckedChanged); // // udG137Xtal1 // this.udG137Xtal1.DecimalPlaces = 6; this.udG137Xtal1.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG137Xtal1.Location = new System.Drawing.Point(45, 69); this.udG137Xtal1.Maximum = new decimal(new int[] { 999999, 0, 0, 393216}); this.udG137Xtal1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG137Xtal1.Name = "udG137Xtal1"; this.udG137Xtal1.Size = new System.Drawing.Size(80, 20); this.udG137Xtal1.TabIndex = 29; this.udG137Xtal1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG137Xtal1, "C"); this.udG137Xtal1.Value = new decimal(new int[] { 137000, 0, 0, 393216}); this.udG137Xtal1.ValueChanged += new System.EventHandler(this.udG137Xtal1_ValueChanged); // // rad3_4TXOut // this.rad3_4TXOut.AutoSize = true; this.rad3_4TXOut.Image = null; this.rad3_4TXOut.Location = new System.Drawing.Point(4, 40); this.rad3_4TXOut.Name = "rad3_4TXOut"; this.rad3_4TXOut.Size = new System.Drawing.Size(62, 17); this.rad3_4TXOut.TabIndex = 1; this.rad3_4TXOut.Text = "3/4 Out"; this.toolTip1.SetToolTip(this.rad3_4TXOut, "TX out channel pair for 4 channel sound cards."); this.rad3_4TXOut.UseVisualStyleBackColor = true; this.rad3_4TXOut.CheckedChanged += new System.EventHandler(this.rad3_4TXOut_CheckedChanged); // // rad1_2TXOut // this.rad1_2TXOut.AutoSize = true; this.rad1_2TXOut.Checked = true; this.rad1_2TXOut.Image = null; this.rad1_2TXOut.Location = new System.Drawing.Point(4, 18); this.rad1_2TXOut.Name = "rad1_2TXOut"; this.rad1_2TXOut.Size = new System.Drawing.Size(62, 17); this.rad1_2TXOut.TabIndex = 2; this.rad1_2TXOut.TabStop = true; this.rad1_2TXOut.Text = "1/2 Out"; this.toolTip1.SetToolTip(this.rad1_2TXOut, "TX out channel pair for 4 channel sound cards."); this.rad1_2TXOut.UseVisualStyleBackColor = true; this.rad1_2TXOut.CheckedChanged += new System.EventHandler(this.rad1_2TXOut_CheckedChanged); // // radGenModelGenesisG500 // this.radGenModelGenesisG500.Image = null; this.radGenModelGenesisG500.Location = new System.Drawing.Point(22, 152); this.radGenModelGenesisG500.Name = "radGenModelGenesisG500"; this.radGenModelGenesisG500.Size = new System.Drawing.Size(104, 17); this.radGenModelGenesisG500.TabIndex = 11; this.radGenModelGenesisG500.Text = "Genesis G500"; this.toolTip1.SetToolTip(this.radGenModelGenesisG500, "Singleband transceiver for 500KHz"); this.radGenModelGenesisG500.UseVisualStyleBackColor = true; this.radGenModelGenesisG500.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG500_CheckedChanged); // // udG500Xtal1 // this.udG500Xtal1.DecimalPlaces = 6; this.udG500Xtal1.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG500Xtal1.Location = new System.Drawing.Point(45, 69); this.udG500Xtal1.Maximum = new decimal(new int[] { 999999, 0, 0, 393216}); this.udG500Xtal1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG500Xtal1.Name = "udG500Xtal1"; this.udG500Xtal1.Size = new System.Drawing.Size(80, 20); this.udG500Xtal1.TabIndex = 29; this.udG500Xtal1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG500Xtal1, "C"); this.udG500Xtal1.Value = new decimal(new int[] { 137000, 0, 0, 393216}); this.udG500Xtal1.ValueChanged += new System.EventHandler(this.udG500Xtal1_ValueChanged); // // chkAudioExclusive // this.chkAudioExclusive.AutoSize = true; this.chkAudioExclusive.Image = null; this.chkAudioExclusive.Location = new System.Drawing.Point(29, 105); this.chkAudioExclusive.Name = "chkAudioExclusive"; this.chkAudioExclusive.Size = new System.Drawing.Size(86, 17); this.chkAudioExclusive.TabIndex = 3; this.chkAudioExclusive.Text = "Excl. access"; this.toolTip1.SetToolTip(this.chkAudioExclusive, "Win7 WASAPI exclusive access."); this.chkAudioExclusive.UseVisualStyleBackColor = true; this.chkAudioExclusive.CheckedChanged += new System.EventHandler(this.chkAudioExclusive_CheckedChanged); // // udFDCOmin // this.udFDCOmin.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udFDCOmin.Location = new System.Drawing.Point(140, 139); this.udFDCOmin.Maximum = new decimal(new int[] { 4900, 0, 0, 0}); this.udFDCOmin.Minimum = new decimal(new int[] { 4850, 0, 0, 0}); this.udFDCOmin.Name = "udFDCOmin"; this.udFDCOmin.Size = new System.Drawing.Size(52, 20); this.udFDCOmin.TabIndex = 13; this.udFDCOmin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udFDCOmin, "Si570 FDCO minimum value."); this.udFDCOmin.Value = new decimal(new int[] { 4850, 0, 0, 0}); this.udFDCOmin.ValueChanged += new System.EventHandler(this.udFDCOmin_ValueChanged); // // udFDCOmax // this.udFDCOmax.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udFDCOmax.Location = new System.Drawing.Point(140, 163); this.udFDCOmax.Maximum = new decimal(new int[] { 5670, 0, 0, 0}); this.udFDCOmax.Minimum = new decimal(new int[] { 5000, 0, 0, 0}); this.udFDCOmax.Name = "udFDCOmax"; this.udFDCOmax.Size = new System.Drawing.Size(52, 20); this.udFDCOmax.TabIndex = 15; this.udFDCOmax.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udFDCOmax, "Si570 FDCO maximum value."); this.udFDCOmax.Value = new decimal(new int[] { 5670, 0, 0, 0}); this.udFDCOmax.ValueChanged += new System.EventHandler(this.udFDCOmax_ValueChanged); // // chkVACExclusive // this.chkVACExclusive.AutoSize = true; this.chkVACExclusive.Image = null; this.chkVACExclusive.Location = new System.Drawing.Point(39, 96); this.chkVACExclusive.Name = "chkVACExclusive"; this.chkVACExclusive.Size = new System.Drawing.Size(86, 17); this.chkVACExclusive.TabIndex = 37; this.chkVACExclusive.Text = "Excl. access"; this.toolTip1.SetToolTip(this.chkVACExclusive, "Win7 WASAPI exclusive access."); this.chkVACExclusive.UseVisualStyleBackColor = true; this.chkVACExclusive.CheckedChanged += new System.EventHandler(this.chkVACExclusive_CheckedChanged); // // udG59XtrvIF // this.udG59XtrvIF.DecimalPlaces = 1; this.udG59XtrvIF.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udG59XtrvIF.Location = new System.Drawing.Point(64, 93); this.udG59XtrvIF.Maximum = new decimal(new int[] { 144000000, 0, 0, 0}); this.udG59XtrvIF.Minimum = new decimal(new int[] { 90000000, 0, 0, 0}); this.udG59XtrvIF.Name = "udG59XtrvIF"; this.udG59XtrvIF.Size = new System.Drawing.Size(89, 20); this.udG59XtrvIF.TabIndex = 25; this.udG59XtrvIF.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG59XtrvIF, "Local oscilator frequency for 2m XTRV."); this.udG59XtrvIF.Value = new decimal(new int[] { 116000000, 0, 0, 0}); this.udG59XtrvIF.ValueChanged += new System.EventHandler(this.udG59XtrvIF_ValueChanged); // // comboDSPBufSizeCW // this.comboDSPBufSizeCW.DisplayMember = "2048"; this.comboDSPBufSizeCW.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPBufSizeCW.DropDownWidth = 64; this.comboDSPBufSizeCW.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPBufSizeCW.Location = new System.Drawing.Point(74, 98); this.comboDSPBufSizeCW.Name = "comboDSPBufSizeCW"; this.comboDSPBufSizeCW.Size = new System.Drawing.Size(64, 21); this.comboDSPBufSizeCW.TabIndex = 19; this.toolTip1.SetToolTip(this.comboDSPBufSizeCW, "Sets DSP internal Buffer Size for CW mode -- larger yields sharper filters, more " + "latency"); this.comboDSPBufSizeCW.ValueMember = "1024"; this.comboDSPBufSizeCW.SelectedIndexChanged += new System.EventHandler(this.comboDSPBufSizeCW_SelectedIndexChanged); // // comboDSPBufSizeDigital // this.comboDSPBufSizeDigital.DisplayMember = "2048"; this.comboDSPBufSizeDigital.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPBufSizeDigital.DropDownWidth = 64; this.comboDSPBufSizeDigital.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPBufSizeDigital.Location = new System.Drawing.Point(74, 61); this.comboDSPBufSizeDigital.Name = "comboDSPBufSizeDigital"; this.comboDSPBufSizeDigital.Size = new System.Drawing.Size(64, 21); this.comboDSPBufSizeDigital.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPBufSizeDigital, "Sets DSP internal Buffer Size for Digital modes -- larger yields sharper filters," + " more latency"); this.comboDSPBufSizeDigital.ValueMember = "1024"; this.comboDSPBufSizeDigital.SelectedIndexChanged += new System.EventHandler(this.comboDSPBufSizeDigital_SelectedIndexChanged); // // udCATEthCollTime // this.udCATEthCollTime.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udCATEthCollTime.Location = new System.Drawing.Point(135, 136); this.udCATEthCollTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udCATEthCollTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCATEthCollTime.Name = "udCATEthCollTime"; this.udCATEthCollTime.Size = new System.Drawing.Size(58, 20); this.udCATEthCollTime.TabIndex = 119; this.udCATEthCollTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udCATEthCollTime, "Time to wait to accumulate CAT messgaes."); this.udCATEthCollTime.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udCATEthCollTime.ValueChanged += new System.EventHandler(this.udCATEthCollTime_ValueChanged); // // lblCATEthServerWatchdogTime // this.lblCATEthServerWatchdogTime.AutoSize = true; this.lblCATEthServerWatchdogTime.Image = null; this.lblCATEthServerWatchdogTime.Location = new System.Drawing.Point(12, 113); this.lblCATEthServerWatchdogTime.Name = "lblCATEthServerWatchdogTime"; this.lblCATEthServerWatchdogTime.Size = new System.Drawing.Size(84, 13); this.lblCATEthServerWatchdogTime.TabIndex = 122; this.lblCATEthServerWatchdogTime.Text = "WatchDog time:"; this.toolTip1.SetToolTip(this.lblCATEthServerWatchdogTime, "Server watchdog period(mS)\r\n."); // // udCATEthServerWatchdogTime // this.udCATEthServerWatchdogTime.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udCATEthServerWatchdogTime.Location = new System.Drawing.Point(135, 111); this.udCATEthServerWatchdogTime.Maximum = new decimal(new int[] { 50000, 0, 0, 0}); this.udCATEthServerWatchdogTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCATEthServerWatchdogTime.Name = "udCATEthServerWatchdogTime"; this.udCATEthServerWatchdogTime.Size = new System.Drawing.Size(58, 20); this.udCATEthServerWatchdogTime.TabIndex = 121; this.udCATEthServerWatchdogTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udCATEthServerWatchdogTime, "Server watchdog period(mS)."); this.udCATEthServerWatchdogTime.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udCATEthServerWatchdogTime.ValueChanged += new System.EventHandler(this.udCATEthServerWatchdogTime_ValueChanged); // // chkExtATU // this.chkExtATU.AutoSize = true; this.chkExtATU.Image = null; this.chkExtATU.Location = new System.Drawing.Point(24, 34); this.chkExtATU.Name = "chkExtATU"; this.chkExtATU.Size = new System.Drawing.Size(89, 17); this.chkExtATU.TabIndex = 9; this.chkExtATU.Text = "External ATU"; this.toolTip1.SetToolTip(this.chkExtATU, "External ATU present."); this.chkExtATU.UseVisualStyleBackColor = true; this.chkExtATU.CheckedChanged += new System.EventHandler(this.chkG59ExtATU_CheckedChanged); // // chkIambicBMode // this.chkIambicBMode.AutoSize = true; this.chkIambicBMode.Image = null; this.chkIambicBMode.Location = new System.Drawing.Point(25, 59); this.chkIambicBMode.Name = "chkIambicBMode"; this.chkIambicBMode.Size = new System.Drawing.Size(92, 17); this.chkIambicBMode.TabIndex = 9; this.chkIambicBMode.Text = "Keyer B mode"; this.toolTip1.SetToolTip(this.chkIambicBMode, "Iambic B mode"); this.chkIambicBMode.UseVisualStyleBackColor = true; this.chkIambicBMode.CheckedChanged += new System.EventHandler(this.chkG59IambicBMode_CheckedChanged); // // comboKeyerConnPTTLine // this.comboKeyerConnPTTLine.DisplayMember = "None"; this.comboKeyerConnPTTLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnPTTLine.DropDownWidth = 64; this.comboKeyerConnPTTLine.Items.AddRange(new object[] { "None", "DCD", "CTS", "DTR"}); this.comboKeyerConnPTTLine.Location = new System.Drawing.Point(61, 118); this.comboKeyerConnPTTLine.Name = "comboKeyerConnPTTLine"; this.comboKeyerConnPTTLine.Size = new System.Drawing.Size(64, 21); this.comboKeyerConnPTTLine.TabIndex = 55; this.toolTip1.SetToolTip(this.comboKeyerConnPTTLine, "Sets the COM port line that triggers PTT."); this.comboKeyerConnPTTLine.ValueMember = "None"; this.comboKeyerConnPTTLine.Visible = false; this.comboKeyerConnPTTLine.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnPTTLine_SelectedIndexChanged); // // udG59TXSwitchTime // this.udG59TXSwitchTime.Increment = new decimal(new int[] { 3, 0, 0, 0}); this.udG59TXSwitchTime.Location = new System.Drawing.Point(116, 26); this.udG59TXSwitchTime.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udG59TXSwitchTime.Minimum = new decimal(new int[] { 3, 0, 0, 0}); this.udG59TXSwitchTime.Name = "udG59TXSwitchTime"; this.udG59TXSwitchTime.Size = new System.Drawing.Size(57, 20); this.udG59TXSwitchTime.TabIndex = 6; this.udG59TXSwitchTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG59TXSwitchTime, "Time delay for transmiter start in mS."); this.udG59TXSwitchTime.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udG59TXSwitchTime.ValueChanged += new System.EventHandler(this.udG59TXSwitchTime_ValueChanged); // // chkTX_IF_shift // this.chkTX_IF_shift.AutoSize = true; this.chkTX_IF_shift.Image = null; this.chkTX_IF_shift.Location = new System.Drawing.Point(32, 55); this.chkTX_IF_shift.Name = "chkTX_IF_shift"; this.chkTX_IF_shift.Size = new System.Drawing.Size(74, 17); this.chkTX_IF_shift.TabIndex = 4; this.chkTX_IF_shift.Text = "TX IF shift"; this.toolTip1.SetToolTip(this.chkTX_IF_shift, "Enable\\Disable TX IF fuction."); this.chkTX_IF_shift.UseVisualStyleBackColor = true; this.chkTX_IF_shift.CheckedChanged += new System.EventHandler(this.chkTX_IF_shift_CheckedChanged); // // udtTX_IF_SHIFT // this.udtTX_IF_SHIFT.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udtTX_IF_SHIFT.Location = new System.Drawing.Point(116, 81); this.udtTX_IF_SHIFT.Maximum = new decimal(new int[] { 96000, 0, 0, 0}); this.udtTX_IF_SHIFT.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udtTX_IF_SHIFT.Name = "udtTX_IF_SHIFT"; this.udtTX_IF_SHIFT.Size = new System.Drawing.Size(57, 20); this.udtTX_IF_SHIFT.TabIndex = 3; this.udtTX_IF_SHIFT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udtTX_IF_SHIFT, "TX IF in Hz."); this.udtTX_IF_SHIFT.Value = new decimal(new int[] { 11250, 0, 0, 0}); this.udtTX_IF_SHIFT.ValueChanged += new System.EventHandler(this.udtTX_IF_SHIFT_ValueChanged); // // chkButtonZoom // this.chkButtonZoom.AutoSize = true; this.chkButtonZoom.Image = null; this.chkButtonZoom.Location = new System.Drawing.Point(16, 266); this.chkButtonZoom.Name = "chkButtonZoom"; this.chkButtonZoom.Size = new System.Drawing.Size(102, 17); this.chkButtonZoom.TabIndex = 19; this.chkButtonZoom.Text = "Button magnifier"; this.toolTip1.SetToolTip(this.chkButtonZoom, "2x button magnifier."); this.chkButtonZoom.UseVisualStyleBackColor = true; this.chkButtonZoom.CheckedChanged += new System.EventHandler(this.chkButtonZoom_CheckedChanged); // // udATUFullTune // this.udATUFullTune.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udATUFullTune.Location = new System.Drawing.Point(121, 26); this.udATUFullTune.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udATUFullTune.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udATUFullTune.Name = "udATUFullTune"; this.udATUFullTune.Size = new System.Drawing.Size(50, 20); this.udATUFullTune.TabIndex = 0; this.udATUFullTune.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udATUFullTune, "ATU full tune switch time."); this.udATUFullTune.Value = new decimal(new int[] { 3500, 0, 0, 0}); this.udATUFullTune.ValueChanged += new System.EventHandler(this.udATUFullTune_ValueChanged); // // udATUMemoryTune // this.udATUMemoryTune.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udATUMemoryTune.Location = new System.Drawing.Point(121, 63); this.udATUMemoryTune.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udATUMemoryTune.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udATUMemoryTune.Name = "udATUMemoryTune"; this.udATUMemoryTune.Size = new System.Drawing.Size(50, 20); this.udATUMemoryTune.TabIndex = 1; this.udATUMemoryTune.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udATUMemoryTune, "ATU memory tune switch time."); this.udATUMemoryTune.Value = new decimal(new int[] { 525, 0, 0, 0}); this.udATUMemoryTune.ValueChanged += new System.EventHandler(this.udATUMemoryTune_ValueChanged); // // udATUBypass // this.udATUBypass.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udATUBypass.Location = new System.Drawing.Point(121, 100); this.udATUBypass.Maximum = new decimal(new int[] { 500, 0, 0, 0}); this.udATUBypass.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udATUBypass.Name = "udATUBypass"; this.udATUBypass.Size = new System.Drawing.Size(50, 20); this.udATUBypass.TabIndex = 2; this.udATUBypass.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udATUBypass, "ATU bypass switch time."); this.udATUBypass.Value = new decimal(new int[] { 80, 0, 0, 0}); this.udATUBypass.ValueChanged += new System.EventHandler(this.udATUBypass_ValueChanged); // // lblATUFullTune // this.lblATUFullTune.AutoSize = true; this.lblATUFullTune.Image = null; this.lblATUFullTune.Location = new System.Drawing.Point(32, 28); this.lblATUFullTune.Name = "lblATUFullTune"; this.lblATUFullTune.Size = new System.Drawing.Size(56, 13); this.lblATUFullTune.TabIndex = 3; this.lblATUFullTune.Text = "Full TUNE"; this.toolTip1.SetToolTip(this.lblATUFullTune, "Full tune switch time."); // // udATUCarrierTime // this.udATUCarrierTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udATUCarrierTime.Location = new System.Drawing.Point(121, 137); this.udATUCarrierTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udATUCarrierTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udATUCarrierTime.Name = "udATUCarrierTime"; this.udATUCarrierTime.Size = new System.Drawing.Size(50, 20); this.udATUCarrierTime.TabIndex = 6; this.udATUCarrierTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udATUCarrierTime, "ATU carrier delay time."); this.udATUCarrierTime.Value = new decimal(new int[] { 1000, 0, 0, 0}); this.udATUCarrierTime.ValueChanged += new System.EventHandler(this.udATUCarrierTime_ValueChanged); // // rad1_2RXIn // this.rad1_2RXIn.AutoSize = true; this.rad1_2RXIn.Checked = true; this.rad1_2RXIn.Image = null; this.rad1_2RXIn.Location = new System.Drawing.Point(5, 18); this.rad1_2RXIn.Name = "rad1_2RXIn"; this.rad1_2RXIn.Size = new System.Drawing.Size(54, 17); this.rad1_2RXIn.TabIndex = 5; this.rad1_2RXIn.TabStop = true; this.rad1_2RXIn.Text = "1/2 In"; this.toolTip1.SetToolTip(this.rad1_2RXIn, "RX input channel pair for 4 channel sound cards."); this.rad1_2RXIn.UseVisualStyleBackColor = true; this.rad1_2RXIn.CheckedChanged += new System.EventHandler(this.rad1_2RXIn_CheckedChanged); // // rad3_4RXIn // this.rad3_4RXIn.AutoSize = true; this.rad3_4RXIn.Image = null; this.rad3_4RXIn.Location = new System.Drawing.Point(5, 40); this.rad3_4RXIn.Name = "rad3_4RXIn"; this.rad3_4RXIn.Size = new System.Drawing.Size(54, 17); this.rad3_4RXIn.TabIndex = 4; this.rad3_4RXIn.Text = "3/4 In"; this.toolTip1.SetToolTip(this.rad3_4RXIn, "RX input channel pair for 4 channel sound cards."); this.rad3_4RXIn.UseVisualStyleBackColor = true; this.rad3_4RXIn.CheckedChanged += new System.EventHandler(this.rad3_4RXIn_CheckedChanged); // // chkG59_PTT_Inv // this.chkG59_PTT_Inv.AutoSize = true; this.chkG59_PTT_Inv.Image = null; this.chkG59_PTT_Inv.Location = new System.Drawing.Point(40, 112); this.chkG59_PTT_Inv.Name = "chkG59_PTT_Inv"; this.chkG59_PTT_Inv.Size = new System.Drawing.Size(123, 17); this.chkG59_PTT_Inv.TabIndex = 9; this.chkG59_PTT_Inv.Text = "Ext PA PTT inverted"; this.toolTip1.SetToolTip(this.chkG59_PTT_Inv, "Check this if you wish PTT output inverted."); this.chkG59_PTT_Inv.UseVisualStyleBackColor = true; this.chkG59_PTT_Inv.CheckedChanged += new System.EventHandler(this.chkG59_PTT_Inv_CheckedChanged); // // chkVFOB_extend // this.chkVFOB_extend.Image = null; this.chkVFOB_extend.Location = new System.Drawing.Point(20, 73); this.chkVFOB_extend.Name = "chkVFOB_extend"; this.chkVFOB_extend.Size = new System.Drawing.Size(104, 32); this.chkVFOB_extend.TabIndex = 6; this.chkVFOB_extend.Text = "VFOB extend"; this.toolTip1.SetToolTip(this.chkVFOB_extend, "VFOB extend fro SPLIT operation."); this.chkVFOB_extend.CheckedChanged += new System.EventHandler(this.chkVFOB_extend_CheckedChanged); // // radGenModelGenesisG11 // this.radGenModelGenesisG11.Image = null; this.radGenModelGenesisG11.Location = new System.Drawing.Point(22, 173); this.radGenModelGenesisG11.Name = "radGenModelGenesisG11"; this.radGenModelGenesisG11.Size = new System.Drawing.Size(104, 17); this.radGenModelGenesisG11.TabIndex = 12; this.radGenModelGenesisG11.Text = "Genesis G11"; this.toolTip1.SetToolTip(this.radGenModelGenesisG11, "Single/Dual/Multi band transceiver for LF/HF/VHF"); this.radGenModelGenesisG11.UseVisualStyleBackColor = true; this.radGenModelGenesisG11.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG11_CheckedChanged); // // udG11XTRVLosc // this.udG11XTRVLosc.DecimalPlaces = 1; this.udG11XTRVLosc.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udG11XTRVLosc.Location = new System.Drawing.Point(74, 45); this.udG11XTRVLosc.Maximum = new decimal(new int[] { 144000000, 0, 0, 0}); this.udG11XTRVLosc.Minimum = new decimal(new int[] { 90000000, 0, 0, 0}); this.udG11XTRVLosc.Name = "udG11XTRVLosc"; this.udG11XTRVLosc.Size = new System.Drawing.Size(89, 20); this.udG11XTRVLosc.TabIndex = 25; this.udG11XTRVLosc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG11XTRVLosc, "Local oscilator frequency for 2m XTRV."); this.udG11XTRVLosc.Value = new decimal(new int[] { 116000000, 0, 0, 0}); this.udG11XTRVLosc.ValueChanged += new System.EventHandler(this.udG11XTRVLosc_ValueChanged); // // udMultimeterCalValue // this.udMultimeterCalValue.DecimalPlaces = 3; this.udMultimeterCalValue.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udMultimeterCalValue.Location = new System.Drawing.Point(84, 77); this.udMultimeterCalValue.Maximum = new decimal(new int[] { 150, 0, 0, 0}); this.udMultimeterCalValue.Minimum = new decimal(new int[] { 150, 0, 0, -2147483648}); this.udMultimeterCalValue.Name = "udMultimeterCalValue"; this.udMultimeterCalValue.Size = new System.Drawing.Size(72, 20); this.udMultimeterCalValue.TabIndex = 6; this.udMultimeterCalValue.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udMultimeterCalValue, "SMeter calibration reference level"); this.udMultimeterCalValue.Value = new decimal(new int[] { 25150, 0, 0, -2147287040}); this.udMultimeterCalValue.ValueChanged += new System.EventHandler(this.udMultimeterCalValue_ValueChanged); // // udDisplayCalValue // this.udDisplayCalValue.DecimalPlaces = 3; this.udDisplayCalValue.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udDisplayCalValue.Location = new System.Drawing.Point(84, 105); this.udDisplayCalValue.Maximum = new decimal(new int[] { 150, 0, 0, 0}); this.udDisplayCalValue.Minimum = new decimal(new int[] { 250, 0, 0, -2147483648}); this.udDisplayCalValue.Name = "udDisplayCalValue"; this.udDisplayCalValue.Size = new System.Drawing.Size(72, 20); this.udDisplayCalValue.TabIndex = 8; this.udDisplayCalValue.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udDisplayCalValue, "Display calibration reference level"); this.udDisplayCalValue.Value = new decimal(new int[] { 25150, 0, 0, -2147287040}); this.udDisplayCalValue.ValueChanged += new System.EventHandler(this.udDisplayCalValue_ValueChanged); // // udCWKeyerFall // this.udCWKeyerFall.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerFall.Location = new System.Drawing.Point(80, 70); this.udCWKeyerFall.Maximum = new decimal(new int[] { 25, 0, 0, 0}); this.udCWKeyerFall.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCWKeyerFall.Name = "udCWKeyerFall"; this.udCWKeyerFall.Size = new System.Drawing.Size(40, 20); this.udCWKeyerFall.TabIndex = 44; this.toolTip1.SetToolTip(this.udCWKeyerFall, "The falling edge of the tone."); this.udCWKeyerFall.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udCWKeyerFall.ValueChanged += new System.EventHandler(this.udCWKeyerFall_ValueChanged); // // udRXShift // this.udRXShift.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udRXShift.Location = new System.Drawing.Point(59, 85); this.udRXShift.Maximum = new decimal(new int[] { 48000, 0, 0, 0}); this.udRXShift.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udRXShift.Name = "udRXShift"; this.udRXShift.Size = new System.Drawing.Size(60, 20); this.udRXShift.TabIndex = 44; this.udRXShift.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udRXShift, "VAC Direct I/Q RX Shift value."); this.udRXShift.Value = new decimal(new int[] { 24000, 0, 0, 0}); this.udRXShift.ValueChanged += new System.EventHandler(this.udRXShift_ValueChanged); // // udVACPhase // this.udVACPhase.DecimalPlaces = 2; this.udVACPhase.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udVACPhase.Location = new System.Drawing.Point(128, 34); this.udVACPhase.Maximum = new decimal(new int[] { 400, 0, 0, 0}); this.udVACPhase.Minimum = new decimal(new int[] { 400, 0, 0, -2147483648}); this.udVACPhase.Name = "udVACPhase"; this.udVACPhase.Size = new System.Drawing.Size(56, 20); this.udVACPhase.TabIndex = 48; this.udVACPhase.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udVACPhase, "Sets the phase offset between the I and Q channels. "); this.udVACPhase.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udVACPhase.ValueChanged += new System.EventHandler(this.udVACPhase_ValueChanged); // // udVACGain // this.udVACGain.DecimalPlaces = 2; this.udVACGain.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udVACGain.Location = new System.Drawing.Point(128, 77); this.udVACGain.Maximum = new decimal(new int[] { 400, 0, 0, 0}); this.udVACGain.Minimum = new decimal(new int[] { 400, 0, 0, -2147483648}); this.udVACGain.Name = "udVACGain"; this.udVACGain.Size = new System.Drawing.Size(56, 20); this.udVACGain.TabIndex = 50; this.udVACGain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udVACGain, "VAC Direct I/Q output Gain correction."); this.udVACGain.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udVACGain.ValueChanged += new System.EventHandler(this.udVACGain_ValueChanged); // // udG59PTT_ON_time // this.udG59PTT_ON_time.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udG59PTT_ON_time.Location = new System.Drawing.Point(80, 66); this.udG59PTT_ON_time.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udG59PTT_ON_time.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG59PTT_ON_time.Name = "udG59PTT_ON_time"; this.udG59PTT_ON_time.Size = new System.Drawing.Size(58, 20); this.udG59PTT_ON_time.TabIndex = 27; this.udG59PTT_ON_time.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG59PTT_ON_time, "Delay for external PA in RX/TX transition."); this.udG59PTT_ON_time.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udG59PTT_ON_time.ValueChanged += new System.EventHandler(this.udG59PTT_ON_time_ValueChanged); // // chkG59ExtPA // this.chkG59ExtPA.AutoSize = true; this.chkG59ExtPA.Image = null; this.chkG59ExtPA.Location = new System.Drawing.Point(40, 29); this.chkG59ExtPA.Name = "chkG59ExtPA"; this.chkG59ExtPA.Size = new System.Drawing.Size(96, 17); this.chkG59ExtPA.TabIndex = 28; this.chkG59ExtPA.Text = "Ext PA present"; this.toolTip1.SetToolTip(this.chkG59ExtPA, "Check this if external PA present in system."); this.chkG59ExtPA.UseVisualStyleBackColor = true; this.chkG59ExtPA.CheckedChanged += new System.EventHandler(this.chkG59ExtPA_CheckedChanged); // // udG59PTT_OFF_time // this.udG59PTT_OFF_time.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udG59PTT_OFF_time.Location = new System.Drawing.Point(80, 88); this.udG59PTT_OFF_time.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udG59PTT_OFF_time.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG59PTT_OFF_time.Name = "udG59PTT_OFF_time"; this.udG59PTT_OFF_time.Size = new System.Drawing.Size(58, 20); this.udG59PTT_OFF_time.TabIndex = 29; this.udG59PTT_OFF_time.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG59PTT_OFF_time, "Delay for external PA in TX/RX transition."); this.udG59PTT_OFF_time.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udG59PTT_OFF_time.ValueChanged += new System.EventHandler(this.udG59PTT_OFF_time_ValueChanged); // // udPrimaryGain // this.udPrimaryGain.DecimalPlaces = 2; this.udPrimaryGain.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udPrimaryGain.Location = new System.Drawing.Point(131, 71); this.udPrimaryGain.Maximum = new decimal(new int[] { 400, 0, 0, 0}); this.udPrimaryGain.Minimum = new decimal(new int[] { 400, 0, 0, -2147483648}); this.udPrimaryGain.Name = "udPrimaryGain"; this.udPrimaryGain.Size = new System.Drawing.Size(56, 20); this.udPrimaryGain.TabIndex = 50; this.udPrimaryGain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udPrimaryGain, "Direct I/Q output Gain correction."); this.udPrimaryGain.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udPrimaryGain.ValueChanged += new System.EventHandler(this.udPrimaryGain_ValueChanged); // // udPrimaryPhase // this.udPrimaryPhase.DecimalPlaces = 2; this.udPrimaryPhase.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udPrimaryPhase.Location = new System.Drawing.Point(131, 28); this.udPrimaryPhase.Maximum = new decimal(new int[] { 400, 0, 0, 0}); this.udPrimaryPhase.Minimum = new decimal(new int[] { 400, 0, 0, -2147483648}); this.udPrimaryPhase.Name = "udPrimaryPhase"; this.udPrimaryPhase.Size = new System.Drawing.Size(56, 20); this.udPrimaryPhase.TabIndex = 48; this.udPrimaryPhase.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udPrimaryPhase, "Direct I/Q output Phase correction."); this.udPrimaryPhase.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udPrimaryPhase.ValueChanged += new System.EventHandler(this.udPrimaryPhase_ValueChanged); // // udPrimaryRXshift // this.udPrimaryRXshift.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udPrimaryRXshift.Location = new System.Drawing.Point(58, 76); this.udPrimaryRXshift.Maximum = new decimal(new int[] { 48000, 0, 0, 0}); this.udPrimaryRXshift.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPrimaryRXshift.Name = "udPrimaryRXshift"; this.udPrimaryRXshift.Size = new System.Drawing.Size(60, 20); this.udPrimaryRXshift.TabIndex = 44; this.udPrimaryRXshift.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udPrimaryRXshift, "Direct I/Q RX Shift value."); this.udPrimaryRXshift.Value = new decimal(new int[] { 24000, 0, 0, 0}); this.udPrimaryRXshift.ValueChanged += new System.EventHandler(this.udPrimaryRXshift_ValueChanged); // // chkG11RXIndependent // this.chkG11RXIndependent.AutoSize = true; this.chkG11RXIndependent.Image = null; this.chkG11RXIndependent.Location = new System.Drawing.Point(10, 20); this.chkG11RXIndependent.Name = "chkG11RXIndependent"; this.chkG11RXIndependent.Size = new System.Drawing.Size(123, 17); this.chkG11RXIndependent.TabIndex = 6; this.chkG11RXIndependent.Text = "Independent RX/TX"; this.toolTip1.SetToolTip(this.chkG11RXIndependent, "Force RX2 to be RX/TX signal source."); this.chkG11RXIndependent.UseVisualStyleBackColor = true; this.chkG11RXIndependent.CheckedChanged += new System.EventHandler(this.chkG11RXIndependent_CheckedChanged); // // chG59XTRV_separate_RX_TX // this.chG59XTRV_separate_RX_TX.AutoSize = true; this.chG59XTRV_separate_RX_TX.Image = null; this.chG59XTRV_separate_RX_TX.Location = new System.Drawing.Point(20, 61); this.chG59XTRV_separate_RX_TX.Name = "chG59XTRV_separate_RX_TX"; this.chG59XTRV_separate_RX_TX.Size = new System.Drawing.Size(123, 17); this.chG59XTRV_separate_RX_TX.TabIndex = 6; this.chG59XTRV_separate_RX_TX.Text = "Independent RX/TX"; this.toolTip1.SetToolTip(this.chG59XTRV_separate_RX_TX, "Force RX2 to be RX/TX signal source."); this.chG59XTRV_separate_RX_TX.UseVisualStyleBackColor = true; this.chG59XTRV_separate_RX_TX.CheckedChanged += new System.EventHandler(this.chkXTRV_separate_RX_TX_CheckedChanged); // // comboNewVFOSMeterSignal // this.comboNewVFOSMeterSignal.FormattingEnabled = true; this.comboNewVFOSMeterSignal.Items.AddRange(new object[] { "Signal", "Signal avg", "ADC L", "ADC R"}); this.comboNewVFOSMeterSignal.Location = new System.Drawing.Point(33, 135); this.comboNewVFOSMeterSignal.Name = "comboNewVFOSMeterSignal"; this.comboNewVFOSMeterSignal.Size = new System.Drawing.Size(110, 21); this.comboNewVFOSMeterSignal.TabIndex = 4; this.toolTip1.SetToolTip(this.comboNewVFOSMeterSignal, "Op. mode for Signal"); this.comboNewVFOSMeterSignal.SelectedIndexChanged += new System.EventHandler(this.comboNewVFOSMeterSignal_SelectedIndexChanged); // // btnSave // this.btnSave.Image = null; this.btnSave.Location = new System.Drawing.Point(117, 376); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(75, 31); this.btnSave.TabIndex = 20; this.btnSave.Text = "Save"; this.toolTip1.SetToolTip(this.btnSave, "Save current settings to file and close form."); this.btnSave.Click += new System.EventHandler(this.btnSave_Click); // // udUSBSerialNo // this.udUSBSerialNo.Enabled = false; this.udUSBSerialNo.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udUSBSerialNo.Location = new System.Drawing.Point(22, 115); this.udUSBSerialNo.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udUSBSerialNo.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udUSBSerialNo.Name = "udUSBSerialNo"; this.udUSBSerialNo.Size = new System.Drawing.Size(52, 20); this.udUSBSerialNo.TabIndex = 17; this.udUSBSerialNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udUSBSerialNo, "USB serial number."); this.udUSBSerialNo.Value = new decimal(new int[] { 1, 0, 0, 0}); this.udUSBSerialNo.ValueChanged += new System.EventHandler(this.udUSBSerialNo_ValueChanged); // // chkUSBSerialNo // this.chkUSBSerialNo.AutoSize = true; this.chkUSBSerialNo.Image = null; this.chkUSBSerialNo.Location = new System.Drawing.Point(5, 118); this.chkUSBSerialNo.Name = "chkUSBSerialNo"; this.chkUSBSerialNo.Size = new System.Drawing.Size(15, 14); this.chkUSBSerialNo.TabIndex = 43; this.toolTip1.SetToolTip(this.chkUSBSerialNo, "Enable USB serial number."); this.chkUSBSerialNo.UseVisualStyleBackColor = true; this.chkUSBSerialNo.CheckedChanged += new System.EventHandler(this.chkUSBSerialNo_CheckedChanged); // // udAudioLatencyVAC // this.udAudioLatencyVAC.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udAudioLatencyVAC.Location = new System.Drawing.Point(16, 40); this.udAudioLatencyVAC.Maximum = new decimal(new int[] { 240, 0, 0, 0}); this.udAudioLatencyVAC.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAudioLatencyVAC.Name = "udAudioLatencyVAC"; this.udAudioLatencyVAC.Size = new System.Drawing.Size(48, 20); this.udAudioLatencyVAC.TabIndex = 36; this.udAudioLatencyVAC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udAudioLatencyVAC, "VAC latency"); this.udAudioLatencyVAC.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udAudioLatencyVAC.ValueChanged += new System.EventHandler(this.udAudioLatency2_ValueChanged); this.udAudioLatencyVAC.LostFocus += new System.EventHandler(this.udAudioLatency2_LostFocus); // // chkLargeRBBuffer // this.chkLargeRBBuffer.AutoSize = true; this.chkLargeRBBuffer.Image = null; this.chkLargeRBBuffer.Location = new System.Drawing.Point(39, 118); this.chkLargeRBBuffer.Name = "chkLargeRBBuffer"; this.chkLargeRBBuffer.Size = new System.Drawing.Size(101, 17); this.chkLargeRBBuffer.TabIndex = 73; this.chkLargeRBBuffer.Text = "Large RB buffer"; this.toolTip1.SetToolTip(this.chkLargeRBBuffer, "Larger VAC RingBuffer size."); this.chkLargeRBBuffer.UseVisualStyleBackColor = true; this.chkLargeRBBuffer.CheckedChanged += new System.EventHandler(this.chkLargeRBBuffer_CheckedChanged); // // btnTXProfileRestore // this.btnTXProfileRestore.Location = new System.Drawing.Point(41, 75); this.btnTXProfileRestore.Name = "btnTXProfileRestore"; this.btnTXProfileRestore.Size = new System.Drawing.Size(55, 21); this.btnTXProfileRestore.TabIndex = 3; this.btnTXProfileRestore.Text = "Restore"; this.toolTip1.SetToolTip(this.btnTXProfileRestore, "Click to restore TXProfile settings."); this.btnTXProfileRestore.Click += new System.EventHandler(this.btnTXProfileRestore_Click); // // tbPrimaryGain // this.tbPrimaryGain.AutoSize = false; this.tbPrimaryGain.Location = new System.Drawing.Point(190, 66); this.tbPrimaryGain.Maximum = 400; this.tbPrimaryGain.Minimum = -400; this.tbPrimaryGain.Name = "tbPrimaryGain"; this.tbPrimaryGain.Size = new System.Drawing.Size(72, 25); this.tbPrimaryGain.TabIndex = 41; this.tbPrimaryGain.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbPrimaryGain, "Direct I/Q output Gain correction."); this.tbPrimaryGain.Scroll += new System.EventHandler(this.tbPrimaryGain_Scroll); // // chkPrimaryRXshiftEnabled // this.chkPrimaryRXshiftEnabled.AutoSize = true; this.chkPrimaryRXshiftEnabled.Image = null; this.chkPrimaryRXshiftEnabled.Location = new System.Drawing.Point(12, 57); this.chkPrimaryRXshiftEnabled.Name = "chkPrimaryRXshiftEnabled"; this.chkPrimaryRXshiftEnabled.Size = new System.Drawing.Size(98, 17); this.chkPrimaryRXshiftEnabled.TabIndex = 46; this.chkPrimaryRXshiftEnabled.Text = "RX shift enable"; this.toolTip1.SetToolTip(this.chkPrimaryRXshiftEnabled, "Direct I/Q RX Shift enable."); this.chkPrimaryRXshiftEnabled.UseVisualStyleBackColor = true; this.chkPrimaryRXshiftEnabled.CheckedChanged += new System.EventHandler(this.chkPrimaryRXshift_CheckedChanged); // // tbPrimaryPhase // this.tbPrimaryPhase.AutoSize = false; this.tbPrimaryPhase.Location = new System.Drawing.Point(190, 23); this.tbPrimaryPhase.Maximum = 400; this.tbPrimaryPhase.Minimum = -400; this.tbPrimaryPhase.Name = "tbPrimaryPhase"; this.tbPrimaryPhase.Size = new System.Drawing.Size(72, 25); this.tbPrimaryPhase.TabIndex = 40; this.tbPrimaryPhase.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbPrimaryPhase, "Direct I/Q output Phase correction."); this.tbPrimaryPhase.Scroll += new System.EventHandler(this.tbPrimaryPhase_Scroll); // // chkPrimaryI_Qcorrection // this.chkPrimaryI_Qcorrection.AutoSize = true; this.chkPrimaryI_Qcorrection.Image = null; this.chkPrimaryI_Qcorrection.Location = new System.Drawing.Point(12, 38); this.chkPrimaryI_Qcorrection.Name = "chkPrimaryI_Qcorrection"; this.chkPrimaryI_Qcorrection.Size = new System.Drawing.Size(87, 17); this.chkPrimaryI_Qcorrection.TabIndex = 39; this.chkPrimaryI_Qcorrection.Text = "IQ correction"; this.toolTip1.SetToolTip(this.chkPrimaryI_Qcorrection, "Dirtect I/Q output IQ correction."); this.chkPrimaryI_Qcorrection.UseVisualStyleBackColor = true; this.chkPrimaryI_Qcorrection.CheckedChanged += new System.EventHandler(this.chkPrimaryI_Qcorrection_CheckedChanged); // // chkPrimaryDirectI_Q // this.chkPrimaryDirectI_Q.AutoSize = true; this.chkPrimaryDirectI_Q.Image = null; this.chkPrimaryDirectI_Q.Location = new System.Drawing.Point(12, 19); this.chkPrimaryDirectI_Q.Name = "chkPrimaryDirectI_Q"; this.chkPrimaryDirectI_Q.Size = new System.Drawing.Size(59, 17); this.chkPrimaryDirectI_Q.TabIndex = 38; this.chkPrimaryDirectI_Q.Text = "Enable"; this.toolTip1.SetToolTip(this.chkPrimaryDirectI_Q, "Enable Direct I/Q output"); this.chkPrimaryDirectI_Q.UseVisualStyleBackColor = true; this.chkPrimaryDirectI_Q.CheckedChanged += new System.EventHandler(this.chkPrimaryDirectI_Q_CheckedChanged); // // tbVACGain // this.tbVACGain.AutoSize = false; this.tbVACGain.Location = new System.Drawing.Point(187, 72); this.tbVACGain.Maximum = 400; this.tbVACGain.Minimum = -400; this.tbVACGain.Name = "tbVACGain"; this.tbVACGain.Size = new System.Drawing.Size(72, 25); this.tbVACGain.TabIndex = 41; this.tbVACGain.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbVACGain, "VAC Direct I/Q output Gain correction."); this.tbVACGain.Scroll += new System.EventHandler(this.tbVACGain_Scroll); // // chkVACRXShiftEnable // this.chkVACRXShiftEnable.AutoSize = true; this.chkVACRXShiftEnable.Image = null; this.chkVACRXShiftEnable.Location = new System.Drawing.Point(12, 66); this.chkVACRXShiftEnable.Name = "chkVACRXShiftEnable"; this.chkVACRXShiftEnable.Size = new System.Drawing.Size(98, 17); this.chkVACRXShiftEnable.TabIndex = 46; this.chkVACRXShiftEnable.Text = "RX shift enable"; this.toolTip1.SetToolTip(this.chkVACRXShiftEnable, "VAC Direct I/Q RX Shift."); this.chkVACRXShiftEnable.UseVisualStyleBackColor = true; this.chkVACRXShiftEnable.CheckedChanged += new System.EventHandler(this.chkVACRXShiftEnable_CheckedChanged); // // tbVACPhase // this.tbVACPhase.AutoSize = false; this.tbVACPhase.Location = new System.Drawing.Point(187, 29); this.tbVACPhase.Maximum = 400; this.tbVACPhase.Minimum = -400; this.tbVACPhase.Name = "tbVACPhase"; this.tbVACPhase.Size = new System.Drawing.Size(72, 25); this.tbVACPhase.TabIndex = 40; this.tbVACPhase.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbVACPhase, "VAC Direct I/Q output Phase correction."); this.tbVACPhase.Scroll += new System.EventHandler(this.tbVACPhase_Scroll); // // chkVACCorrection // this.chkVACCorrection.AutoSize = true; this.chkVACCorrection.Image = null; this.chkVACCorrection.Location = new System.Drawing.Point(12, 43); this.chkVACCorrection.Name = "chkVACCorrection"; this.chkVACCorrection.Size = new System.Drawing.Size(87, 17); this.chkVACCorrection.TabIndex = 39; this.chkVACCorrection.Text = "IQ correction"; this.toolTip1.SetToolTip(this.chkVACCorrection, "VAC Direct I/Q output correction."); this.chkVACCorrection.UseVisualStyleBackColor = true; this.chkVACCorrection.CheckedChanged += new System.EventHandler(this.chkVACCorrection_CheckedChanged); // // chkVACDirectI_Q // this.chkVACDirectI_Q.AutoSize = true; this.chkVACDirectI_Q.Image = null; this.chkVACDirectI_Q.Location = new System.Drawing.Point(12, 20); this.chkVACDirectI_Q.Name = "chkVACDirectI_Q"; this.chkVACDirectI_Q.Size = new System.Drawing.Size(59, 17); this.chkVACDirectI_Q.TabIndex = 38; this.chkVACDirectI_Q.Text = "Enable"; this.toolTip1.SetToolTip(this.chkVACDirectI_Q, "Enable VAC Direct I/Q output."); this.chkVACDirectI_Q.UseVisualStyleBackColor = true; this.chkVACDirectI_Q.CheckedChanged += new System.EventHandler(this.chkDirectI_Q_CheckedChanged); // // udQRP2000_Si570Xtal // this.udQRP2000_Si570Xtal.DecimalPlaces = 6; this.udQRP2000_Si570Xtal.Increment = new decimal(new int[] { 1, 0, 0, 196608}); this.udQRP2000_Si570Xtal.Location = new System.Drawing.Point(85, 90); this.udQRP2000_Si570Xtal.Maximum = new decimal(new int[] { 120, 0, 0, 0}); this.udQRP2000_Si570Xtal.Minimum = new decimal(new int[] { 110, 0, 0, 0}); this.udQRP2000_Si570Xtal.Name = "udQRP2000_Si570Xtal"; this.udQRP2000_Si570Xtal.Size = new System.Drawing.Size(93, 20); this.udQRP2000_Si570Xtal.TabIndex = 41; this.udQRP2000_Si570Xtal.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udQRP2000_Si570Xtal, "Si570 internal Xtal reference"); this.udQRP2000_Si570Xtal.Value = new decimal(new int[] { 114285000, 0, 0, 393216}); // // btnQRP2000XtalSet // this.btnQRP2000XtalSet.Image = null; this.btnQRP2000XtalSet.Location = new System.Drawing.Point(104, 118); this.btnQRP2000XtalSet.Name = "btnQRP2000XtalSet"; this.btnQRP2000XtalSet.Size = new System.Drawing.Size(63, 22); this.btnQRP2000XtalSet.TabIndex = 43; this.btnQRP2000XtalSet.Text = "Set"; this.toolTip1.SetToolTip(this.btnQRP2000XtalSet, "Write new Si570 Xtal reference value into EEPROM"); this.btnQRP2000XtalSet.UseVisualStyleBackColor = true; this.btnQRP2000XtalSet.Click += new System.EventHandler(this.btnQRP2000XtalSet_Click); // // btnQRP2000XtalGet // this.btnQRP2000XtalGet.Image = null; this.btnQRP2000XtalGet.Location = new System.Drawing.Point(31, 118); this.btnQRP2000XtalGet.Name = "btnQRP2000XtalGet"; this.btnQRP2000XtalGet.Size = new System.Drawing.Size(63, 22); this.btnQRP2000XtalGet.TabIndex = 42; this.btnQRP2000XtalGet.Text = "Get"; this.toolTip1.SetToolTip(this.btnQRP2000XtalGet, "Read Si570 internal Xtal reference"); this.btnQRP2000XtalGet.UseVisualStyleBackColor = true; this.btnQRP2000XtalGet.Click += new System.EventHandler(this.btnQRP2000XtalGet_Click); // // labelTS58 // this.labelTS58.AutoSize = true; this.labelTS58.Image = null; this.labelTS58.Location = new System.Drawing.Point(26, 94); this.labelTS58.Name = "labelTS58"; this.labelTS58.Size = new System.Drawing.Size(55, 13); this.labelTS58.TabIndex = 40; this.labelTS58.Text = "Si570 Xtal"; this.toolTip1.SetToolTip(this.labelTS58, "Si570 internal Xtal reference"); // // labelTS59 // this.labelTS59.AutoSize = true; this.labelTS59.Image = null; this.labelTS59.Location = new System.Drawing.Point(18, 17); this.labelTS59.Name = "labelTS59"; this.labelTS59.Size = new System.Drawing.Size(30, 13); this.labelTS59.TabIndex = 124; this.labelTS59.Text = "CI-V:"; this.toolTip1.SetToolTip(this.labelTS59, "ICOM address (decimal 0 - 255)"); // // udCATCI_V // this.udCATCI_V.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCATCI_V.Location = new System.Drawing.Point(64, 15); this.udCATCI_V.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udCATCI_V.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udCATCI_V.Name = "udCATCI_V"; this.udCATCI_V.Size = new System.Drawing.Size(44, 20); this.udCATCI_V.TabIndex = 123; this.udCATCI_V.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udCATCI_V, "ICOM address (decimal 0 - 255)"); this.udCATCI_V.Value = new decimal(new int[] { 112, 0, 0, 0}); this.udCATCI_V.ValueChanged += new System.EventHandler(this.udCATCI_V_ValueChanged); // // chkG11MultiBand // this.chkG11MultiBand.AutoSize = true; this.chkG11MultiBand.Image = null; this.chkG11MultiBand.Location = new System.Drawing.Point(36, 13); this.chkG11MultiBand.Name = "chkG11MultiBand"; this.chkG11MultiBand.Size = new System.Drawing.Size(126, 17); this.chkG11MultiBand.TabIndex = 12; this.chkG11MultiBand.Text = "MultiBand BPF board"; this.toolTip1.SetToolTip(this.chkG11MultiBand, "BPF multiband board present"); this.chkG11MultiBand.UseVisualStyleBackColor = true; this.chkG11MultiBand.CheckedChanged += new System.EventHandler(this.chkG11MultiBand_CheckedChanged); // // chkATUquickTUN // this.chkATUquickTUN.AutoSize = true; this.chkATUquickTUN.Image = null; this.chkATUquickTUN.Location = new System.Drawing.Point(35, 210); this.chkATUquickTUN.Name = "chkATUquickTUN"; this.chkATUquickTUN.Size = new System.Drawing.Size(130, 17); this.chkATUquickTUN.TabIndex = 10; this.chkATUquickTUN.Text = "TUN on band change"; this.toolTip1.SetToolTip(this.chkATUquickTUN, "Quick command on each band change without CW carrier."); this.chkATUquickTUN.UseVisualStyleBackColor = true; this.chkATUquickTUN.CheckedChanged += new System.EventHandler(this.chkATUquickTUN_CheckedChanged); // // radVACMuteBoth // this.radVACMuteBoth.AutoSize = true; this.radVACMuteBoth.Image = null; this.radVACMuteBoth.Location = new System.Drawing.Point(134, 152); this.radVACMuteBoth.Name = "radVACMuteBoth"; this.radVACMuteBoth.Size = new System.Drawing.Size(47, 17); this.radVACMuteBoth.TabIndex = 76; this.radVACMuteBoth.Text = "Both"; this.toolTip1.SetToolTip(this.radVACMuteBoth, "Volume control for both channels Main Sound card"); this.radVACMuteBoth.UseVisualStyleBackColor = true; this.radVACMuteBoth.CheckedChanged += new System.EventHandler(this.radVACMuteBoth_CheckedChanged); // // radVACMuteRight // this.radVACMuteRight.AutoSize = true; this.radVACMuteRight.Image = null; this.radVACMuteRight.Location = new System.Drawing.Point(82, 152); this.radVACMuteRight.Name = "radVACMuteRight"; this.radVACMuteRight.Size = new System.Drawing.Size(50, 17); this.radVACMuteRight.TabIndex = 75; this.radVACMuteRight.Text = "Right"; this.toolTip1.SetToolTip(this.radVACMuteRight, "Volume control for right channel Main Sound card"); this.radVACMuteRight.UseVisualStyleBackColor = true; this.radVACMuteRight.CheckedChanged += new System.EventHandler(this.radVACMuteRight_CheckedChanged); // // radVACMuteLeft // this.radVACMuteLeft.AutoSize = true; this.radVACMuteLeft.Image = null; this.radVACMuteLeft.Location = new System.Drawing.Point(37, 152); this.radVACMuteLeft.Name = "radVACMuteLeft"; this.radVACMuteLeft.Size = new System.Drawing.Size(43, 17); this.radVACMuteLeft.TabIndex = 74; this.radVACMuteLeft.Text = "Left"; this.toolTip1.SetToolTip(this.radVACMuteLeft, "Volume control for left channel Main Sound card"); this.radVACMuteLeft.UseVisualStyleBackColor = true; this.radVACMuteLeft.CheckedChanged += new System.EventHandler(this.radVACMuteLeft_CheckedChanged); // // radVACMuteNone // this.radVACMuteNone.AutoSize = true; this.radVACMuteNone.Checked = true; this.radVACMuteNone.Image = null; this.radVACMuteNone.Location = new System.Drawing.Point(183, 152); this.radVACMuteNone.Name = "radVACMuteNone"; this.radVACMuteNone.Size = new System.Drawing.Size(51, 17); this.radVACMuteNone.TabIndex = 77; this.radVACMuteNone.TabStop = true; this.radVACMuteNone.Text = "None"; this.toolTip1.SetToolTip(this.radVACMuteNone, "No mute for VAC channels."); this.radVACMuteNone.UseVisualStyleBackColor = true; this.radVACMuteNone.CheckedChanged += new System.EventHandler(this.radVACMuteNone_CheckedChanged); // // comboBandPlan // this.comboBandPlan.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBandPlan.DropDownWidth = 112; this.comboBandPlan.Items.AddRange(new object[] { "IARU 1", "IARU 2", "IARU 3"}); this.comboBandPlan.Location = new System.Drawing.Point(19, 110); this.comboBandPlan.Name = "comboBandPlan"; this.comboBandPlan.Size = new System.Drawing.Size(72, 21); this.comboBandPlan.TabIndex = 1; this.toolTip1.SetToolTip(this.comboBandPlan, "Sets the process priority of the PowerSDR software."); this.comboBandPlan.SelectedIndexChanged += new System.EventHandler(this.comboBandPlan_SelectedIndexChanged); // // chkLockTUN // this.chkLockTUN.AutoSize = true; this.chkLockTUN.Image = null; this.chkLockTUN.Location = new System.Drawing.Point(30, 45); this.chkLockTUN.Name = "chkLockTUN"; this.chkLockTUN.Size = new System.Drawing.Size(76, 17); this.chkLockTUN.TabIndex = 6; this.chkLockTUN.Text = "Lock TUN"; this.toolTip1.SetToolTip(this.chkLockTUN, "Prevent changes from PWR slider from main screen."); this.chkLockTUN.UseVisualStyleBackColor = true; this.chkLockTUN.CheckedChanged += new System.EventHandler(this.chkLockTUN_CheckedChanged); // // chkCAT_HRDserver // this.chkCAT_HRDserver.AutoSize = true; this.chkCAT_HRDserver.Image = null; this.chkCAT_HRDserver.Location = new System.Drawing.Point(60, 89); this.chkCAT_HRDserver.Name = "chkCAT_HRDserver"; this.chkCAT_HRDserver.Size = new System.Drawing.Size(82, 17); this.chkCAT_HRDserver.TabIndex = 123; this.chkCAT_HRDserver.Text = "HRD server"; this.toolTip1.SetToolTip(this.chkCAT_HRDserver, "Direct connection to DM780,HRDlog..."); this.chkCAT_HRDserver.UseVisualStyleBackColor = true; this.chkCAT_HRDserver.CheckedChanged += new System.EventHandler(this.chkCAT_HRDserver_CheckedChanged); // // udVACchNumber // this.udVACchNumber.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udVACchNumber.Location = new System.Drawing.Point(210, 57); this.udVACchNumber.Maximum = new decimal(new int[] { 2, 0, 0, 0}); this.udVACchNumber.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udVACchNumber.Name = "udVACchNumber"; this.udVACchNumber.Size = new System.Drawing.Size(40, 20); this.udVACchNumber.TabIndex = 37; this.udVACchNumber.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udVACchNumber, "Audio channel number."); this.udVACchNumber.Value = new decimal(new int[] { 2, 0, 0, 0}); // // udRTL_SDR_correction // this.udRTL_SDR_correction.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udRTL_SDR_correction.Location = new System.Drawing.Point(130, 128); this.udRTL_SDR_correction.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udRTL_SDR_correction.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udRTL_SDR_correction.Name = "udRTL_SDR_correction"; this.udRTL_SDR_correction.Size = new System.Drawing.Size(49, 20); this.udRTL_SDR_correction.TabIndex = 2; this.toolTip1.SetToolTip(this.udRTL_SDR_correction, "Frequency drift in ppm"); this.udRTL_SDR_correction.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udRTL_SDR_correction.ValueChanged += new System.EventHandler(this.udRTL_SDR_correction_ValueChanged); // // chkDragSpectrum // this.chkDragSpectrum.AutoSize = true; this.chkDragSpectrum.Image = null; this.chkDragSpectrum.Location = new System.Drawing.Point(16, 158); this.chkDragSpectrum.Name = "chkDragSpectrum"; this.chkDragSpectrum.Size = new System.Drawing.Size(95, 17); this.chkDragSpectrum.TabIndex = 20; this.chkDragSpectrum.Text = "Drag spectrum"; this.toolTip1.SetToolTip(this.chkDragSpectrum, "Check this if you want to \"drag\" enire spectrum."); this.chkDragSpectrum.UseVisualStyleBackColor = true; this.chkDragSpectrum.CheckedChanged += new System.EventHandler(this.chkDragSpectrum_CheckedChanged); // // chkG6SendAudio // this.chkG6SendAudio.AutoSize = true; this.chkG6SendAudio.Image = null; this.chkG6SendAudio.Location = new System.Drawing.Point(36, 55); this.chkG6SendAudio.Name = "chkG6SendAudio"; this.chkG6SendAudio.Size = new System.Drawing.Size(81, 17); this.chkG6SendAudio.TabIndex = 1; this.chkG6SendAudio.Text = "Send Audio"; this.toolTip1.SetToolTip(this.chkG6SendAudio, "Send demodulated audio."); this.chkG6SendAudio.UseVisualStyleBackColor = true; this.chkG6SendAudio.CheckedChanged += new System.EventHandler(this.chkG6SendAudio_CheckedChanged); // // chkG6TXDACmute // this.chkG6TXDACmute.AutoSize = true; this.chkG6TXDACmute.Image = null; this.chkG6TXDACmute.Location = new System.Drawing.Point(36, 81); this.chkG6TXDACmute.Name = "chkG6TXDACmute"; this.chkG6TXDACmute.Size = new System.Drawing.Size(92, 17); this.chkG6TXDACmute.TabIndex = 2; this.chkG6TXDACmute.Text = "Mute TX DAC"; this.toolTip1.SetToolTip(this.chkG6TXDACmute, "Mute TXDAC"); this.chkG6TXDACmute.UseVisualStyleBackColor = true; this.chkG6TXDACmute.CheckedChanged += new System.EventHandler(this.chkG6TXDACmute_CheckedChanged); // // chkPA10_2190m // this.chkPA10_2190m.AutoSize = true; this.chkPA10_2190m.Image = null; this.chkPA10_2190m.Location = new System.Drawing.Point(68, 30); this.chkPA10_2190m.Name = "chkPA10_2190m"; this.chkPA10_2190m.Size = new System.Drawing.Size(15, 14); this.chkPA10_2190m.TabIndex = 46; this.toolTip1.SetToolTip(this.chkPA10_2190m, "Check if you wish to perform automatic calibration process."); this.chkPA10_2190m.UseVisualStyleBackColor = true; // // chkPA10_600m // this.chkPA10_600m.AutoSize = true; this.chkPA10_600m.Image = null; this.chkPA10_600m.Location = new System.Drawing.Point(68, 53); this.chkPA10_600m.Name = "chkPA10_600m"; this.chkPA10_600m.Size = new System.Drawing.Size(15, 14); this.chkPA10_600m.TabIndex = 43; this.toolTip1.SetToolTip(this.chkPA10_600m, "Check if you wish to perform automatic calibration process."); this.chkPA10_600m.UseVisualStyleBackColor = true; // // chkPA10_2m // this.chkPA10_2m.AutoSize = true; this.chkPA10_2m.Image = null; this.chkPA10_2m.Location = new System.Drawing.Point(207, 172); this.chkPA10_2m.Name = "chkPA10_2m"; this.chkPA10_2m.Size = new System.Drawing.Size(15, 14); this.chkPA10_2m.TabIndex = 37; this.toolTip1.SetToolTip(this.chkPA10_2m, "Check if you wish to perform automatic calibration process."); this.chkPA10_2m.UseVisualStyleBackColor = true; // // chkPA10_6m // this.chkPA10_6m.AutoSize = true; this.chkPA10_6m.Image = null; this.chkPA10_6m.Location = new System.Drawing.Point(207, 149); this.chkPA10_6m.Name = "chkPA10_6m"; this.chkPA10_6m.Size = new System.Drawing.Size(15, 14); this.chkPA10_6m.TabIndex = 36; this.toolTip1.SetToolTip(this.chkPA10_6m, "Check if you wish to perform automatic calibration process."); this.chkPA10_6m.UseVisualStyleBackColor = true; // // chkPA10_10m // this.chkPA10_10m.AutoSize = true; this.chkPA10_10m.Image = null; this.chkPA10_10m.Location = new System.Drawing.Point(207, 126); this.chkPA10_10m.Name = "chkPA10_10m"; this.chkPA10_10m.Size = new System.Drawing.Size(15, 14); this.chkPA10_10m.TabIndex = 35; this.toolTip1.SetToolTip(this.chkPA10_10m, "Check if you wish to perform automatic calibration process."); this.chkPA10_10m.UseVisualStyleBackColor = true; // // chkPA10_12m // this.chkPA10_12m.AutoSize = true; this.chkPA10_12m.Image = null; this.chkPA10_12m.Location = new System.Drawing.Point(207, 102); this.chkPA10_12m.Name = "chkPA10_12m"; this.chkPA10_12m.Size = new System.Drawing.Size(15, 14); this.chkPA10_12m.TabIndex = 34; this.toolTip1.SetToolTip(this.chkPA10_12m, "Check if you wish to perform automatic calibration process."); this.chkPA10_12m.UseVisualStyleBackColor = true; // // chkPA10_15m // this.chkPA10_15m.AutoSize = true; this.chkPA10_15m.Image = null; this.chkPA10_15m.Location = new System.Drawing.Point(207, 77); this.chkPA10_15m.Name = "chkPA10_15m"; this.chkPA10_15m.Size = new System.Drawing.Size(15, 14); this.chkPA10_15m.TabIndex = 33; this.toolTip1.SetToolTip(this.chkPA10_15m, "Check if you wish to perform automatic calibration process."); this.chkPA10_15m.UseVisualStyleBackColor = true; // // chkPA10_20m // this.chkPA10_20m.AutoSize = true; this.chkPA10_20m.Image = null; this.chkPA10_20m.Location = new System.Drawing.Point(207, 30); this.chkPA10_20m.Name = "chkPA10_20m"; this.chkPA10_20m.Size = new System.Drawing.Size(15, 14); this.chkPA10_20m.TabIndex = 32; this.toolTip1.SetToolTip(this.chkPA10_20m, "Check if you wish to perform automatic calibration process."); this.chkPA10_20m.UseVisualStyleBackColor = true; // // chkPA10_30m // this.chkPA10_30m.AutoSize = true; this.chkPA10_30m.Image = null; this.chkPA10_30m.Location = new System.Drawing.Point(68, 174); this.chkPA10_30m.Name = "chkPA10_30m"; this.chkPA10_30m.Size = new System.Drawing.Size(15, 14); this.chkPA10_30m.TabIndex = 31; this.toolTip1.SetToolTip(this.chkPA10_30m, "Check if you wish to perform automatic calibration process."); this.chkPA10_30m.UseVisualStyleBackColor = true; // // chkPA10_40m // this.chkPA10_40m.AutoSize = true; this.chkPA10_40m.Image = null; this.chkPA10_40m.Location = new System.Drawing.Point(68, 149); this.chkPA10_40m.Name = "chkPA10_40m"; this.chkPA10_40m.Size = new System.Drawing.Size(15, 14); this.chkPA10_40m.TabIndex = 30; this.toolTip1.SetToolTip(this.chkPA10_40m, "Check if you wish to perform automatic calibration process."); this.chkPA10_40m.UseVisualStyleBackColor = true; // // chkPA10_60m // this.chkPA10_60m.AutoSize = true; this.chkPA10_60m.Image = null; this.chkPA10_60m.Location = new System.Drawing.Point(68, 126); this.chkPA10_60m.Name = "chkPA10_60m"; this.chkPA10_60m.Size = new System.Drawing.Size(15, 14); this.chkPA10_60m.TabIndex = 29; this.toolTip1.SetToolTip(this.chkPA10_60m, "Check if you wish to perform automatic calibration process."); this.chkPA10_60m.UseVisualStyleBackColor = true; // // chkPA10_17m // this.chkPA10_17m.AutoSize = true; this.chkPA10_17m.Image = null; this.chkPA10_17m.Location = new System.Drawing.Point(207, 54); this.chkPA10_17m.Name = "chkPA10_17m"; this.chkPA10_17m.Size = new System.Drawing.Size(15, 14); this.chkPA10_17m.TabIndex = 28; this.toolTip1.SetToolTip(this.chkPA10_17m, "Check if you wish to perform automatic calibration process."); this.chkPA10_17m.UseVisualStyleBackColor = true; // // chkPA10_80m // this.chkPA10_80m.AutoSize = true; this.chkPA10_80m.Image = null; this.chkPA10_80m.Location = new System.Drawing.Point(68, 102); this.chkPA10_80m.Name = "chkPA10_80m"; this.chkPA10_80m.Size = new System.Drawing.Size(15, 14); this.chkPA10_80m.TabIndex = 27; this.toolTip1.SetToolTip(this.chkPA10_80m, "Check if you wish to perform automatic calibration process."); this.chkPA10_80m.UseVisualStyleBackColor = true; // // chkPA10_160m // this.chkPA10_160m.AutoSize = true; this.chkPA10_160m.Image = null; this.chkPA10_160m.Location = new System.Drawing.Point(68, 77); this.chkPA10_160m.Name = "chkPA10_160m"; this.chkPA10_160m.Size = new System.Drawing.Size(15, 14); this.chkPA10_160m.TabIndex = 26; this.toolTip1.SetToolTip(this.chkPA10_160m, "Check if you wish to perform automatic calibration process."); this.chkPA10_160m.UseVisualStyleBackColor = true; // // lblScopeColor // this.lblScopeColor.Image = null; this.lblScopeColor.Location = new System.Drawing.Point(4, 62); this.lblScopeColor.Name = "lblScopeColor"; this.lblScopeColor.Size = new System.Drawing.Size(70, 14); this.lblScopeColor.TabIndex = 91; this.lblScopeColor.Text = "Scope color"; this.toolTip1.SetToolTip(this.lblScopeColor, "Scope and Panascope line color"); // // clrbtnScopeColor // this.clrbtnScopeColor.Automatic = "Automatic"; this.clrbtnScopeColor.Color = System.Drawing.Color.CornflowerBlue; this.clrbtnScopeColor.ForeColor = System.Drawing.SystemColors.ControlText; this.clrbtnScopeColor.Image = null; this.clrbtnScopeColor.Location = new System.Drawing.Point(74, 58); this.clrbtnScopeColor.MoreColors = "More Colors..."; this.clrbtnScopeColor.Name = "clrbtnScopeColor"; this.clrbtnScopeColor.Size = new System.Drawing.Size(40, 23); this.clrbtnScopeColor.TabIndex = 90; this.toolTip1.SetToolTip(this.clrbtnScopeColor, "Change Scope color."); this.clrbtnScopeColor.Changed += new System.EventHandler(this.clrBtnScopeColor_Changed); // // chkG11ExtPA // this.chkG11ExtPA.AutoSize = true; this.chkG11ExtPA.Image = null; this.chkG11ExtPA.Location = new System.Drawing.Point(36, 37); this.chkG11ExtPA.Name = "chkG11ExtPA"; this.chkG11ExtPA.Size = new System.Drawing.Size(81, 17); this.chkG11ExtPA.TabIndex = 13; this.chkG11ExtPA.Text = "External PA"; this.toolTip1.SetToolTip(this.chkG11ExtPA, "External PA present in system."); this.chkG11ExtPA.UseVisualStyleBackColor = true; this.chkG11ExtPA.CheckedChanged += new System.EventHandler(this.chkG11ExtPA_CheckedChanged); // // udG11extPAON // this.udG11extPAON.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udG11extPAON.Location = new System.Drawing.Point(80, 81); this.udG11extPAON.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udG11extPAON.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG11extPAON.Name = "udG11extPAON"; this.udG11extPAON.Size = new System.Drawing.Size(58, 20); this.udG11extPAON.TabIndex = 34; this.udG11extPAON.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG11extPAON, "Delay for external PA in RX/TX transition."); this.udG11extPAON.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udG11extPAON.ValueChanged += new System.EventHandler(this.udG11extPAON_ValueChanged); // // chkG11extPAinverted // this.chkG11extPAinverted.AutoSize = true; this.chkG11extPAinverted.Image = null; this.chkG11extPAinverted.Location = new System.Drawing.Point(36, 132); this.chkG11extPAinverted.Name = "chkG11extPAinverted"; this.chkG11extPAinverted.Size = new System.Drawing.Size(123, 17); this.chkG11extPAinverted.TabIndex = 32; this.chkG11extPAinverted.Text = "Ext PA PTT inverted"; this.toolTip1.SetToolTip(this.chkG11extPAinverted, "Check this if you wish PTT output inverted."); this.chkG11extPAinverted.UseVisualStyleBackColor = true; this.chkG11extPAinverted.CheckedChanged += new System.EventHandler(this.chkG11extPAinverted_CheckedChanged); // // udG11extPAOFF // this.udG11extPAOFF.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udG11extPAOFF.Location = new System.Drawing.Point(80, 105); this.udG11extPAOFF.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udG11extPAOFF.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG11extPAOFF.Name = "udG11extPAOFF"; this.udG11extPAOFF.Size = new System.Drawing.Size(58, 20); this.udG11extPAOFF.TabIndex = 37; this.udG11extPAOFF.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG11extPAOFF, "Delay for external PA in RX/TX transition."); this.udG11extPAOFF.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udG11extPAOFF.ValueChanged += new System.EventHandler(this.udG11extPAOFF_ValueChanged); // // udG6ExtPAoffTime // this.udG6ExtPAoffTime.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udG6ExtPAoffTime.Location = new System.Drawing.Point(76, 162); this.udG6ExtPAoffTime.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udG6ExtPAoffTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG6ExtPAoffTime.Name = "udG6ExtPAoffTime"; this.udG6ExtPAoffTime.Size = new System.Drawing.Size(58, 20); this.udG6ExtPAoffTime.TabIndex = 37; this.udG6ExtPAoffTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG6ExtPAoffTime, "Delay for external PA in TX/RX transition."); this.udG6ExtPAoffTime.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udG6ExtPAoffTime.ValueChanged += new System.EventHandler(this.udG6ExtPAoffTime_ValueChanged); // // chkG6ExtPA // this.chkG6ExtPA.AutoSize = true; this.chkG6ExtPA.Image = null; this.chkG6ExtPA.Location = new System.Drawing.Point(36, 103); this.chkG6ExtPA.Name = "chkG6ExtPA"; this.chkG6ExtPA.Size = new System.Drawing.Size(96, 17); this.chkG6ExtPA.TabIndex = 36; this.chkG6ExtPA.Text = "Ext PA present"; this.toolTip1.SetToolTip(this.chkG6ExtPA, "Check this if external PA present in system."); this.chkG6ExtPA.UseVisualStyleBackColor = true; this.chkG6ExtPA.CheckedChanged += new System.EventHandler(this.chkG6ExtPA_CheckedChanged); // // udG6ExtPAonTime // this.udG6ExtPAonTime.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udG6ExtPAonTime.Location = new System.Drawing.Point(76, 140); this.udG6ExtPAonTime.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udG6ExtPAonTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udG6ExtPAonTime.Name = "udG6ExtPAonTime"; this.udG6ExtPAonTime.Size = new System.Drawing.Size(58, 20); this.udG6ExtPAonTime.TabIndex = 35; this.udG6ExtPAonTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.toolTip1.SetToolTip(this.udG6ExtPAonTime, "Delay for external PA in RX/TX transition."); this.udG6ExtPAonTime.Value = new decimal(new int[] { 100, 0, 0, 0}); this.udG6ExtPAonTime.ValueChanged += new System.EventHandler(this.udG6ExtPAonTime_ValueChanged); // // chkG6ExtPAinv // this.chkG6ExtPAinv.AutoSize = true; this.chkG6ExtPAinv.Image = null; this.chkG6ExtPAinv.Location = new System.Drawing.Point(36, 186); this.chkG6ExtPAinv.Name = "chkG6ExtPAinv"; this.chkG6ExtPAinv.Size = new System.Drawing.Size(123, 17); this.chkG6ExtPAinv.TabIndex = 33; this.chkG6ExtPAinv.Text = "Ext PA PTT inverted"; this.toolTip1.SetToolTip(this.chkG6ExtPAinv, "Check this if you wish PTT output inverted."); this.chkG6ExtPAinv.UseVisualStyleBackColor = true; this.chkG6ExtPAinv.CheckedChanged += new System.EventHandler(this.chkG6ExtPAinv_CheckedChanged); // // lblG59PTT // this.lblG59PTT.AutoSize = true; this.lblG59PTT.Image = null; this.lblG59PTT.Location = new System.Drawing.Point(41, 49); this.lblG59PTT.Name = "lblG59PTT"; this.lblG59PTT.Size = new System.Drawing.Size(117, 13); this.lblG59PTT.TabIndex = 26; this.lblG59PTT.Text = "External PA PTT delay:"; // // lblG59PTT_ON // this.lblG59PTT_ON.AutoSize = true; this.lblG59PTT_ON.Image = null; this.lblG59PTT_ON.Location = new System.Drawing.Point(49, 69); this.lblG59PTT_ON.Name = "lblG59PTT_ON"; this.lblG59PTT_ON.Size = new System.Drawing.Size(23, 13); this.lblG59PTT_ON.TabIndex = 30; this.lblG59PTT_ON.Text = "ON"; // // lblG59PTT_OFF // this.lblG59PTT_OFF.AutoSize = true; this.lblG59PTT_OFF.Image = null; this.lblG59PTT_OFF.Location = new System.Drawing.Point(49, 91); this.lblG59PTT_OFF.Name = "lblG59PTT_OFF"; this.lblG59PTT_OFF.Size = new System.Drawing.Size(27, 13); this.lblG59PTT_OFF.TabIndex = 31; this.lblG59PTT_OFF.Text = "OFF"; // // btnVFOLargeFont // this.btnVFOLargeFont.Image = null; this.btnVFOLargeFont.Location = new System.Drawing.Point(107, 186); this.btnVFOLargeFont.Name = "btnVFOLargeFont"; this.btnVFOLargeFont.Size = new System.Drawing.Size(40, 23); this.btnVFOLargeFont.TabIndex = 88; this.btnVFOLargeFont.Text = "Font"; this.btnVFOLargeFont.UseVisualStyleBackColor = true; this.btnVFOLargeFont.Click += new System.EventHandler(this.btnVFOLargeFont_Click); // // timer_sweep // this.timer_sweep.Tick += new System.EventHandler(this.timer_sweep_Tick); // // tpTests // this.tpTests.Controls.Add(this.grpAudioTests); this.tpTests.Controls.Add(this.grpBoxTS1); this.tpTests.Controls.Add(this.grpTestAudioBalance); this.tpTests.Controls.Add(this.grpTestTXIMD); this.tpTests.Controls.Add(this.grpImpulseTest); this.tpTests.Location = new System.Drawing.Point(4, 22); this.tpTests.Name = "tpTests"; this.tpTests.Size = new System.Drawing.Size(584, 331); this.tpTests.TabIndex = 7; this.tpTests.Text = "Tests"; // // grpAudioTests // this.grpAudioTests.Controls.Add(this.lblAudioStreamSampleRateValue); this.grpAudioTests.Controls.Add(this.lblAudioStreamOutputLatencyValue); this.grpAudioTests.Controls.Add(this.lblAudioStreamInputLatencyValue); this.grpAudioTests.Controls.Add(this.labelTS54); this.grpAudioTests.Controls.Add(this.txtWBIRdata); this.grpAudioTests.Controls.Add(this.udWBIRindex); this.grpAudioTests.Controls.Add(this.lblAudioStreamSampleRate); this.grpAudioTests.Controls.Add(this.btnWBIRRead); this.grpAudioTests.Controls.Add(this.lblAudioStreamOutputLatency); this.grpAudioTests.Controls.Add(this.lblAudioStreamInputLatency); this.grpAudioTests.Controls.Add(this.btnAudioStreamInfo); this.grpAudioTests.Location = new System.Drawing.Point(171, 192); this.grpAudioTests.Name = "grpAudioTests"; this.grpAudioTests.Size = new System.Drawing.Size(399, 127); this.grpAudioTests.TabIndex = 92; this.grpAudioTests.TabStop = false; this.grpAudioTests.Text = "Audio stream tests"; // // lblAudioStreamSampleRateValue // this.lblAudioStreamSampleRateValue.AutoSize = true; this.lblAudioStreamSampleRateValue.Image = null; this.lblAudioStreamSampleRateValue.Location = new System.Drawing.Point(100, 62); this.lblAudioStreamSampleRateValue.Name = "lblAudioStreamSampleRateValue"; this.lblAudioStreamSampleRateValue.Size = new System.Drawing.Size(28, 13); this.lblAudioStreamSampleRateValue.TabIndex = 20; this.lblAudioStreamSampleRateValue.Text = "0mS"; // // lblAudioStreamOutputLatencyValue // this.lblAudioStreamOutputLatencyValue.AutoSize = true; this.lblAudioStreamOutputLatencyValue.Image = null; this.lblAudioStreamOutputLatencyValue.Location = new System.Drawing.Point(100, 44); this.lblAudioStreamOutputLatencyValue.Name = "lblAudioStreamOutputLatencyValue"; this.lblAudioStreamOutputLatencyValue.Size = new System.Drawing.Size(28, 13); this.lblAudioStreamOutputLatencyValue.TabIndex = 19; this.lblAudioStreamOutputLatencyValue.Text = "0mS"; // // lblAudioStreamInputLatencyValue // this.lblAudioStreamInputLatencyValue.AutoSize = true; this.lblAudioStreamInputLatencyValue.Image = null; this.lblAudioStreamInputLatencyValue.Location = new System.Drawing.Point(100, 26); this.lblAudioStreamInputLatencyValue.Name = "lblAudioStreamInputLatencyValue"; this.lblAudioStreamInputLatencyValue.Size = new System.Drawing.Size(28, 13); this.lblAudioStreamInputLatencyValue.TabIndex = 18; this.lblAudioStreamInputLatencyValue.Text = "0mS"; // // labelTS54 // this.labelTS54.AutoSize = true; this.labelTS54.Image = null; this.labelTS54.Location = new System.Drawing.Point(259, 64); this.labelTS54.Name = "labelTS54"; this.labelTS54.Size = new System.Drawing.Size(33, 13); this.labelTS54.TabIndex = 46; this.labelTS54.Text = "Index"; // // txtWBIRdata // this.txtWBIRdata.Location = new System.Drawing.Point(255, 100); this.txtWBIRdata.MaxLength = 24; this.txtWBIRdata.Name = "txtWBIRdata"; this.txtWBIRdata.Size = new System.Drawing.Size(137, 20); this.txtWBIRdata.TabIndex = 15; // // udWBIRindex // this.udWBIRindex.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udWBIRindex.Location = new System.Drawing.Point(295, 62); this.udWBIRindex.Maximum = new decimal(new int[] { 15, 0, 0, 0}); this.udWBIRindex.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udWBIRindex.Name = "udWBIRindex"; this.udWBIRindex.Size = new System.Drawing.Size(44, 20); this.udWBIRindex.TabIndex = 45; this.udWBIRindex.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udWBIRindex.Value = new decimal(new int[] { 0, 0, 0, 0}); // // lblAudioStreamSampleRate // this.lblAudioStreamSampleRate.AutoSize = true; this.lblAudioStreamSampleRate.Image = null; this.lblAudioStreamSampleRate.Location = new System.Drawing.Point(17, 62); this.lblAudioStreamSampleRate.Name = "lblAudioStreamSampleRate"; this.lblAudioStreamSampleRate.Size = new System.Drawing.Size(66, 13); this.lblAudioStreamSampleRate.TabIndex = 17; this.lblAudioStreamSampleRate.Text = "Sample rate:"; // // btnWBIRRead // this.btnWBIRRead.Image = null; this.btnWBIRRead.Location = new System.Drawing.Point(204, 100); this.btnWBIRRead.Name = "btnWBIRRead"; this.btnWBIRRead.Size = new System.Drawing.Size(45, 23); this.btnWBIRRead.TabIndex = 14; this.btnWBIRRead.Text = "Read"; this.btnWBIRRead.UseVisualStyleBackColor = true; this.btnWBIRRead.Click += new System.EventHandler(this.btnWBIRRead_Click); // // lblAudioStreamOutputLatency // this.lblAudioStreamOutputLatency.AutoSize = true; this.lblAudioStreamOutputLatency.Image = null; this.lblAudioStreamOutputLatency.Location = new System.Drawing.Point(17, 44); this.lblAudioStreamOutputLatency.Name = "lblAudioStreamOutputLatency"; this.lblAudioStreamOutputLatency.Size = new System.Drawing.Size(79, 13); this.lblAudioStreamOutputLatency.TabIndex = 16; this.lblAudioStreamOutputLatency.Text = "Output latency:"; // // lblAudioStreamInputLatency // this.lblAudioStreamInputLatency.AutoSize = true; this.lblAudioStreamInputLatency.Image = null; this.lblAudioStreamInputLatency.Location = new System.Drawing.Point(17, 26); this.lblAudioStreamInputLatency.Name = "lblAudioStreamInputLatency"; this.lblAudioStreamInputLatency.Size = new System.Drawing.Size(71, 13); this.lblAudioStreamInputLatency.TabIndex = 15; this.lblAudioStreamInputLatency.Text = "Input latency:"; // // btnAudioStreamInfo // this.btnAudioStreamInfo.Image = null; this.btnAudioStreamInfo.Location = new System.Drawing.Point(32, 90); this.btnAudioStreamInfo.Name = "btnAudioStreamInfo"; this.btnAudioStreamInfo.Size = new System.Drawing.Size(75, 23); this.btnAudioStreamInfo.TabIndex = 0; this.btnAudioStreamInfo.Text = "Stream info"; this.btnAudioStreamInfo.UseVisualStyleBackColor = true; this.btnAudioStreamInfo.Click += new System.EventHandler(this.btnAudioStreamInfo_Click); // // grpBoxTS1 // this.grpBoxTS1.Controls.Add(this.groupBoxTS5); this.grpBoxTS1.Controls.Add(this.lblTestGenScale); this.grpBoxTS1.Controls.Add(this.udTestGenScale); this.grpBoxTS1.Controls.Add(this.radTestGenOutput); this.grpBoxTS1.Controls.Add(this.radTestGenInput); this.grpBoxTS1.Controls.Add(this.cmboTestGenMode); this.grpBoxTS1.Controls.Add(this.lblTestSigGenFreqCallout); this.grpBoxTS1.Controls.Add(this.tkbarTestGenFreq); this.grpBoxTS1.Controls.Add(this.lblTestGenHzSec); this.grpBoxTS1.Controls.Add(this.udTestGenHzSec); this.grpBoxTS1.Controls.Add(this.lblTestGenHigh); this.grpBoxTS1.Controls.Add(this.udTestGenHigh); this.grpBoxTS1.Controls.Add(this.lblTestGenLow); this.grpBoxTS1.Controls.Add(this.udTestGenLow); this.grpBoxTS1.Controls.Add(this.btnTestGenSweep); this.grpBoxTS1.Location = new System.Drawing.Point(171, 8); this.grpBoxTS1.Name = "grpBoxTS1"; this.grpBoxTS1.Size = new System.Drawing.Size(400, 185); this.grpBoxTS1.TabIndex = 88; this.grpBoxTS1.TabStop = false; this.grpBoxTS1.Text = "Signal Generator"; // // groupBoxTS5 // this.groupBoxTS5.Controls.Add(this.radTestBothChannel); this.groupBoxTS5.Controls.Add(this.radTestLeftChannel); this.groupBoxTS5.Controls.Add(this.radTestRightChannel); this.groupBoxTS5.Location = new System.Drawing.Point(83, 49); this.groupBoxTS5.Name = "groupBoxTS5"; this.groupBoxTS5.Size = new System.Drawing.Size(225, 44); this.groupBoxTS5.TabIndex = 96; this.groupBoxTS5.TabStop = false; this.groupBoxTS5.Text = "Channels"; // // radTestBothChannel // this.radTestBothChannel.Image = null; this.radTestBothChannel.Location = new System.Drawing.Point(146, 14); this.radTestBothChannel.Name = "radTestBothChannel"; this.radTestBothChannel.Size = new System.Drawing.Size(56, 24); this.radTestBothChannel.TabIndex = 97; this.radTestBothChannel.Text = "Both"; this.radTestBothChannel.CheckedChanged += new System.EventHandler(this.radTestBothChannel_CheckedChanged); // // radTestLeftChannel // this.radTestLeftChannel.Checked = true; this.radTestLeftChannel.Image = null; this.radTestLeftChannel.Location = new System.Drawing.Point(22, 14); this.radTestLeftChannel.Name = "radTestLeftChannel"; this.radTestLeftChannel.Size = new System.Drawing.Size(56, 24); this.radTestLeftChannel.TabIndex = 96; this.radTestLeftChannel.TabStop = true; this.radTestLeftChannel.Text = "Left"; this.radTestLeftChannel.CheckedChanged += new System.EventHandler(this.radTestLeftChannel_CheckedChanged); // // radTestRightChannel // this.radTestRightChannel.Image = null; this.radTestRightChannel.Location = new System.Drawing.Point(84, 14); this.radTestRightChannel.Name = "radTestRightChannel"; this.radTestRightChannel.Size = new System.Drawing.Size(56, 24); this.radTestRightChannel.TabIndex = 98; this.radTestRightChannel.Text = "Right"; this.radTestRightChannel.CheckedChanged += new System.EventHandler(this.radTestRightChannel_CheckedChanged); // // lblTestGenScale // this.lblTestGenScale.Image = null; this.lblTestGenScale.Location = new System.Drawing.Point(272, 24); this.lblTestGenScale.Name = "lblTestGenScale"; this.lblTestGenScale.Size = new System.Drawing.Size(40, 16); this.lblTestGenScale.TabIndex = 95; this.lblTestGenScale.Text = "Scale:"; this.lblTestGenScale.Visible = false; // // lblTestSigGenFreqCallout // this.lblTestSigGenFreqCallout.Image = null; this.lblTestSigGenFreqCallout.Location = new System.Drawing.Point(33, 131); this.lblTestSigGenFreqCallout.Name = "lblTestSigGenFreqCallout"; this.lblTestSigGenFreqCallout.Size = new System.Drawing.Size(336, 16); this.lblTestSigGenFreqCallout.TabIndex = 90; this.lblTestSigGenFreqCallout.Text = "0 96k " + " 192k"; // // lblTestGenHzSec // this.lblTestGenHzSec.Image = null; this.lblTestGenHzSec.Location = new System.Drawing.Point(204, 155); this.lblTestGenHzSec.Name = "lblTestGenHzSec"; this.lblTestGenHzSec.Size = new System.Drawing.Size(48, 16); this.lblTestGenHzSec.TabIndex = 88; this.lblTestGenHzSec.Text = "Hz/Sec:"; // // lblTestGenHigh // this.lblTestGenHigh.Image = null; this.lblTestGenHigh.Location = new System.Drawing.Point(108, 155); this.lblTestGenHigh.Name = "lblTestGenHigh"; this.lblTestGenHigh.Size = new System.Drawing.Size(32, 16); this.lblTestGenHigh.TabIndex = 86; this.lblTestGenHigh.Text = "High:"; // // lblTestGenLow // this.lblTestGenLow.Image = null; this.lblTestGenLow.Location = new System.Drawing.Point(12, 155); this.lblTestGenLow.Name = "lblTestGenLow"; this.lblTestGenLow.Size = new System.Drawing.Size(32, 16); this.lblTestGenLow.TabIndex = 84; this.lblTestGenLow.Text = "Low:"; // // grpTestAudioBalance // this.grpTestAudioBalance.Controls.Add(this.btnTestAudioBalStart); this.grpTestAudioBalance.Location = new System.Drawing.Point(24, 243); this.grpTestAudioBalance.Name = "grpTestAudioBalance"; this.grpTestAudioBalance.Size = new System.Drawing.Size(120, 64); this.grpTestAudioBalance.TabIndex = 86; this.grpTestAudioBalance.TabStop = false; this.grpTestAudioBalance.Text = "Audio Balance Test"; // // btnTestAudioBalStart // this.btnTestAudioBalStart.Image = null; this.btnTestAudioBalStart.Location = new System.Drawing.Point(24, 24); this.btnTestAudioBalStart.Name = "btnTestAudioBalStart"; this.btnTestAudioBalStart.Size = new System.Drawing.Size(75, 23); this.btnTestAudioBalStart.TabIndex = 0; this.btnTestAudioBalStart.Text = "Start"; this.btnTestAudioBalStart.Click += new System.EventHandler(this.btnTestAudioBalStart_Click); // // grpTestTXIMD // this.grpTestTXIMD.Controls.Add(this.lblTestToneFreq2); this.grpTestTXIMD.Controls.Add(this.udTestIMDFreq2); this.grpTestTXIMD.Controls.Add(this.lblTestIMDPower); this.grpTestTXIMD.Controls.Add(this.udTestIMDPower); this.grpTestTXIMD.Controls.Add(this.chekTestIMD); this.grpTestTXIMD.Controls.Add(this.lblTestToneFreq1); this.grpTestTXIMD.Controls.Add(this.udTestIMDFreq1); this.grpTestTXIMD.Location = new System.Drawing.Point(8, 8); this.grpTestTXIMD.Name = "grpTestTXIMD"; this.grpTestTXIMD.Size = new System.Drawing.Size(152, 144); this.grpTestTXIMD.TabIndex = 83; this.grpTestTXIMD.TabStop = false; this.grpTestTXIMD.Text = "TX IMD Test"; // // lblTestToneFreq2 // this.lblTestToneFreq2.Image = null; this.lblTestToneFreq2.Location = new System.Drawing.Point(16, 48); this.lblTestToneFreq2.Name = "lblTestToneFreq2"; this.lblTestToneFreq2.Size = new System.Drawing.Size(64, 16); this.lblTestToneFreq2.TabIndex = 88; this.lblTestToneFreq2.Text = "Freq #2:"; // // udTestIMDFreq2 // this.udTestIMDFreq2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDFreq2.Location = new System.Drawing.Point(80, 48); this.udTestIMDFreq2.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTestIMDFreq2.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDFreq2.Name = "udTestIMDFreq2"; this.udTestIMDFreq2.Size = new System.Drawing.Size(56, 20); this.udTestIMDFreq2.TabIndex = 87; this.udTestIMDFreq2.Value = new decimal(new int[] { 19000, 0, 0, 65536}); this.udTestIMDFreq2.LostFocus += new System.EventHandler(this.udTestIMDFreq2_LostFocus); // // lblTestIMDPower // this.lblTestIMDPower.Image = null; this.lblTestIMDPower.Location = new System.Drawing.Point(16, 72); this.lblTestIMDPower.Name = "lblTestIMDPower"; this.lblTestIMDPower.Size = new System.Drawing.Size(64, 16); this.lblTestIMDPower.TabIndex = 86; this.lblTestIMDPower.Text = "Power:"; // // udTestIMDPower // this.udTestIMDPower.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDPower.Location = new System.Drawing.Point(80, 72); this.udTestIMDPower.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udTestIMDPower.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDPower.Name = "udTestIMDPower"; this.udTestIMDPower.Size = new System.Drawing.Size(56, 20); this.udTestIMDPower.TabIndex = 85; this.udTestIMDPower.Value = new decimal(new int[] { 50, 0, 0, 0}); this.udTestIMDPower.LostFocus += new System.EventHandler(this.udTestIMDPower_LostFocus); // // chekTestIMD // this.chekTestIMD.Appearance = System.Windows.Forms.Appearance.Button; this.chekTestIMD.Image = null; this.chekTestIMD.Location = new System.Drawing.Point(48, 104); this.chekTestIMD.Name = "chekTestIMD"; this.chekTestIMD.Size = new System.Drawing.Size(64, 24); this.chekTestIMD.TabIndex = 84; this.chekTestIMD.Text = "Start"; this.chekTestIMD.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chekTestIMD.CheckedChanged += new System.EventHandler(this.chkTestIMD_CheckedChanged); // // lblTestToneFreq1 // this.lblTestToneFreq1.Image = null; this.lblTestToneFreq1.Location = new System.Drawing.Point(16, 24); this.lblTestToneFreq1.Name = "lblTestToneFreq1"; this.lblTestToneFreq1.Size = new System.Drawing.Size(64, 16); this.lblTestToneFreq1.TabIndex = 83; this.lblTestToneFreq1.Text = "Freq #1:"; // // udTestIMDFreq1 // this.udTestIMDFreq1.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDFreq1.Location = new System.Drawing.Point(80, 24); this.udTestIMDFreq1.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTestIMDFreq1.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDFreq1.Name = "udTestIMDFreq1"; this.udTestIMDFreq1.Size = new System.Drawing.Size(56, 20); this.udTestIMDFreq1.TabIndex = 82; this.udTestIMDFreq1.Value = new decimal(new int[] { 7000, 0, 0, 65536}); this.udTestIMDFreq1.LostFocus += new System.EventHandler(this.udTestIMDFreq1_LostFocus); // // grpImpulseTest // this.grpImpulseTest.Controls.Add(this.udImpulseNum); this.grpImpulseTest.Controls.Add(this.btnImpulse); this.grpImpulseTest.Location = new System.Drawing.Point(8, 166); this.grpImpulseTest.Name = "grpImpulseTest"; this.grpImpulseTest.Size = new System.Drawing.Size(152, 64); this.grpImpulseTest.TabIndex = 91; this.grpImpulseTest.TabStop = false; this.grpImpulseTest.Text = "Impulse Test"; // // udImpulseNum // this.udImpulseNum.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udImpulseNum.Location = new System.Drawing.Point(100, 24); this.udImpulseNum.Maximum = new decimal(new int[] { 20, 0, 0, 0}); this.udImpulseNum.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udImpulseNum.Name = "udImpulseNum"; this.udImpulseNum.Size = new System.Drawing.Size(40, 20); this.udImpulseNum.TabIndex = 92; this.udImpulseNum.Value = new decimal(new int[] { 20, 0, 0, 0}); this.udImpulseNum.LostFocus += new System.EventHandler(this.udImpulseNum_LostFocus); // // btnImpulse // this.btnImpulse.Location = new System.Drawing.Point(12, 24); this.btnImpulse.Name = "btnImpulse"; this.btnImpulse.Size = new System.Drawing.Size(75, 23); this.btnImpulse.TabIndex = 90; this.btnImpulse.Text = "Impulse"; // // tpKeyboard // this.tpKeyboard.Controls.Add(this.grpCWXKeys); this.tpKeyboard.Controls.Add(this.grpVoiceMsgSetup); this.tpKeyboard.Controls.Add(this.grpKBCWSpeed); this.tpKeyboard.Controls.Add(this.grpKBXIT); this.tpKeyboard.Controls.Add(this.grpKBRIT); this.tpKeyboard.Controls.Add(this.grpKBBand); this.tpKeyboard.Controls.Add(this.grpKBTune); this.tpKeyboard.Controls.Add(this.grpKBFilter); this.tpKeyboard.Controls.Add(this.grpKBCW); this.tpKeyboard.Location = new System.Drawing.Point(4, 22); this.tpKeyboard.Name = "tpKeyboard"; this.tpKeyboard.Size = new System.Drawing.Size(584, 331); this.tpKeyboard.TabIndex = 4; this.tpKeyboard.Text = "Keyboard"; // // grpCWXKeys // this.grpCWXKeys.Controls.Add(this.lblCWXMsg6); this.grpCWXKeys.Controls.Add(this.comboCWXMsg6); this.grpCWXKeys.Controls.Add(this.lblCWXMsg5); this.grpCWXKeys.Controls.Add(this.comboCWXMsg5); this.grpCWXKeys.Controls.Add(this.lblCWXMsg4); this.grpCWXKeys.Controls.Add(this.lblCWXMsg3); this.grpCWXKeys.Controls.Add(this.lblCWXMsg2); this.grpCWXKeys.Controls.Add(this.lblCWXMsg1); this.grpCWXKeys.Controls.Add(this.comboCWXMsg4); this.grpCWXKeys.Controls.Add(this.comboCWXMsg3); this.grpCWXKeys.Controls.Add(this.comboCWXMsg2); this.grpCWXKeys.Controls.Add(this.comboCWXMsg1); this.grpCWXKeys.Location = new System.Drawing.Point(399, 108); this.grpCWXKeys.Name = "grpCWXKeys"; this.grpCWXKeys.Size = new System.Drawing.Size(126, 189); this.grpCWXKeys.TabIndex = 23; this.grpCWXKeys.TabStop = false; this.grpCWXKeys.Text = "CWX messages"; // // lblCWXMsg6 // this.lblCWXMsg6.AutoSize = true; this.lblCWXMsg6.Image = null; this.lblCWXMsg6.Location = new System.Drawing.Point(19, 159); this.lblCWXMsg6.Name = "lblCWXMsg6"; this.lblCWXMsg6.Size = new System.Drawing.Size(13, 13); this.lblCWXMsg6.TabIndex = 22; this.lblCWXMsg6.Text = "6"; // // lblCWXMsg5 // this.lblCWXMsg5.AutoSize = true; this.lblCWXMsg5.Image = null; this.lblCWXMsg5.Location = new System.Drawing.Point(19, 132); this.lblCWXMsg5.Name = "lblCWXMsg5"; this.lblCWXMsg5.Size = new System.Drawing.Size(13, 13); this.lblCWXMsg5.TabIndex = 20; this.lblCWXMsg5.Text = "5"; // // lblCWXMsg4 // this.lblCWXMsg4.AutoSize = true; this.lblCWXMsg4.Image = null; this.lblCWXMsg4.Location = new System.Drawing.Point(19, 105); this.lblCWXMsg4.Name = "lblCWXMsg4"; this.lblCWXMsg4.Size = new System.Drawing.Size(13, 13); this.lblCWXMsg4.TabIndex = 18; this.lblCWXMsg4.Text = "4"; // // lblCWXMsg3 // this.lblCWXMsg3.AutoSize = true; this.lblCWXMsg3.Image = null; this.lblCWXMsg3.Location = new System.Drawing.Point(19, 80); this.lblCWXMsg3.Name = "lblCWXMsg3"; this.lblCWXMsg3.Size = new System.Drawing.Size(13, 13); this.lblCWXMsg3.TabIndex = 17; this.lblCWXMsg3.Text = "3"; // // lblCWXMsg2 // this.lblCWXMsg2.AutoSize = true; this.lblCWXMsg2.Image = null; this.lblCWXMsg2.Location = new System.Drawing.Point(19, 54); this.lblCWXMsg2.Name = "lblCWXMsg2"; this.lblCWXMsg2.Size = new System.Drawing.Size(13, 13); this.lblCWXMsg2.TabIndex = 16; this.lblCWXMsg2.Text = "2"; // // lblCWXMsg1 // this.lblCWXMsg1.AutoSize = true; this.lblCWXMsg1.Image = null; this.lblCWXMsg1.Location = new System.Drawing.Point(19, 28); this.lblCWXMsg1.Name = "lblCWXMsg1"; this.lblCWXMsg1.Size = new System.Drawing.Size(13, 13); this.lblCWXMsg1.TabIndex = 15; this.lblCWXMsg1.Text = "1"; // // grpVoiceMsgSetup // this.grpVoiceMsgSetup.Controls.Add(this.lblVoiceMsg6); this.grpVoiceMsgSetup.Controls.Add(this.comboVoiceMsg6); this.grpVoiceMsgSetup.Controls.Add(this.lblVoiceMsg5); this.grpVoiceMsgSetup.Controls.Add(this.comboVoiceMsg5); this.grpVoiceMsgSetup.Controls.Add(this.lblVoiceMsg4); this.grpVoiceMsgSetup.Controls.Add(this.lblVoiceMsg3); this.grpVoiceMsgSetup.Controls.Add(this.lblVoiceMsg2); this.grpVoiceMsgSetup.Controls.Add(this.lblVoiceMsg1); this.grpVoiceMsgSetup.Controls.Add(this.comboVoiceMsg4); this.grpVoiceMsgSetup.Controls.Add(this.comboVoiceMsg3); this.grpVoiceMsgSetup.Controls.Add(this.comboVoiceMsg2); this.grpVoiceMsgSetup.Controls.Add(this.comboVoiceMsg1); this.grpVoiceMsgSetup.Location = new System.Drawing.Point(399, 108); this.grpVoiceMsgSetup.Name = "grpVoiceMsgSetup"; this.grpVoiceMsgSetup.Size = new System.Drawing.Size(126, 189); this.grpVoiceMsgSetup.TabIndex = 17; this.grpVoiceMsgSetup.TabStop = false; this.grpVoiceMsgSetup.Text = "Voice messages"; // // lblVoiceMsg6 // this.lblVoiceMsg6.AutoSize = true; this.lblVoiceMsg6.Image = null; this.lblVoiceMsg6.Location = new System.Drawing.Point(19, 159); this.lblVoiceMsg6.Name = "lblVoiceMsg6"; this.lblVoiceMsg6.Size = new System.Drawing.Size(13, 13); this.lblVoiceMsg6.TabIndex = 22; this.lblVoiceMsg6.Text = "6"; // // lblVoiceMsg5 // this.lblVoiceMsg5.AutoSize = true; this.lblVoiceMsg5.Image = null; this.lblVoiceMsg5.Location = new System.Drawing.Point(19, 132); this.lblVoiceMsg5.Name = "lblVoiceMsg5"; this.lblVoiceMsg5.Size = new System.Drawing.Size(13, 13); this.lblVoiceMsg5.TabIndex = 20; this.lblVoiceMsg5.Text = "5"; // // lblVoiceMsg4 // this.lblVoiceMsg4.AutoSize = true; this.lblVoiceMsg4.Image = null; this.lblVoiceMsg4.Location = new System.Drawing.Point(19, 105); this.lblVoiceMsg4.Name = "lblVoiceMsg4"; this.lblVoiceMsg4.Size = new System.Drawing.Size(13, 13); this.lblVoiceMsg4.TabIndex = 18; this.lblVoiceMsg4.Text = "4"; // // lblVoiceMsg3 // this.lblVoiceMsg3.AutoSize = true; this.lblVoiceMsg3.Image = null; this.lblVoiceMsg3.Location = new System.Drawing.Point(19, 80); this.lblVoiceMsg3.Name = "lblVoiceMsg3"; this.lblVoiceMsg3.Size = new System.Drawing.Size(13, 13); this.lblVoiceMsg3.TabIndex = 17; this.lblVoiceMsg3.Text = "3"; // // lblVoiceMsg2 // this.lblVoiceMsg2.AutoSize = true; this.lblVoiceMsg2.Image = null; this.lblVoiceMsg2.Location = new System.Drawing.Point(19, 54); this.lblVoiceMsg2.Name = "lblVoiceMsg2"; this.lblVoiceMsg2.Size = new System.Drawing.Size(13, 13); this.lblVoiceMsg2.TabIndex = 16; this.lblVoiceMsg2.Text = "2"; // // lblVoiceMsg1 // this.lblVoiceMsg1.AutoSize = true; this.lblVoiceMsg1.Image = null; this.lblVoiceMsg1.Location = new System.Drawing.Point(19, 28); this.lblVoiceMsg1.Name = "lblVoiceMsg1"; this.lblVoiceMsg1.Size = new System.Drawing.Size(13, 13); this.lblVoiceMsg1.TabIndex = 15; this.lblVoiceMsg1.Text = "1"; // // grpKBCWSpeed // this.grpKBCWSpeed.Controls.Add(this.lblKBCWSpeedUp); this.grpKBCWSpeed.Controls.Add(this.lblKBCWSpeedDown); this.grpKBCWSpeed.Controls.Add(this.comboKBCWSpeedUp); this.grpKBCWSpeed.Controls.Add(this.comboKBCWSpeedDown); this.grpKBCWSpeed.Location = new System.Drawing.Point(264, 112); this.grpKBCWSpeed.Name = "grpKBCWSpeed"; this.grpKBCWSpeed.Size = new System.Drawing.Size(112, 72); this.grpKBCWSpeed.TabIndex = 15; this.grpKBCWSpeed.TabStop = false; this.grpKBCWSpeed.Text = "CW speed"; // // lblKBCWSpeedUp // this.lblKBCWSpeedUp.Image = null; this.lblKBCWSpeedUp.Location = new System.Drawing.Point(8, 16); this.lblKBCWSpeedUp.Name = "lblKBCWSpeedUp"; this.lblKBCWSpeedUp.Size = new System.Drawing.Size(40, 16); this.lblKBCWSpeedUp.TabIndex = 10; this.lblKBCWSpeedUp.Text = "Up:"; this.lblKBCWSpeedUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBCWSpeedDown // this.lblKBCWSpeedDown.Image = null; this.lblKBCWSpeedDown.Location = new System.Drawing.Point(8, 40); this.lblKBCWSpeedDown.Name = "lblKBCWSpeedDown"; this.lblKBCWSpeedDown.Size = new System.Drawing.Size(40, 16); this.lblKBCWSpeedDown.TabIndex = 9; this.lblKBCWSpeedDown.Text = "Down:"; this.lblKBCWSpeedDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // grpKBXIT // this.grpKBXIT.Controls.Add(this.lblKBXITUp); this.grpKBXIT.Controls.Add(this.lblKBXITDown); this.grpKBXIT.Controls.Add(this.comboKBXITUp); this.grpKBXIT.Controls.Add(this.comboKBXITDown); this.grpKBXIT.Location = new System.Drawing.Point(136, 192); this.grpKBXIT.Name = "grpKBXIT"; this.grpKBXIT.Size = new System.Drawing.Size(112, 72); this.grpKBXIT.TabIndex = 16; this.grpKBXIT.TabStop = false; this.grpKBXIT.Text = "XIT"; // // lblKBXITUp // this.lblKBXITUp.Image = null; this.lblKBXITUp.Location = new System.Drawing.Point(8, 16); this.lblKBXITUp.Name = "lblKBXITUp"; this.lblKBXITUp.Size = new System.Drawing.Size(40, 16); this.lblKBXITUp.TabIndex = 10; this.lblKBXITUp.Text = "Up:"; this.lblKBXITUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBXITDown // this.lblKBXITDown.Image = null; this.lblKBXITDown.Location = new System.Drawing.Point(8, 40); this.lblKBXITDown.Name = "lblKBXITDown"; this.lblKBXITDown.Size = new System.Drawing.Size(40, 16); this.lblKBXITDown.TabIndex = 9; this.lblKBXITDown.Text = "Down:"; this.lblKBXITDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // grpKBRIT // this.grpKBRIT.Controls.Add(this.lblKBRitUp); this.grpKBRIT.Controls.Add(this.lblKBRITDown); this.grpKBRIT.Controls.Add(this.comboKBRITUp); this.grpKBRIT.Controls.Add(this.comboKBRITDown); this.grpKBRIT.Location = new System.Drawing.Point(8, 192); this.grpKBRIT.Name = "grpKBRIT"; this.grpKBRIT.Size = new System.Drawing.Size(112, 72); this.grpKBRIT.TabIndex = 15; this.grpKBRIT.TabStop = false; this.grpKBRIT.Text = "RIT"; // // lblKBRitUp // this.lblKBRitUp.Image = null; this.lblKBRitUp.Location = new System.Drawing.Point(8, 16); this.lblKBRitUp.Name = "lblKBRitUp"; this.lblKBRitUp.Size = new System.Drawing.Size(40, 16); this.lblKBRitUp.TabIndex = 10; this.lblKBRitUp.Text = "Up:"; this.lblKBRitUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBRITDown // this.lblKBRITDown.Image = null; this.lblKBRITDown.Location = new System.Drawing.Point(8, 40); this.lblKBRITDown.Name = "lblKBRITDown"; this.lblKBRITDown.Size = new System.Drawing.Size(40, 16); this.lblKBRITDown.TabIndex = 9; this.lblKBRITDown.Text = "Down:"; this.lblKBRITDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // grpKBBand // this.grpKBBand.Controls.Add(this.lblKBBandUp); this.grpKBBand.Controls.Add(this.lblKBBandDown); this.grpKBBand.Controls.Add(this.comboKBBandUp); this.grpKBBand.Controls.Add(this.comboKBBandDown); this.grpKBBand.Location = new System.Drawing.Point(8, 112); this.grpKBBand.Name = "grpKBBand"; this.grpKBBand.Size = new System.Drawing.Size(112, 72); this.grpKBBand.TabIndex = 12; this.grpKBBand.TabStop = false; this.grpKBBand.Text = "Band"; // // lblKBBandUp // this.lblKBBandUp.Image = null; this.lblKBBandUp.Location = new System.Drawing.Point(8, 16); this.lblKBBandUp.Name = "lblKBBandUp"; this.lblKBBandUp.Size = new System.Drawing.Size(40, 16); this.lblKBBandUp.TabIndex = 10; this.lblKBBandUp.Text = "Up:"; this.lblKBBandUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBBandDown // this.lblKBBandDown.Image = null; this.lblKBBandDown.Location = new System.Drawing.Point(8, 40); this.lblKBBandDown.Name = "lblKBBandDown"; this.lblKBBandDown.Size = new System.Drawing.Size(40, 16); this.lblKBBandDown.TabIndex = 9; this.lblKBBandDown.Text = "Down:"; this.lblKBBandDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // grpKBTune // this.grpKBTune.Controls.Add(this.lblKBTuneDigit); this.grpKBTune.Controls.Add(this.lblKBTune7); this.grpKBTune.Controls.Add(this.lblKBTune6); this.grpKBTune.Controls.Add(this.lblKBTune5); this.grpKBTune.Controls.Add(this.lblKBTune4); this.grpKBTune.Controls.Add(this.lblKBTune3); this.grpKBTune.Controls.Add(this.lblKBTune2); this.grpKBTune.Controls.Add(this.comboKBTuneUp7); this.grpKBTune.Controls.Add(this.comboKBTuneDown7); this.grpKBTune.Controls.Add(this.comboKBTuneUp6); this.grpKBTune.Controls.Add(this.comboKBTuneDown6); this.grpKBTune.Controls.Add(this.comboKBTuneUp5); this.grpKBTune.Controls.Add(this.comboKBTuneDown5); this.grpKBTune.Controls.Add(this.comboKBTuneUp4); this.grpKBTune.Controls.Add(this.comboKBTuneDown4); this.grpKBTune.Controls.Add(this.lblKBTune1); this.grpKBTune.Controls.Add(this.lblKBTuneUp); this.grpKBTune.Controls.Add(this.lblKBTuneDown); this.grpKBTune.Controls.Add(this.comboKBTuneUp3); this.grpKBTune.Controls.Add(this.comboKBTuneDown3); this.grpKBTune.Controls.Add(this.comboKBTuneUp1); this.grpKBTune.Controls.Add(this.comboKBTuneUp2); this.grpKBTune.Controls.Add(this.comboKBTuneDown1); this.grpKBTune.Controls.Add(this.comboKBTuneDown2); this.grpKBTune.Location = new System.Drawing.Point(8, 8); this.grpKBTune.Name = "grpKBTune"; this.grpKBTune.Size = new System.Drawing.Size(456, 96); this.grpKBTune.TabIndex = 11; this.grpKBTune.TabStop = false; this.grpKBTune.Text = "Tune"; // // lblKBTuneDigit // this.lblKBTuneDigit.Image = null; this.lblKBTuneDigit.Location = new System.Drawing.Point(16, 16); this.lblKBTuneDigit.Name = "lblKBTuneDigit"; this.lblKBTuneDigit.Size = new System.Drawing.Size(32, 16); this.lblKBTuneDigit.TabIndex = 26; this.lblKBTuneDigit.Text = "Digit"; // // lblKBTune7 // this.lblKBTune7.Image = null; this.lblKBTune7.Location = new System.Drawing.Point(392, 16); this.lblKBTune7.Name = "lblKBTune7"; this.lblKBTune7.Size = new System.Drawing.Size(56, 16); this.lblKBTune7.TabIndex = 25; this.lblKBTune7.Text = "0.00000x"; this.lblKBTune7.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune6 // this.lblKBTune6.Image = null; this.lblKBTune6.Location = new System.Drawing.Point(336, 16); this.lblKBTune6.Name = "lblKBTune6"; this.lblKBTune6.Size = new System.Drawing.Size(56, 16); this.lblKBTune6.TabIndex = 24; this.lblKBTune6.Text = "0.0000x0"; this.lblKBTune6.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune5 // this.lblKBTune5.Image = null; this.lblKBTune5.Location = new System.Drawing.Point(280, 16); this.lblKBTune5.Name = "lblKBTune5"; this.lblKBTune5.Size = new System.Drawing.Size(56, 16); this.lblKBTune5.TabIndex = 23; this.lblKBTune5.Text = "0.000x00"; this.lblKBTune5.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune4 // this.lblKBTune4.Image = null; this.lblKBTune4.Location = new System.Drawing.Point(224, 16); this.lblKBTune4.Name = "lblKBTune4"; this.lblKBTune4.Size = new System.Drawing.Size(56, 16); this.lblKBTune4.TabIndex = 22; this.lblKBTune4.Text = "0.00x000"; this.lblKBTune4.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune3 // this.lblKBTune3.Image = null; this.lblKBTune3.Location = new System.Drawing.Point(168, 16); this.lblKBTune3.Name = "lblKBTune3"; this.lblKBTune3.Size = new System.Drawing.Size(56, 16); this.lblKBTune3.TabIndex = 21; this.lblKBTune3.Text = "0.0x0000"; this.lblKBTune3.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune2 // this.lblKBTune2.Image = null; this.lblKBTune2.Location = new System.Drawing.Point(112, 16); this.lblKBTune2.Name = "lblKBTune2"; this.lblKBTune2.Size = new System.Drawing.Size(56, 16); this.lblKBTune2.TabIndex = 20; this.lblKBTune2.Text = "0.x00000"; this.lblKBTune2.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune1 // this.lblKBTune1.Image = null; this.lblKBTune1.Location = new System.Drawing.Point(48, 16); this.lblKBTune1.Name = "lblKBTune1"; this.lblKBTune1.Size = new System.Drawing.Size(56, 16); this.lblKBTune1.TabIndex = 11; this.lblKBTune1.Text = "x.000000"; this.lblKBTune1.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTuneUp // this.lblKBTuneUp.Image = null; this.lblKBTuneUp.Location = new System.Drawing.Point(8, 40); this.lblKBTuneUp.Name = "lblKBTuneUp"; this.lblKBTuneUp.Size = new System.Drawing.Size(40, 16); this.lblKBTuneUp.TabIndex = 8; this.lblKBTuneUp.Text = "Up:"; this.lblKBTuneUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTuneDown // this.lblKBTuneDown.Image = null; this.lblKBTuneDown.Location = new System.Drawing.Point(8, 64); this.lblKBTuneDown.Name = "lblKBTuneDown"; this.lblKBTuneDown.Size = new System.Drawing.Size(40, 16); this.lblKBTuneDown.TabIndex = 7; this.lblKBTuneDown.Text = "Down:"; this.lblKBTuneDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // grpKBFilter // this.grpKBFilter.Controls.Add(this.lblKBFilterUp); this.grpKBFilter.Controls.Add(this.lblKBFilterDown); this.grpKBFilter.Controls.Add(this.comboKBFilterUp); this.grpKBFilter.Controls.Add(this.comboKBFilterDown); this.grpKBFilter.Location = new System.Drawing.Point(136, 112); this.grpKBFilter.Name = "grpKBFilter"; this.grpKBFilter.Size = new System.Drawing.Size(112, 72); this.grpKBFilter.TabIndex = 13; this.grpKBFilter.TabStop = false; this.grpKBFilter.Text = "Filter"; // // lblKBFilterUp // this.lblKBFilterUp.Image = null; this.lblKBFilterUp.Location = new System.Drawing.Point(8, 16); this.lblKBFilterUp.Name = "lblKBFilterUp"; this.lblKBFilterUp.Size = new System.Drawing.Size(40, 16); this.lblKBFilterUp.TabIndex = 10; this.lblKBFilterUp.Text = "Up:"; this.lblKBFilterUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBFilterDown // this.lblKBFilterDown.Image = null; this.lblKBFilterDown.Location = new System.Drawing.Point(8, 40); this.lblKBFilterDown.Name = "lblKBFilterDown"; this.lblKBFilterDown.Size = new System.Drawing.Size(40, 16); this.lblKBFilterDown.TabIndex = 9; this.lblKBFilterDown.Text = "Down:"; this.lblKBFilterDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // grpKBCW // this.grpKBCW.Controls.Add(this.lblKBCWDot); this.grpKBCW.Controls.Add(this.lblKBCWDash); this.grpKBCW.Controls.Add(this.comboKBCWDot); this.grpKBCW.Controls.Add(this.comboKBCWDash); this.grpKBCW.Location = new System.Drawing.Point(264, 192); this.grpKBCW.Name = "grpKBCW"; this.grpKBCW.Size = new System.Drawing.Size(112, 72); this.grpKBCW.TabIndex = 13; this.grpKBCW.TabStop = false; this.grpKBCW.Text = "CW"; // // lblKBCWDot // this.lblKBCWDot.Image = null; this.lblKBCWDot.Location = new System.Drawing.Point(8, 16); this.lblKBCWDot.Name = "lblKBCWDot"; this.lblKBCWDot.Size = new System.Drawing.Size(40, 16); this.lblKBCWDot.TabIndex = 10; this.lblKBCWDot.Text = "Dot:"; this.lblKBCWDot.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBCWDash // this.lblKBCWDash.Image = null; this.lblKBCWDash.Location = new System.Drawing.Point(8, 40); this.lblKBCWDash.Name = "lblKBCWDash"; this.lblKBCWDash.Size = new System.Drawing.Size(40, 16); this.lblKBCWDash.TabIndex = 9; this.lblKBCWDash.Text = "Dash:"; this.lblKBCWDash.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // tpAppearance // this.tpAppearance.Controls.Add(this.tcAppearance); this.tpAppearance.Location = new System.Drawing.Point(4, 22); this.tpAppearance.Name = "tpAppearance"; this.tpAppearance.Size = new System.Drawing.Size(584, 331); this.tpAppearance.TabIndex = 6; this.tpAppearance.Text = "Appearance"; // // tcAppearance // this.tcAppearance.Controls.Add(this.tpAppearanceDisplay); this.tcAppearance.Controls.Add(this.tpAppearanceGeneral); this.tcAppearance.Controls.Add(this.tpAppearanceMeter); this.tcAppearance.Controls.Add(this.tcSkins); this.tcAppearance.Location = new System.Drawing.Point(0, 0); this.tcAppearance.Name = "tcAppearance"; this.tcAppearance.SelectedIndex = 0; this.tcAppearance.Size = new System.Drawing.Size(600, 344); this.tcAppearance.TabIndex = 40; // // tpAppearanceDisplay // this.tpAppearanceDisplay.Controls.Add(this.grpSubRX); this.tpAppearanceDisplay.Controls.Add(this.grpMainRX); this.tpAppearanceDisplay.Controls.Add(this.grpDisplay); this.tpAppearanceDisplay.Controls.Add(this.grpDisplayPeakCursor); this.tpAppearanceDisplay.Location = new System.Drawing.Point(4, 22); this.tpAppearanceDisplay.Name = "tpAppearanceDisplay"; this.tpAppearanceDisplay.Size = new System.Drawing.Size(592, 318); this.tpAppearanceDisplay.TabIndex = 1; this.tpAppearanceDisplay.Text = "Display"; // // grpSubRX // this.grpSubRX.Controls.Add(this.clrbtnSubRXZero); this.grpSubRX.Controls.Add(this.lblSubRXAlpha); this.grpSubRX.Controls.Add(this.tbSubRXAlpha); this.grpSubRX.Controls.Add(this.lblSubRXZeroLine); this.grpSubRX.Controls.Add(this.clrbtnSubRXFilter); this.grpSubRX.Controls.Add(this.lblSubRXFilterColor); this.grpSubRX.Location = new System.Drawing.Point(437, 154); this.grpSubRX.Name = "grpSubRX"; this.grpSubRX.Size = new System.Drawing.Size(128, 116); this.grpSubRX.TabIndex = 89; this.grpSubRX.TabStop = false; this.grpSubRX.Text = "Sub RX"; // // clrbtnSubRXZero // this.clrbtnSubRXZero.Automatic = "Automatic"; this.clrbtnSubRXZero.Color = System.Drawing.Color.Red; this.clrbtnSubRXZero.Image = null; this.clrbtnSubRXZero.Location = new System.Drawing.Point(76, 57); this.clrbtnSubRXZero.MoreColors = "More Colors..."; this.clrbtnSubRXZero.Name = "clrbtnSubRXZero"; this.clrbtnSubRXZero.Size = new System.Drawing.Size(41, 23); this.clrbtnSubRXZero.TabIndex = 81; this.clrbtnSubRXZero.Changed += new System.EventHandler(this.clrbtnSubRXZero_Changed); // // lblSubRXAlpha // this.lblSubRXAlpha.Image = null; this.lblSubRXAlpha.Location = new System.Drawing.Point(5, 88); this.lblSubRXAlpha.Name = "lblSubRXAlpha"; this.lblSubRXAlpha.Size = new System.Drawing.Size(46, 20); this.lblSubRXAlpha.TabIndex = 87; this.lblSubRXAlpha.Text = "Alpha:"; // // tbSubRXAlpha // this.tbSubRXAlpha.AutoSize = false; this.tbSubRXAlpha.Location = new System.Drawing.Point(50, 88); this.tbSubRXAlpha.Maximum = 255; this.tbSubRXAlpha.Name = "tbSubRXAlpha"; this.tbSubRXAlpha.Size = new System.Drawing.Size(67, 20); this.tbSubRXAlpha.TabIndex = 86; this.tbSubRXAlpha.TickStyle = System.Windows.Forms.TickStyle.None; this.tbSubRXAlpha.Value = 127; this.tbSubRXAlpha.ValueChanged += new System.EventHandler(this.tbSubRXAlpha_ValueChanged); this.tbSubRXAlpha.Scroll += new System.EventHandler(this.tbSubRXAlpha_Scroll); // // lblSubRXZeroLine // this.lblSubRXZeroLine.Image = null; this.lblSubRXZeroLine.Location = new System.Drawing.Point(5, 62); this.lblSubRXZeroLine.Name = "lblSubRXZeroLine"; this.lblSubRXZeroLine.Size = new System.Drawing.Size(56, 22); this.lblSubRXZeroLine.TabIndex = 80; this.lblSubRXZeroLine.Text = "Zero Line:"; // // clrbtnSubRXFilter // this.clrbtnSubRXFilter.Automatic = "Automatic"; this.clrbtnSubRXFilter.Color = System.Drawing.Color.Blue; this.clrbtnSubRXFilter.Image = null; this.clrbtnSubRXFilter.Location = new System.Drawing.Point(76, 21); this.clrbtnSubRXFilter.MoreColors = "More Colors..."; this.clrbtnSubRXFilter.Name = "clrbtnSubRXFilter"; this.clrbtnSubRXFilter.Size = new System.Drawing.Size(41, 23); this.clrbtnSubRXFilter.TabIndex = 79; this.clrbtnSubRXFilter.Changed += new System.EventHandler(this.clrbtnSubRXFilter_Changed); // // lblSubRXFilterColor // this.lblSubRXFilterColor.Image = null; this.lblSubRXFilterColor.Location = new System.Drawing.Point(5, 20); this.lblSubRXFilterColor.Name = "lblSubRXFilterColor"; this.lblSubRXFilterColor.Size = new System.Drawing.Size(65, 29); this.lblSubRXFilterColor.TabIndex = 78; this.lblSubRXFilterColor.Text = "Sub RX Filter Color:"; // // grpMainRX // this.grpMainRX.Controls.Add(this.clrbtnMainRXFilter); this.grpMainRX.Controls.Add(this.lblDisplayFilterColor); this.grpMainRX.Controls.Add(this.clrbtnMainRXZero); this.grpMainRX.Controls.Add(this.lblMainRXZero); this.grpMainRX.Controls.Add(this.tbMainRXAlpha); this.grpMainRX.Controls.Add(this.lblMainRXAlpha); this.grpMainRX.Location = new System.Drawing.Point(300, 154); this.grpMainRX.Name = "grpMainRX"; this.grpMainRX.Size = new System.Drawing.Size(128, 116); this.grpMainRX.TabIndex = 88; this.grpMainRX.TabStop = false; this.grpMainRX.Text = "Main RX"; // // clrbtnMainRXFilter // this.clrbtnMainRXFilter.Automatic = "Automatic"; this.clrbtnMainRXFilter.Color = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.clrbtnMainRXFilter.Image = null; this.clrbtnMainRXFilter.Location = new System.Drawing.Point(76, 21); this.clrbtnMainRXFilter.MoreColors = "More Colors..."; this.clrbtnMainRXFilter.Name = "clrbtnMainRXFilter"; this.clrbtnMainRXFilter.Size = new System.Drawing.Size(41, 23); this.clrbtnMainRXFilter.TabIndex = 71; this.clrbtnMainRXFilter.Changed += new System.EventHandler(this.clrbtnMainRXFilter_Changed); // // lblDisplayFilterColor // this.lblDisplayFilterColor.Image = null; this.lblDisplayFilterColor.Location = new System.Drawing.Point(5, 20); this.lblDisplayFilterColor.Name = "lblDisplayFilterColor"; this.lblDisplayFilterColor.Size = new System.Drawing.Size(65, 29); this.lblDisplayFilterColor.TabIndex = 45; this.lblDisplayFilterColor.Text = "Main RX Filter Color:"; // // clrbtnMainRXZero // this.clrbtnMainRXZero.Automatic = "Automatic"; this.clrbtnMainRXZero.Color = System.Drawing.Color.LightSkyBlue; this.clrbtnMainRXZero.Image = null; this.clrbtnMainRXZero.Location = new System.Drawing.Point(76, 57); this.clrbtnMainRXZero.MoreColors = "More Colors..."; this.clrbtnMainRXZero.Name = "clrbtnMainRXZero"; this.clrbtnMainRXZero.Size = new System.Drawing.Size(41, 23); this.clrbtnMainRXZero.TabIndex = 82; this.clrbtnMainRXZero.Changed += new System.EventHandler(this.clrbtnMainRXZero_Changed); // // lblMainRXZero // this.lblMainRXZero.Image = null; this.lblMainRXZero.Location = new System.Drawing.Point(5, 62); this.lblMainRXZero.Name = "lblMainRXZero"; this.lblMainRXZero.Size = new System.Drawing.Size(65, 17); this.lblMainRXZero.TabIndex = 83; this.lblMainRXZero.Text = "Zero Line:"; // // tbMainRXAlpha // this.tbMainRXAlpha.AutoSize = false; this.tbMainRXAlpha.Location = new System.Drawing.Point(50, 88); this.tbMainRXAlpha.Maximum = 255; this.tbMainRXAlpha.Name = "tbMainRXAlpha"; this.tbMainRXAlpha.Size = new System.Drawing.Size(67, 20); this.tbMainRXAlpha.TabIndex = 84; this.tbMainRXAlpha.TickStyle = System.Windows.Forms.TickStyle.None; this.tbMainRXAlpha.Value = 127; this.tbMainRXAlpha.ValueChanged += new System.EventHandler(this.tbMainRXAlpha_ValueChanged); this.tbMainRXAlpha.Scroll += new System.EventHandler(this.tbMainRXAlpha_Scroll); // // lblMainRXAlpha // this.lblMainRXAlpha.Image = null; this.lblMainRXAlpha.Location = new System.Drawing.Point(5, 88); this.lblMainRXAlpha.Name = "lblMainRXAlpha"; this.lblMainRXAlpha.Size = new System.Drawing.Size(46, 13); this.lblMainRXAlpha.TabIndex = 85; this.lblMainRXAlpha.Text = "Alpha:"; // // grpDisplay // this.grpDisplay.Controls.Add(this.lblGridLineAlpha); this.grpDisplay.Controls.Add(this.tbGridLineAlpha); this.grpDisplay.Controls.Add(this.chkSmoothLine); this.grpDisplay.Controls.Add(this.lblPanFillColor); this.grpDisplay.Controls.Add(this.chkDataLineFill); this.grpDisplay.Controls.Add(this.clrbtnPanFillColor); this.grpDisplay.Controls.Add(this.lblDataLineAlpha); this.grpDisplay.Controls.Add(this.tbDataLineAlpha); this.grpDisplay.Controls.Add(this.lblDisplayTxtAlpha); this.grpDisplay.Controls.Add(this.clrbtnTXFilter); this.grpDisplay.Controls.Add(this.lblTXFilterColor); this.grpDisplay.Controls.Add(this.clrbtnBandEdge); this.grpDisplay.Controls.Add(this.lblBandEdge); this.grpDisplay.Controls.Add(this.tbDisplayTxtAlpha); this.grpDisplay.Controls.Add(this.labelTS6); this.grpDisplay.Controls.Add(this.clrbtnDisplayFontBackground); this.grpDisplay.Controls.Add(this.lblDisplayFont); this.grpDisplay.Controls.Add(this.btnDisplayFont); this.grpDisplay.Controls.Add(this.clrbtnGrid); this.grpDisplay.Controls.Add(this.udDisplayLineWidth); this.grpDisplay.Controls.Add(this.lblDisplayLineWidth); this.grpDisplay.Controls.Add(this.clrbtnBackground); this.grpDisplay.Controls.Add(this.lblDisplayDataLineColor); this.grpDisplay.Controls.Add(this.lblDisplayTextColor); this.grpDisplay.Controls.Add(this.clrbtnText); this.grpDisplay.Controls.Add(this.clrbtnDataLine); this.grpDisplay.Controls.Add(this.lblDisplayGridColor); this.grpDisplay.Controls.Add(this.lblDisplayBackgroundColor); this.grpDisplay.Location = new System.Drawing.Point(28, 3); this.grpDisplay.Name = "grpDisplay"; this.grpDisplay.Size = new System.Drawing.Size(263, 267); this.grpDisplay.TabIndex = 80; this.grpDisplay.TabStop = false; this.grpDisplay.Text = "Display"; // // lblGridLineAlpha // this.lblGridLineAlpha.Image = null; this.lblGridLineAlpha.Location = new System.Drawing.Point(14, 68); this.lblGridLineAlpha.Name = "lblGridLineAlpha"; this.lblGridLineAlpha.Size = new System.Drawing.Size(46, 32); this.lblGridLineAlpha.TabIndex = 95; this.lblGridLineAlpha.Text = "Grid line Alpha:"; // // tbGridLineAlpha // this.tbGridLineAlpha.AutoSize = false; this.tbGridLineAlpha.Location = new System.Drawing.Point(60, 78); this.tbGridLineAlpha.Maximum = 255; this.tbGridLineAlpha.Name = "tbGridLineAlpha"; this.tbGridLineAlpha.Size = new System.Drawing.Size(67, 20); this.tbGridLineAlpha.TabIndex = 94; this.tbGridLineAlpha.TickStyle = System.Windows.Forms.TickStyle.None; this.tbGridLineAlpha.Value = 127; this.tbGridLineAlpha.ValueChanged += new System.EventHandler(this.tbGridLineAlpha_ValueChanged); this.tbGridLineAlpha.Scroll += new System.EventHandler(this.tbGridLineAlpha_Scroll); // // chkSmoothLine // this.chkSmoothLine.AutoSize = true; this.chkSmoothLine.Image = null; this.chkSmoothLine.Location = new System.Drawing.Point(155, 238); this.chkSmoothLine.Name = "chkSmoothLine"; this.chkSmoothLine.Size = new System.Drawing.Size(81, 17); this.chkSmoothLine.TabIndex = 93; this.chkSmoothLine.Text = "Smooth line"; this.chkSmoothLine.UseVisualStyleBackColor = true; this.chkSmoothLine.CheckedChanged += new System.EventHandler(this.chkSmoothLine_CheckedChanged); // // lblPanFillColor // this.lblPanFillColor.Image = null; this.lblPanFillColor.Location = new System.Drawing.Point(14, 201); this.lblPanFillColor.Name = "lblPanFillColor"; this.lblPanFillColor.Size = new System.Drawing.Size(70, 14); this.lblPanFillColor.TabIndex = 89; this.lblPanFillColor.Text = "Data fill color"; // // chkDataLineFill // this.chkDataLineFill.AutoSize = true; this.chkDataLineFill.Image = null; this.chkDataLineFill.Location = new System.Drawing.Point(27, 236); this.chkDataLineFill.Name = "chkDataLineFill"; this.chkDataLineFill.Size = new System.Drawing.Size(81, 17); this.chkDataLineFill.TabIndex = 92; this.chkDataLineFill.Text = "Fill data line"; this.chkDataLineFill.UseVisualStyleBackColor = true; this.chkDataLineFill.CheckedChanged += new System.EventHandler(this.chkDataLineFill_CheckedChanged); // // lblDataLineAlpha // this.lblDataLineAlpha.Image = null; this.lblDataLineAlpha.Location = new System.Drawing.Point(14, 160); this.lblDataLineAlpha.Name = "lblDataLineAlpha"; this.lblDataLineAlpha.Size = new System.Drawing.Size(46, 32); this.lblDataLineAlpha.TabIndex = 91; this.lblDataLineAlpha.Text = "Line Alpha:"; // // tbDataLineAlpha // this.tbDataLineAlpha.AutoSize = false; this.tbDataLineAlpha.Location = new System.Drawing.Point(60, 168); this.tbDataLineAlpha.Maximum = 255; this.tbDataLineAlpha.Name = "tbDataLineAlpha"; this.tbDataLineAlpha.Size = new System.Drawing.Size(67, 20); this.tbDataLineAlpha.TabIndex = 90; this.tbDataLineAlpha.TickStyle = System.Windows.Forms.TickStyle.None; this.tbDataLineAlpha.Value = 127; this.tbDataLineAlpha.ValueChanged += new System.EventHandler(this.tbDataLineAlpha_ValueChanged); this.tbDataLineAlpha.Scroll += new System.EventHandler(this.tbDataLineAlpha_Scroll); // // lblDisplayTxtAlpha // this.lblDisplayTxtAlpha.Image = null; this.lblDisplayTxtAlpha.Location = new System.Drawing.Point(133, 120); this.lblDisplayTxtAlpha.Name = "lblDisplayTxtAlpha"; this.lblDisplayTxtAlpha.Size = new System.Drawing.Size(45, 27); this.lblDisplayTxtAlpha.TabIndex = 89; this.lblDisplayTxtAlpha.Text = "Text alpha:"; // // clrbtnTXFilter // this.clrbtnTXFilter.Automatic = "Automatic"; this.clrbtnTXFilter.Color = System.Drawing.Color.Yellow; this.clrbtnTXFilter.Image = null; this.clrbtnTXFilter.Location = new System.Drawing.Point(204, 161); this.clrbtnTXFilter.MoreColors = "More Colors..."; this.clrbtnTXFilter.Name = "clrbtnTXFilter"; this.clrbtnTXFilter.Size = new System.Drawing.Size(40, 23); this.clrbtnTXFilter.TabIndex = 76; this.clrbtnTXFilter.Changed += new System.EventHandler(this.clrbtnTXFilter_Changed); // // lblTXFilterColor // this.lblTXFilterColor.Image = null; this.lblTXFilterColor.Location = new System.Drawing.Point(139, 160); this.lblTXFilterColor.Name = "lblTXFilterColor"; this.lblTXFilterColor.Size = new System.Drawing.Size(54, 28); this.lblTXFilterColor.TabIndex = 75; this.lblTXFilterColor.Text = "TX Filter Color:"; // // clrbtnBandEdge // this.clrbtnBandEdge.Automatic = "Automatic"; this.clrbtnBandEdge.Color = System.Drawing.Color.Red; this.clrbtnBandEdge.Image = null; this.clrbtnBandEdge.Location = new System.Drawing.Point(204, 204); this.clrbtnBandEdge.MoreColors = "More Colors..."; this.clrbtnBandEdge.Name = "clrbtnBandEdge"; this.clrbtnBandEdge.Size = new System.Drawing.Size(40, 23); this.clrbtnBandEdge.TabIndex = 71; this.clrbtnBandEdge.Changed += new System.EventHandler(this.clrbtnBandEdge_Changed); // // lblBandEdge // this.lblBandEdge.Image = null; this.lblBandEdge.Location = new System.Drawing.Point(139, 209); this.lblBandEdge.Name = "lblBandEdge"; this.lblBandEdge.Size = new System.Drawing.Size(64, 18); this.lblBandEdge.TabIndex = 65; this.lblBandEdge.Text = "Band Edge:"; // // tbDisplayTxtAlpha // this.tbDisplayTxtAlpha.AutoSize = false; this.tbDisplayTxtAlpha.Location = new System.Drawing.Point(178, 126); this.tbDisplayTxtAlpha.Maximum = 255; this.tbDisplayTxtAlpha.Name = "tbDisplayTxtAlpha"; this.tbDisplayTxtAlpha.Size = new System.Drawing.Size(66, 20); this.tbDisplayTxtAlpha.TabIndex = 88; this.tbDisplayTxtAlpha.TickStyle = System.Windows.Forms.TickStyle.None; this.tbDisplayTxtAlpha.Value = 127; this.tbDisplayTxtAlpha.ValueChanged += new System.EventHandler(this.tbDisplayTxtAlpha_ValueChanged); this.tbDisplayTxtAlpha.Scroll += new System.EventHandler(this.tbDisplayTxtAlpha_Scroll); // // labelTS6 // this.labelTS6.Image = null; this.labelTS6.Location = new System.Drawing.Point(133, 84); this.labelTS6.Name = "labelTS6"; this.labelTS6.Size = new System.Drawing.Size(71, 30); this.labelTS6.TabIndex = 77; this.labelTS6.Text = "Text background:"; // // clrbtnDisplayFontBackground // this.clrbtnDisplayFontBackground.Automatic = "Automatic"; this.clrbtnDisplayFontBackground.Color = System.Drawing.Color.LightGray; this.clrbtnDisplayFontBackground.Image = null; this.clrbtnDisplayFontBackground.Location = new System.Drawing.Point(204, 88); this.clrbtnDisplayFontBackground.MoreColors = "More Colors..."; this.clrbtnDisplayFontBackground.Name = "clrbtnDisplayFontBackground"; this.clrbtnDisplayFontBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnDisplayFontBackground.TabIndex = 76; this.clrbtnDisplayFontBackground.Changed += new System.EventHandler(this.clrbtnDisplayFontBackground_Changed); // // lblDisplayFont // this.lblDisplayFont.Image = null; this.lblDisplayFont.Location = new System.Drawing.Point(133, 53); this.lblDisplayFont.Name = "lblDisplayFont"; this.lblDisplayFont.Size = new System.Drawing.Size(55, 19); this.lblDisplayFont.TabIndex = 75; this.lblDisplayFont.Text = "Text font:"; // // clrbtnGrid // this.clrbtnGrid.Automatic = "Automatic"; this.clrbtnGrid.Color = System.Drawing.Color.DarkBlue; this.clrbtnGrid.Image = null; this.clrbtnGrid.Location = new System.Drawing.Point(84, 46); this.clrbtnGrid.MoreColors = "More Colors..."; this.clrbtnGrid.Name = "clrbtnGrid"; this.clrbtnGrid.Size = new System.Drawing.Size(40, 23); this.clrbtnGrid.TabIndex = 69; this.clrbtnGrid.Changed += new System.EventHandler(this.clrbtnGrid_Changed); // // udDisplayLineWidth // this.udDisplayLineWidth.DecimalPlaces = 1; this.udDisplayLineWidth.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udDisplayLineWidth.Location = new System.Drawing.Point(84, 139); this.udDisplayLineWidth.Maximum = new decimal(new int[] { 50, 0, 0, 65536}); this.udDisplayLineWidth.Minimum = new decimal(new int[] { 1, 0, 0, 65536}); this.udDisplayLineWidth.Name = "udDisplayLineWidth"; this.udDisplayLineWidth.Size = new System.Drawing.Size(40, 20); this.udDisplayLineWidth.TabIndex = 42; this.udDisplayLineWidth.Value = new decimal(new int[] { 10, 0, 0, 65536}); this.udDisplayLineWidth.ValueChanged += new System.EventHandler(this.udDisplayLineWidth_ValueChanged); this.udDisplayLineWidth.LostFocus += new System.EventHandler(this.udDisplayLineWidth_LostFocus); // // lblDisplayLineWidth // this.lblDisplayLineWidth.Image = null; this.lblDisplayLineWidth.Location = new System.Drawing.Point(13, 141); this.lblDisplayLineWidth.Name = "lblDisplayLineWidth"; this.lblDisplayLineWidth.Size = new System.Drawing.Size(64, 18); this.lblDisplayLineWidth.TabIndex = 43; this.lblDisplayLineWidth.Text = "Line Width:"; // // clrbtnBackground // this.clrbtnBackground.Automatic = "Automatic"; this.clrbtnBackground.Color = System.Drawing.Color.Black; this.clrbtnBackground.Image = null; this.clrbtnBackground.Location = new System.Drawing.Point(84, 14); this.clrbtnBackground.MoreColors = "More Colors..."; this.clrbtnBackground.Name = "clrbtnBackground"; this.clrbtnBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnBackground.TabIndex = 68; this.clrbtnBackground.Changed += new System.EventHandler(this.clrbtnBackground_Changed); // // lblDisplayDataLineColor // this.lblDisplayDataLineColor.Image = null; this.lblDisplayDataLineColor.Location = new System.Drawing.Point(14, 111); this.lblDisplayDataLineColor.Name = "lblDisplayDataLineColor"; this.lblDisplayDataLineColor.Size = new System.Drawing.Size(64, 18); this.lblDisplayDataLineColor.TabIndex = 41; this.lblDisplayDataLineColor.Text = "Data Line:"; // // lblDisplayTextColor // this.lblDisplayTextColor.Image = null; this.lblDisplayTextColor.Location = new System.Drawing.Point(133, 17); this.lblDisplayTextColor.Name = "lblDisplayTextColor"; this.lblDisplayTextColor.Size = new System.Drawing.Size(64, 17); this.lblDisplayTextColor.TabIndex = 39; this.lblDisplayTextColor.Text = "Text color:"; // // clrbtnText // this.clrbtnText.Automatic = "Automatic"; this.clrbtnText.Color = System.Drawing.Color.Yellow; this.clrbtnText.Image = null; this.clrbtnText.Location = new System.Drawing.Point(204, 12); this.clrbtnText.MoreColors = "More Colors..."; this.clrbtnText.Name = "clrbtnText"; this.clrbtnText.Size = new System.Drawing.Size(40, 23); this.clrbtnText.TabIndex = 72; this.clrbtnText.Changed += new System.EventHandler(this.clrbtnText_Changed); // // clrbtnDataLine // this.clrbtnDataLine.Automatic = "Automatic"; this.clrbtnDataLine.Color = System.Drawing.Color.LightGray; this.clrbtnDataLine.Image = null; this.clrbtnDataLine.Location = new System.Drawing.Point(84, 107); this.clrbtnDataLine.MoreColors = "More Colors..."; this.clrbtnDataLine.Name = "clrbtnDataLine"; this.clrbtnDataLine.Size = new System.Drawing.Size(40, 23); this.clrbtnDataLine.TabIndex = 73; this.clrbtnDataLine.Changed += new System.EventHandler(this.clrbtnDataLine_Changed); // // lblDisplayGridColor // this.lblDisplayGridColor.Image = null; this.lblDisplayGridColor.Location = new System.Drawing.Point(14, 48); this.lblDisplayGridColor.Name = "lblDisplayGridColor"; this.lblDisplayGridColor.Size = new System.Drawing.Size(45, 16); this.lblDisplayGridColor.TabIndex = 35; this.lblDisplayGridColor.Text = "Grid:"; // // lblDisplayBackgroundColor // this.lblDisplayBackgroundColor.Image = null; this.lblDisplayBackgroundColor.Location = new System.Drawing.Point(12, 20); this.lblDisplayBackgroundColor.Name = "lblDisplayBackgroundColor"; this.lblDisplayBackgroundColor.Size = new System.Drawing.Size(72, 18); this.lblDisplayBackgroundColor.TabIndex = 34; this.lblDisplayBackgroundColor.Text = "Background:"; // // grpDisplayPeakCursor // this.grpDisplayPeakCursor.Controls.Add(this.clrbtnPeakBackground); this.grpDisplayPeakCursor.Controls.Add(this.lblPeakBackground); this.grpDisplayPeakCursor.Controls.Add(this.clrbtnPeakText); this.grpDisplayPeakCursor.Controls.Add(this.lblPeakText); this.grpDisplayPeakCursor.Location = new System.Drawing.Point(300, 13); this.grpDisplayPeakCursor.Name = "grpDisplayPeakCursor"; this.grpDisplayPeakCursor.Size = new System.Drawing.Size(136, 100); this.grpDisplayPeakCursor.TabIndex = 74; this.grpDisplayPeakCursor.TabStop = false; this.grpDisplayPeakCursor.Text = "Cursor/Peak Readout"; // // clrbtnPeakBackground // this.clrbtnPeakBackground.Automatic = "Automatic"; this.clrbtnPeakBackground.Color = System.Drawing.Color.Black; this.clrbtnPeakBackground.Image = null; this.clrbtnPeakBackground.Location = new System.Drawing.Point(80, 56); this.clrbtnPeakBackground.MoreColors = "More Colors..."; this.clrbtnPeakBackground.Name = "clrbtnPeakBackground"; this.clrbtnPeakBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnPeakBackground.TabIndex = 73; this.clrbtnPeakBackground.Changed += new System.EventHandler(this.clrbtnPeakBackground_Changed); // // lblPeakBackground // this.lblPeakBackground.Image = null; this.lblPeakBackground.Location = new System.Drawing.Point(8, 56); this.lblPeakBackground.Name = "lblPeakBackground"; this.lblPeakBackground.Size = new System.Drawing.Size(72, 24); this.lblPeakBackground.TabIndex = 72; this.lblPeakBackground.Text = "Background:"; // // clrbtnPeakText // this.clrbtnPeakText.Automatic = "Automatic"; this.clrbtnPeakText.Color = System.Drawing.Color.DodgerBlue; this.clrbtnPeakText.Image = null; this.clrbtnPeakText.Location = new System.Drawing.Point(80, 24); this.clrbtnPeakText.MoreColors = "More Colors..."; this.clrbtnPeakText.Name = "clrbtnPeakText"; this.clrbtnPeakText.Size = new System.Drawing.Size(40, 23); this.clrbtnPeakText.TabIndex = 71; this.clrbtnPeakText.Changed += new System.EventHandler(this.clrbtnPeakText_Changed); // // lblPeakText // this.lblPeakText.Image = null; this.lblPeakText.Location = new System.Drawing.Point(8, 24); this.lblPeakText.Name = "lblPeakText"; this.lblPeakText.Size = new System.Drawing.Size(64, 24); this.lblPeakText.TabIndex = 65; this.lblPeakText.Text = "Peak Text:"; // // tpAppearanceGeneral // this.tpAppearanceGeneral.Controls.Add(this.grpAppearanceNewVFO); this.tpAppearanceGeneral.Controls.Add(this.grpAppearanceBand); this.tpAppearanceGeneral.Controls.Add(this.grpAppearanceVFO); this.tpAppearanceGeneral.Controls.Add(this.clrbtnBtnSel); this.tpAppearanceGeneral.Controls.Add(this.lblAppearanceGenBtnSel); this.tpAppearanceGeneral.Location = new System.Drawing.Point(4, 22); this.tpAppearanceGeneral.Name = "tpAppearanceGeneral"; this.tpAppearanceGeneral.Size = new System.Drawing.Size(592, 318); this.tpAppearanceGeneral.TabIndex = 0; this.tpAppearanceGeneral.Text = "General"; // // grpAppearanceNewVFO // this.grpAppearanceNewVFO.Controls.Add(this.lblNewVFOBandFont); this.grpAppearanceNewVFO.Controls.Add(this.btnNewVFOBandFont); this.grpAppearanceNewVFO.Controls.Add(this.lblNewVFOSmallFont); this.grpAppearanceNewVFO.Controls.Add(this.btnNewVFOSmallFont); this.grpAppearanceNewVFO.Controls.Add(this.lblNewVFOLargeFont); this.grpAppearanceNewVFO.Controls.Add(this.btnNewVFOLargeFont); this.grpAppearanceNewVFO.Controls.Add(this.clrbtnNewVFOBackColor); this.grpAppearanceNewVFO.Controls.Add(this.lblNewVFOBAckColor); this.grpAppearanceNewVFO.Location = new System.Drawing.Point(400, 16); this.grpAppearanceNewVFO.Name = "grpAppearanceNewVFO"; this.grpAppearanceNewVFO.Size = new System.Drawing.Size(170, 267); this.grpAppearanceNewVFO.TabIndex = 75; this.grpAppearanceNewVFO.TabStop = false; this.grpAppearanceNewVFO.Text = "New VFO look settings"; // // lblNewVFOBandFont // this.lblNewVFOBandFont.Image = null; this.lblNewVFOBandFont.Location = new System.Drawing.Point(19, 154); this.lblNewVFOBandFont.Name = "lblNewVFOBandFont"; this.lblNewVFOBandFont.Size = new System.Drawing.Size(89, 22); this.lblNewVFOBandFont.TabIndex = 99; this.lblNewVFOBandFont.Text = "VFOA band font."; // // lblNewVFOSmallFont // this.lblNewVFOSmallFont.Image = null; this.lblNewVFOSmallFont.Location = new System.Drawing.Point(19, 112); this.lblNewVFOSmallFont.Name = "lblNewVFOSmallFont"; this.lblNewVFOSmallFont.Size = new System.Drawing.Size(89, 32); this.lblNewVFOSmallFont.TabIndex = 97; this.lblNewVFOSmallFont.Text = "VFOB and LOSC font:"; // // lblNewVFOLargeFont // this.lblNewVFOLargeFont.Image = null; this.lblNewVFOLargeFont.Location = new System.Drawing.Point(18, 77); this.lblNewVFOLargeFont.Name = "lblNewVFOLargeFont"; this.lblNewVFOLargeFont.Size = new System.Drawing.Size(89, 19); this.lblNewVFOLargeFont.TabIndex = 95; this.lblNewVFOLargeFont.Text = "VFOA font:"; // // btnNewVFOLargeFont // this.btnNewVFOLargeFont.Image = null; this.btnNewVFOLargeFont.Location = new System.Drawing.Point(112, 73); this.btnNewVFOLargeFont.Name = "btnNewVFOLargeFont"; this.btnNewVFOLargeFont.Size = new System.Drawing.Size(40, 23); this.btnNewVFOLargeFont.TabIndex = 94; this.btnNewVFOLargeFont.Text = "Font"; this.btnNewVFOLargeFont.UseVisualStyleBackColor = true; this.btnNewVFOLargeFont.Click += new System.EventHandler(this.btnNewVFOLargeFont_Click); // // clrbtnNewVFOBackColor // this.clrbtnNewVFOBackColor.Automatic = "Automatic"; this.clrbtnNewVFOBackColor.Color = System.Drawing.Color.Black; this.clrbtnNewVFOBackColor.Image = null; this.clrbtnNewVFOBackColor.Location = new System.Drawing.Point(112, 34); this.clrbtnNewVFOBackColor.MoreColors = "More Colors..."; this.clrbtnNewVFOBackColor.Name = "clrbtnNewVFOBackColor"; this.clrbtnNewVFOBackColor.Size = new System.Drawing.Size(40, 23); this.clrbtnNewVFOBackColor.TabIndex = 93; this.clrbtnNewVFOBackColor.Changed += new System.EventHandler(this.clrbtnNewVFOBackColor_Changed); // // lblNewVFOBAckColor // this.lblNewVFOBAckColor.Image = null; this.lblNewVFOBAckColor.Location = new System.Drawing.Point(19, 34); this.lblNewVFOBAckColor.Name = "lblNewVFOBAckColor"; this.lblNewVFOBAckColor.Size = new System.Drawing.Size(74, 37); this.lblNewVFOBAckColor.TabIndex = 92; this.lblNewVFOBAckColor.Text = "Background color."; // // grpAppearanceBand // this.grpAppearanceBand.Controls.Add(this.clrbtnBandBackground); this.grpAppearanceBand.Controls.Add(this.lblBandBackground); this.grpAppearanceBand.Controls.Add(this.clrbtnBandLight); this.grpAppearanceBand.Controls.Add(this.clrbtnBandDark); this.grpAppearanceBand.Controls.Add(this.lblBandLight); this.grpAppearanceBand.Controls.Add(this.lblBandDark); this.grpAppearanceBand.Controls.Add(this.clrbtnOutOfBand); this.grpAppearanceBand.Controls.Add(this.lblOutOfBand); this.grpAppearanceBand.Location = new System.Drawing.Point(22, 128); this.grpAppearanceBand.Name = "grpAppearanceBand"; this.grpAppearanceBand.Size = new System.Drawing.Size(144, 152); this.grpAppearanceBand.TabIndex = 74; this.grpAppearanceBand.TabStop = false; this.grpAppearanceBand.Text = "Band Data"; // // clrbtnBandBackground // this.clrbtnBandBackground.Automatic = "Automatic"; this.clrbtnBandBackground.Color = System.Drawing.Color.Black; this.clrbtnBandBackground.Image = null; this.clrbtnBandBackground.Location = new System.Drawing.Point(88, 120); this.clrbtnBandBackground.MoreColors = "More Colors..."; this.clrbtnBandBackground.Name = "clrbtnBandBackground"; this.clrbtnBandBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnBandBackground.TabIndex = 75; this.clrbtnBandBackground.Changed += new System.EventHandler(this.clrbtnBandBackground_Changed); // // lblBandBackground // this.lblBandBackground.Image = null; this.lblBandBackground.Location = new System.Drawing.Point(16, 120); this.lblBandBackground.Name = "lblBandBackground"; this.lblBandBackground.Size = new System.Drawing.Size(72, 24); this.lblBandBackground.TabIndex = 74; this.lblBandBackground.Text = "Background:"; // // clrbtnBandLight // this.clrbtnBandLight.Automatic = "Automatic"; this.clrbtnBandLight.Color = System.Drawing.Color.Lime; this.clrbtnBandLight.Image = null; this.clrbtnBandLight.Location = new System.Drawing.Point(88, 56); this.clrbtnBandLight.MoreColors = "More Colors..."; this.clrbtnBandLight.Name = "clrbtnBandLight"; this.clrbtnBandLight.Size = new System.Drawing.Size(40, 23); this.clrbtnBandLight.TabIndex = 70; this.clrbtnBandLight.Changed += new System.EventHandler(this.clrbtnBandLight_Changed); // // clrbtnBandDark // this.clrbtnBandDark.Automatic = "Automatic"; this.clrbtnBandDark.Color = System.Drawing.Color.Green; this.clrbtnBandDark.Image = null; this.clrbtnBandDark.Location = new System.Drawing.Point(88, 24); this.clrbtnBandDark.MoreColors = "More Colors..."; this.clrbtnBandDark.Name = "clrbtnBandDark"; this.clrbtnBandDark.Size = new System.Drawing.Size(40, 23); this.clrbtnBandDark.TabIndex = 69; this.clrbtnBandDark.Changed += new System.EventHandler(this.clrbtnBandDark_Changed); // // lblBandLight // this.lblBandLight.Image = null; this.lblBandLight.Location = new System.Drawing.Point(16, 56); this.lblBandLight.Name = "lblBandLight"; this.lblBandLight.Size = new System.Drawing.Size(64, 24); this.lblBandLight.TabIndex = 63; this.lblBandLight.Text = "Active:"; // // lblBandDark // this.lblBandDark.Image = null; this.lblBandDark.Location = new System.Drawing.Point(16, 24); this.lblBandDark.Name = "lblBandDark"; this.lblBandDark.Size = new System.Drawing.Size(64, 24); this.lblBandDark.TabIndex = 61; this.lblBandDark.Text = "Inactive:"; // // clrbtnOutOfBand // this.clrbtnOutOfBand.Automatic = "Automatic"; this.clrbtnOutOfBand.Color = System.Drawing.Color.DimGray; this.clrbtnOutOfBand.Image = null; this.clrbtnOutOfBand.Location = new System.Drawing.Point(88, 88); this.clrbtnOutOfBand.MoreColors = "More Colors..."; this.clrbtnOutOfBand.Name = "clrbtnOutOfBand"; this.clrbtnOutOfBand.Size = new System.Drawing.Size(40, 23); this.clrbtnOutOfBand.TabIndex = 73; this.clrbtnOutOfBand.Changed += new System.EventHandler(this.clrbtnOutOfBand_Changed); // // lblOutOfBand // this.lblOutOfBand.Image = null; this.lblOutOfBand.Location = new System.Drawing.Point(16, 88); this.lblOutOfBand.Name = "lblOutOfBand"; this.lblOutOfBand.Size = new System.Drawing.Size(72, 24); this.lblOutOfBand.TabIndex = 72; this.lblOutOfBand.Text = "Out Of Band:"; // // grpAppearanceVFO // this.grpAppearanceVFO.Controls.Add(this.lblVFOSmallFont); this.grpAppearanceVFO.Controls.Add(this.btnVFOSmallFont); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOBackground); this.grpAppearanceVFO.Controls.Add(this.lblVFOBackground); this.grpAppearanceVFO.Controls.Add(this.lblVFOLargeFont); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOSmallColor); this.grpAppearanceVFO.Controls.Add(this.btnVFOLargeFont); this.grpAppearanceVFO.Controls.Add(this.lblVFOSmallColor); this.grpAppearanceVFO.Controls.Add(this.chkVFOSmallLSD); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOLight); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFODark); this.grpAppearanceVFO.Controls.Add(this.lblVFOPowerOn); this.grpAppearanceVFO.Controls.Add(this.lblVFOPowerOff); this.grpAppearanceVFO.Location = new System.Drawing.Point(198, 16); this.grpAppearanceVFO.Name = "grpAppearanceVFO"; this.grpAppearanceVFO.Size = new System.Drawing.Size(170, 267); this.grpAppearanceVFO.TabIndex = 39; this.grpAppearanceVFO.TabStop = false; this.grpAppearanceVFO.Text = "VFO"; // // lblVFOSmallFont // this.lblVFOSmallFont.Image = null; this.lblVFOSmallFont.Location = new System.Drawing.Point(13, 228); this.lblVFOSmallFont.Name = "lblVFOSmallFont"; this.lblVFOSmallFont.Size = new System.Drawing.Size(89, 19); this.lblVFOSmallFont.TabIndex = 91; this.lblVFOSmallFont.Text = "VFO small font:"; // // clrbtnVFOBackground // this.clrbtnVFOBackground.Automatic = "Automatic"; this.clrbtnVFOBackground.Color = System.Drawing.Color.Black; this.clrbtnVFOBackground.Image = null; this.clrbtnVFOBackground.Location = new System.Drawing.Point(107, 89); this.clrbtnVFOBackground.MoreColors = "More Colors..."; this.clrbtnVFOBackground.Name = "clrbtnVFOBackground"; this.clrbtnVFOBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOBackground.TabIndex = 73; this.clrbtnVFOBackground.Changed += new System.EventHandler(this.clrbtnVFOBackground_Changed); // // lblVFOBackground // this.lblVFOBackground.Image = null; this.lblVFOBackground.Location = new System.Drawing.Point(13, 88); this.lblVFOBackground.Name = "lblVFOBackground"; this.lblVFOBackground.Size = new System.Drawing.Size(73, 24); this.lblVFOBackground.TabIndex = 72; this.lblVFOBackground.Text = "Background:"; // // lblVFOLargeFont // this.lblVFOLargeFont.Image = null; this.lblVFOLargeFont.Location = new System.Drawing.Point(13, 190); this.lblVFOLargeFont.Name = "lblVFOLargeFont"; this.lblVFOLargeFont.Size = new System.Drawing.Size(89, 19); this.lblVFOLargeFont.TabIndex = 89; this.lblVFOLargeFont.Text = "VFO large font:"; // // clrbtnVFOSmallColor // this.clrbtnVFOSmallColor.Automatic = "Automatic"; this.clrbtnVFOSmallColor.Color = System.Drawing.Color.OrangeRed; this.clrbtnVFOSmallColor.Image = null; this.clrbtnVFOSmallColor.Location = new System.Drawing.Point(107, 152); this.clrbtnVFOSmallColor.MoreColors = "More Colors..."; this.clrbtnVFOSmallColor.Name = "clrbtnVFOSmallColor"; this.clrbtnVFOSmallColor.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOSmallColor.TabIndex = 71; this.clrbtnVFOSmallColor.Changed += new System.EventHandler(this.clrbtnVFOSmallColor_Changed); // // lblVFOSmallColor // this.lblVFOSmallColor.Image = null; this.lblVFOSmallColor.Location = new System.Drawing.Point(13, 156); this.lblVFOSmallColor.Name = "lblVFOSmallColor"; this.lblVFOSmallColor.Size = new System.Drawing.Size(73, 24); this.lblVFOSmallColor.TabIndex = 70; this.lblVFOSmallColor.Text = "Small Color:"; // // chkVFOSmallLSD // this.chkVFOSmallLSD.Checked = true; this.chkVFOSmallLSD.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVFOSmallLSD.Image = null; this.chkVFOSmallLSD.Location = new System.Drawing.Point(16, 120); this.chkVFOSmallLSD.Name = "chkVFOSmallLSD"; this.chkVFOSmallLSD.Size = new System.Drawing.Size(104, 24); this.chkVFOSmallLSD.TabIndex = 69; this.chkVFOSmallLSD.Text = "Small 3 Digits"; this.chkVFOSmallLSD.CheckedChanged += new System.EventHandler(this.chkVFOSmallLSD_CheckedChanged); // // clrbtnVFOLight // this.clrbtnVFOLight.Automatic = "Automatic"; this.clrbtnVFOLight.Color = System.Drawing.Color.Yellow; this.clrbtnVFOLight.Image = null; this.clrbtnVFOLight.Location = new System.Drawing.Point(107, 56); this.clrbtnVFOLight.MoreColors = "More Colors..."; this.clrbtnVFOLight.Name = "clrbtnVFOLight"; this.clrbtnVFOLight.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOLight.TabIndex = 68; this.clrbtnVFOLight.Changed += new System.EventHandler(this.clrbtnVFOLight_Changed); // // clrbtnVFODark // this.clrbtnVFODark.Automatic = "Automatic"; this.clrbtnVFODark.Color = System.Drawing.Color.Olive; this.clrbtnVFODark.Image = null; this.clrbtnVFODark.Location = new System.Drawing.Point(107, 25); this.clrbtnVFODark.MoreColors = "More Colors..."; this.clrbtnVFODark.Name = "clrbtnVFODark"; this.clrbtnVFODark.Size = new System.Drawing.Size(40, 23); this.clrbtnVFODark.TabIndex = 67; this.clrbtnVFODark.Changed += new System.EventHandler(this.clrbtnVFODark_Changed); // // lblVFOPowerOn // this.lblVFOPowerOn.Image = null; this.lblVFOPowerOn.Location = new System.Drawing.Point(13, 55); this.lblVFOPowerOn.Name = "lblVFOPowerOn"; this.lblVFOPowerOn.Size = new System.Drawing.Size(64, 24); this.lblVFOPowerOn.TabIndex = 59; this.lblVFOPowerOn.Text = "Active:"; // // lblVFOPowerOff // this.lblVFOPowerOff.Image = null; this.lblVFOPowerOff.Location = new System.Drawing.Point(13, 30); this.lblVFOPowerOff.Name = "lblVFOPowerOff"; this.lblVFOPowerOff.Size = new System.Drawing.Size(64, 24); this.lblVFOPowerOff.TabIndex = 57; this.lblVFOPowerOff.Text = "Inactive:"; // // clrbtnBtnSel // this.clrbtnBtnSel.Automatic = "Automatic"; this.clrbtnBtnSel.Color = System.Drawing.Color.Yellow; this.clrbtnBtnSel.Image = null; this.clrbtnBtnSel.Location = new System.Drawing.Point(107, 16); this.clrbtnBtnSel.MoreColors = "More Colors..."; this.clrbtnBtnSel.Name = "clrbtnBtnSel"; this.clrbtnBtnSel.Size = new System.Drawing.Size(40, 23); this.clrbtnBtnSel.TabIndex = 66; this.clrbtnBtnSel.Changed += new System.EventHandler(this.clrbtnBtnSel_Changed); // // lblAppearanceGenBtnSel // this.lblAppearanceGenBtnSel.Image = null; this.lblAppearanceGenBtnSel.Location = new System.Drawing.Point(16, 16); this.lblAppearanceGenBtnSel.Name = "lblAppearanceGenBtnSel"; this.lblAppearanceGenBtnSel.Size = new System.Drawing.Size(64, 32); this.lblAppearanceGenBtnSel.TabIndex = 55; this.lblAppearanceGenBtnSel.Text = "Button Selected:"; // // tpAppearanceMeter // this.tpAppearanceMeter.Controls.Add(this.grpNewVFOSMeter); this.tpAppearanceMeter.Controls.Add(this.labelTS2); this.tpAppearanceMeter.Controls.Add(this.clrbtnMeterDigBackground); this.tpAppearanceMeter.Controls.Add(this.lblMeterDigitalText); this.tpAppearanceMeter.Controls.Add(this.clrbtnMeterDigText); this.tpAppearanceMeter.Controls.Add(this.grpMeterEdge); this.tpAppearanceMeter.Controls.Add(this.grpAppearanceMeter); this.tpAppearanceMeter.Controls.Add(this.lblMeterType); this.tpAppearanceMeter.Controls.Add(this.comboMeterType); this.tpAppearanceMeter.Location = new System.Drawing.Point(4, 22); this.tpAppearanceMeter.Name = "tpAppearanceMeter"; this.tpAppearanceMeter.Size = new System.Drawing.Size(592, 318); this.tpAppearanceMeter.TabIndex = 2; this.tpAppearanceMeter.Text = "Meter"; // // grpNewVFOSMeter // this.grpNewVFOSMeter.Controls.Add(this.tbSmeterAlpha); this.grpNewVFOSMeter.Controls.Add(this.labelTS61); this.grpNewVFOSMeter.Controls.Add(this.groupBoxTS11); this.grpNewVFOSMeter.Controls.Add(this.radNewVFOSMeterDigital2); this.grpNewVFOSMeter.Controls.Add(this.labelTS51); this.grpNewVFOSMeter.Controls.Add(this.comboNewVFOSMeterSignal); this.grpNewVFOSMeter.Controls.Add(this.radNewVFOSMeterDigital1); this.grpNewVFOSMeter.Controls.Add(this.radNewVFOSMeterAnalog); this.grpNewVFOSMeter.Location = new System.Drawing.Point(363, 7); this.grpNewVFOSMeter.Name = "grpNewVFOSMeter"; this.grpNewVFOSMeter.Size = new System.Drawing.Size(176, 300); this.grpNewVFOSMeter.TabIndex = 85; this.grpNewVFOSMeter.TabStop = false; this.grpNewVFOSMeter.Text = "NewVFO SMeter"; // // tbSmeterAlpha // this.tbSmeterAlpha.AutoSize = false; this.tbSmeterAlpha.Location = new System.Drawing.Point(76, 93); this.tbSmeterAlpha.Maximum = 255; this.tbSmeterAlpha.Name = "tbSmeterAlpha"; this.tbSmeterAlpha.Size = new System.Drawing.Size(67, 20); this.tbSmeterAlpha.TabIndex = 86; this.tbSmeterAlpha.TickStyle = System.Windows.Forms.TickStyle.None; this.tbSmeterAlpha.Value = 127; this.tbSmeterAlpha.Scroll += new System.EventHandler(this.tbSmeterAlpha_Scroll); // // labelTS61 // this.labelTS61.Image = null; this.labelTS61.Location = new System.Drawing.Point(31, 95); this.labelTS61.Name = "labelTS61"; this.labelTS61.Size = new System.Drawing.Size(46, 13); this.labelTS61.TabIndex = 87; this.labelTS61.Text = "Alpha:"; // // groupBoxTS11 // this.groupBoxTS11.Controls.Add(this.clrbtnNewVFOSMeterDigitalSWRLine); this.groupBoxTS11.Controls.Add(this.labelTS53); this.groupBoxTS11.Controls.Add(this.clrbtnNewVFOSMeterDigitalSigLineLit); this.groupBoxTS11.Controls.Add(this.labelTS52); this.groupBoxTS11.Controls.Add(this.clrbtnNewVFOSMeterDigitalSigLineDrk); this.groupBoxTS11.Controls.Add(this.labelTS50); this.groupBoxTS11.Location = new System.Drawing.Point(12, 159); this.groupBoxTS11.Name = "groupBoxTS11"; this.groupBoxTS11.Size = new System.Drawing.Size(152, 135); this.groupBoxTS11.TabIndex = 82; this.groupBoxTS11.TabStop = false; this.groupBoxTS11.Text = "Type 1 settings"; // // clrbtnNewVFOSMeterDigitalSWRLine // this.clrbtnNewVFOSMeterDigitalSWRLine.Automatic = "Automatic"; this.clrbtnNewVFOSMeterDigitalSWRLine.Color = System.Drawing.Color.YellowGreen; this.clrbtnNewVFOSMeterDigitalSWRLine.Image = null; this.clrbtnNewVFOSMeterDigitalSWRLine.Location = new System.Drawing.Point(93, 96); this.clrbtnNewVFOSMeterDigitalSWRLine.MoreColors = "More Colors..."; this.clrbtnNewVFOSMeterDigitalSWRLine.Name = "clrbtnNewVFOSMeterDigitalSWRLine"; this.clrbtnNewVFOSMeterDigitalSWRLine.Size = new System.Drawing.Size(40, 23); this.clrbtnNewVFOSMeterDigitalSWRLine.TabIndex = 78; this.clrbtnNewVFOSMeterDigitalSWRLine.Changed += new System.EventHandler(this.clrbtnNewVFOSMeterDigitalSWRLine_Changed); // // labelTS53 // this.labelTS53.Image = null; this.labelTS53.Location = new System.Drawing.Point(20, 60); this.labelTS53.Name = "labelTS53"; this.labelTS53.Size = new System.Drawing.Size(66, 33); this.labelTS53.TabIndex = 79; this.labelTS53.Text = "Signal line color dark:"; // // clrbtnNewVFOSMeterDigitalSigLineLit // this.clrbtnNewVFOSMeterDigitalSigLineLit.Automatic = "Automatic"; this.clrbtnNewVFOSMeterDigitalSigLineLit.Color = System.Drawing.Color.LawnGreen; this.clrbtnNewVFOSMeterDigitalSigLineLit.Image = null; this.clrbtnNewVFOSMeterDigitalSigLineLit.Location = new System.Drawing.Point(93, 32); this.clrbtnNewVFOSMeterDigitalSigLineLit.MoreColors = "More Colors..."; this.clrbtnNewVFOSMeterDigitalSigLineLit.Name = "clrbtnNewVFOSMeterDigitalSigLineLit"; this.clrbtnNewVFOSMeterDigitalSigLineLit.Size = new System.Drawing.Size(40, 23); this.clrbtnNewVFOSMeterDigitalSigLineLit.TabIndex = 76; this.clrbtnNewVFOSMeterDigitalSigLineLit.Changed += new System.EventHandler(this.clrbtnNewVFOSMeterDigital_Changed); // // labelTS52 // this.labelTS52.Image = null; this.labelTS52.Location = new System.Drawing.Point(20, 29); this.labelTS52.Name = "labelTS52"; this.labelTS52.Size = new System.Drawing.Size(66, 33); this.labelTS52.TabIndex = 75; this.labelTS52.Text = "Signal line color lite:"; // // clrbtnNewVFOSMeterDigitalSigLineDrk // this.clrbtnNewVFOSMeterDigitalSigLineDrk.Automatic = "Automatic"; this.clrbtnNewVFOSMeterDigitalSigLineDrk.Color = System.Drawing.Color.Gray; this.clrbtnNewVFOSMeterDigitalSigLineDrk.Image = null; this.clrbtnNewVFOSMeterDigitalSigLineDrk.Location = new System.Drawing.Point(93, 63); this.clrbtnNewVFOSMeterDigitalSigLineDrk.MoreColors = "More Colors..."; this.clrbtnNewVFOSMeterDigitalSigLineDrk.Name = "clrbtnNewVFOSMeterDigitalSigLineDrk"; this.clrbtnNewVFOSMeterDigitalSigLineDrk.Size = new System.Drawing.Size(40, 23); this.clrbtnNewVFOSMeterDigitalSigLineDrk.TabIndex = 80; this.clrbtnNewVFOSMeterDigitalSigLineDrk.Changed += new System.EventHandler(this.clrbtnNewVFOSMeterDigitalSigLineDrk_Changed); // // labelTS50 // this.labelTS50.Image = null; this.labelTS50.Location = new System.Drawing.Point(20, 93); this.labelTS50.Name = "labelTS50"; this.labelTS50.Size = new System.Drawing.Size(66, 33); this.labelTS50.TabIndex = 77; this.labelTS50.Text = "SWR line color:"; // // radNewVFOSMeterDigital2 // this.radNewVFOSMeterDigital2.AutoSize = true; this.radNewVFOSMeterDigital2.Image = null; this.radNewVFOSMeterDigital2.Location = new System.Drawing.Point(45, 66); this.radNewVFOSMeterDigital2.Name = "radNewVFOSMeterDigital2"; this.radNewVFOSMeterDigital2.Size = new System.Drawing.Size(86, 17); this.radNewVFOSMeterDigital2.TabIndex = 81; this.radNewVFOSMeterDigital2.Text = "Digital type 2"; this.radNewVFOSMeterDigital2.UseVisualStyleBackColor = true; this.radNewVFOSMeterDigital2.CheckedChanged += new System.EventHandler(this.radNewVFOSMeterDigital2_CheckedChanged); // // labelTS51 // this.labelTS51.AutoSize = true; this.labelTS51.Image = null; this.labelTS51.Location = new System.Drawing.Point(48, 116); this.labelTS51.Name = "labelTS51"; this.labelTS51.Size = new System.Drawing.Size(81, 13); this.labelTS51.TabIndex = 5; this.labelTS51.Text = "RX signal mode"; // // radNewVFOSMeterDigital1 // this.radNewVFOSMeterDigital1.AutoSize = true; this.radNewVFOSMeterDigital1.Image = null; this.radNewVFOSMeterDigital1.Location = new System.Drawing.Point(45, 43); this.radNewVFOSMeterDigital1.Name = "radNewVFOSMeterDigital1"; this.radNewVFOSMeterDigital1.Size = new System.Drawing.Size(86, 17); this.radNewVFOSMeterDigital1.TabIndex = 1; this.radNewVFOSMeterDigital1.Text = "Digital type 1"; this.radNewVFOSMeterDigital1.UseVisualStyleBackColor = true; this.radNewVFOSMeterDigital1.CheckedChanged += new System.EventHandler(this.radNewVFOSMeterDigital_CheckedChanged); // // radNewVFOSMeterAnalog // this.radNewVFOSMeterAnalog.AutoSize = true; this.radNewVFOSMeterAnalog.Checked = true; this.radNewVFOSMeterAnalog.Image = null; this.radNewVFOSMeterAnalog.Location = new System.Drawing.Point(45, 20); this.radNewVFOSMeterAnalog.Name = "radNewVFOSMeterAnalog"; this.radNewVFOSMeterAnalog.Size = new System.Drawing.Size(58, 17); this.radNewVFOSMeterAnalog.TabIndex = 0; this.radNewVFOSMeterAnalog.TabStop = true; this.radNewVFOSMeterAnalog.Text = "Analog"; this.radNewVFOSMeterAnalog.UseVisualStyleBackColor = true; this.radNewVFOSMeterAnalog.CheckedChanged += new System.EventHandler(this.radNewVFOSMeterAnalog_CheckedChanged); // // labelTS2 // this.labelTS2.Image = null; this.labelTS2.Location = new System.Drawing.Point(24, 80); this.labelTS2.Name = "labelTS2"; this.labelTS2.Size = new System.Drawing.Size(72, 32); this.labelTS2.TabIndex = 83; this.labelTS2.Text = "Digital Background:"; // // clrbtnMeterDigBackground // this.clrbtnMeterDigBackground.Automatic = "Automatic"; this.clrbtnMeterDigBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterDigBackground.Image = null; this.clrbtnMeterDigBackground.Location = new System.Drawing.Point(96, 80); this.clrbtnMeterDigBackground.MoreColors = "More Colors..."; this.clrbtnMeterDigBackground.Name = "clrbtnMeterDigBackground"; this.clrbtnMeterDigBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterDigBackground.TabIndex = 84; this.clrbtnMeterDigBackground.Changed += new System.EventHandler(this.clrbtnMeterDigBackground_Changed); // // lblMeterDigitalText // this.lblMeterDigitalText.Image = null; this.lblMeterDigitalText.Location = new System.Drawing.Point(24, 48); this.lblMeterDigitalText.Name = "lblMeterDigitalText"; this.lblMeterDigitalText.Size = new System.Drawing.Size(72, 24); this.lblMeterDigitalText.TabIndex = 81; this.lblMeterDigitalText.Text = "Digital Text:"; // // clrbtnMeterDigText // this.clrbtnMeterDigText.Automatic = "Automatic"; this.clrbtnMeterDigText.Color = System.Drawing.Color.Yellow; this.clrbtnMeterDigText.Image = null; this.clrbtnMeterDigText.Location = new System.Drawing.Point(96, 48); this.clrbtnMeterDigText.MoreColors = "More Colors..."; this.clrbtnMeterDigText.Name = "clrbtnMeterDigText"; this.clrbtnMeterDigText.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterDigText.TabIndex = 82; this.clrbtnMeterDigText.Changed += new System.EventHandler(this.clrbtnMeterDigText_Changed); // // grpMeterEdge // this.grpMeterEdge.Controls.Add(this.clrbtnEdgeIndicator); this.grpMeterEdge.Controls.Add(this.labelTS1); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeBackground); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeBackground); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeHigh); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeHigh); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeLow); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeLow); this.grpMeterEdge.Location = new System.Drawing.Point(168, 137); this.grpMeterEdge.Name = "grpMeterEdge"; this.grpMeterEdge.Size = new System.Drawing.Size(136, 160); this.grpMeterEdge.TabIndex = 80; this.grpMeterEdge.TabStop = false; this.grpMeterEdge.Text = "Edge Style"; // // clrbtnEdgeIndicator // this.clrbtnEdgeIndicator.Automatic = "Automatic"; this.clrbtnEdgeIndicator.Color = System.Drawing.Color.Yellow; this.clrbtnEdgeIndicator.ForeColor = System.Drawing.Color.Black; this.clrbtnEdgeIndicator.Image = null; this.clrbtnEdgeIndicator.Location = new System.Drawing.Point(80, 120); this.clrbtnEdgeIndicator.MoreColors = "More Colors..."; this.clrbtnEdgeIndicator.Name = "clrbtnEdgeIndicator"; this.clrbtnEdgeIndicator.Size = new System.Drawing.Size(40, 23); this.clrbtnEdgeIndicator.TabIndex = 79; this.clrbtnEdgeIndicator.Changed += new System.EventHandler(this.clrbtnEdgeIndicator_Changed); // // labelTS1 // this.labelTS1.Image = null; this.labelTS1.Location = new System.Drawing.Point(8, 120); this.labelTS1.Name = "labelTS1"; this.labelTS1.Size = new System.Drawing.Size(56, 24); this.labelTS1.TabIndex = 78; this.labelTS1.Text = "Indicator:"; // // clrbtnMeterEdgeBackground // this.clrbtnMeterEdgeBackground.Automatic = "Automatic"; this.clrbtnMeterEdgeBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterEdgeBackground.ForeColor = System.Drawing.Color.Black; this.clrbtnMeterEdgeBackground.Image = null; this.clrbtnMeterEdgeBackground.Location = new System.Drawing.Point(80, 88); this.clrbtnMeterEdgeBackground.MoreColors = "More Colors..."; this.clrbtnMeterEdgeBackground.Name = "clrbtnMeterEdgeBackground"; this.clrbtnMeterEdgeBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeBackground.TabIndex = 77; this.clrbtnMeterEdgeBackground.Changed += new System.EventHandler(this.clrbtnMeterEdgeBackground_Changed); // // lblMeterEdgeBackground // this.lblMeterEdgeBackground.Image = null; this.lblMeterEdgeBackground.Location = new System.Drawing.Point(8, 88); this.lblMeterEdgeBackground.Name = "lblMeterEdgeBackground"; this.lblMeterEdgeBackground.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeBackground.TabIndex = 76; this.lblMeterEdgeBackground.Text = "Background:"; // // clrbtnMeterEdgeHigh // this.clrbtnMeterEdgeHigh.Automatic = "Automatic"; this.clrbtnMeterEdgeHigh.Color = System.Drawing.Color.Red; this.clrbtnMeterEdgeHigh.Image = null; this.clrbtnMeterEdgeHigh.Location = new System.Drawing.Point(80, 56); this.clrbtnMeterEdgeHigh.MoreColors = "More Colors..."; this.clrbtnMeterEdgeHigh.Name = "clrbtnMeterEdgeHigh"; this.clrbtnMeterEdgeHigh.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeHigh.TabIndex = 75; this.clrbtnMeterEdgeHigh.Changed += new System.EventHandler(this.clrbtnMeterEdgeHigh_Changed); // // lblMeterEdgeHigh // this.lblMeterEdgeHigh.Image = null; this.lblMeterEdgeHigh.Location = new System.Drawing.Point(8, 56); this.lblMeterEdgeHigh.Name = "lblMeterEdgeHigh"; this.lblMeterEdgeHigh.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeHigh.TabIndex = 53; this.lblMeterEdgeHigh.Text = "High Color:"; // // lblMeterEdgeLow // this.lblMeterEdgeLow.Image = null; this.lblMeterEdgeLow.Location = new System.Drawing.Point(8, 24); this.lblMeterEdgeLow.Name = "lblMeterEdgeLow"; this.lblMeterEdgeLow.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeLow.TabIndex = 51; this.lblMeterEdgeLow.Text = "Low Color:"; // // clrbtnMeterEdgeLow // this.clrbtnMeterEdgeLow.Automatic = "Automatic"; this.clrbtnMeterEdgeLow.Color = System.Drawing.Color.White; this.clrbtnMeterEdgeLow.Image = null; this.clrbtnMeterEdgeLow.Location = new System.Drawing.Point(80, 24); this.clrbtnMeterEdgeLow.MoreColors = "More Colors..."; this.clrbtnMeterEdgeLow.Name = "clrbtnMeterEdgeLow"; this.clrbtnMeterEdgeLow.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeLow.TabIndex = 74; this.clrbtnMeterEdgeLow.Changed += new System.EventHandler(this.clrbtnMeterEdgeLow_Changed); // // grpAppearanceMeter // this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterBackground); this.grpAppearanceMeter.Controls.Add(this.lblMeterBackground); this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterRight); this.grpAppearanceMeter.Controls.Add(this.lblAppearanceMeterRight); this.grpAppearanceMeter.Controls.Add(this.lblAppearanceMeterLeft); this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterLeft); this.grpAppearanceMeter.Location = new System.Drawing.Point(168, 8); this.grpAppearanceMeter.Name = "grpAppearanceMeter"; this.grpAppearanceMeter.Size = new System.Drawing.Size(136, 120); this.grpAppearanceMeter.TabIndex = 38; this.grpAppearanceMeter.TabStop = false; this.grpAppearanceMeter.Text = "Original Style"; // // clrbtnMeterBackground // this.clrbtnMeterBackground.Automatic = "Automatic"; this.clrbtnMeterBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterBackground.Image = null; this.clrbtnMeterBackground.Location = new System.Drawing.Point(80, 88); this.clrbtnMeterBackground.MoreColors = "More Colors..."; this.clrbtnMeterBackground.Name = "clrbtnMeterBackground"; this.clrbtnMeterBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterBackground.TabIndex = 77; this.clrbtnMeterBackground.Changed += new System.EventHandler(this.clrbtnMeterBackground_Changed); // // lblMeterBackground // this.lblMeterBackground.Image = null; this.lblMeterBackground.Location = new System.Drawing.Point(8, 88); this.lblMeterBackground.Name = "lblMeterBackground"; this.lblMeterBackground.Size = new System.Drawing.Size(72, 24); this.lblMeterBackground.TabIndex = 76; this.lblMeterBackground.Text = "Background:"; // // clrbtnMeterRight // this.clrbtnMeterRight.Automatic = "Automatic"; this.clrbtnMeterRight.Color = System.Drawing.Color.Lime; this.clrbtnMeterRight.Image = null; this.clrbtnMeterRight.Location = new System.Drawing.Point(80, 56); this.clrbtnMeterRight.MoreColors = "More Colors..."; this.clrbtnMeterRight.Name = "clrbtnMeterRight"; this.clrbtnMeterRight.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterRight.TabIndex = 75; this.clrbtnMeterRight.Changed += new System.EventHandler(this.clrbtnMeterRight_Changed); // // lblAppearanceMeterRight // this.lblAppearanceMeterRight.Image = null; this.lblAppearanceMeterRight.Location = new System.Drawing.Point(8, 56); this.lblAppearanceMeterRight.Name = "lblAppearanceMeterRight"; this.lblAppearanceMeterRight.Size = new System.Drawing.Size(72, 24); this.lblAppearanceMeterRight.TabIndex = 53; this.lblAppearanceMeterRight.Text = "Right Color:"; // // lblAppearanceMeterLeft // this.lblAppearanceMeterLeft.Image = null; this.lblAppearanceMeterLeft.Location = new System.Drawing.Point(8, 24); this.lblAppearanceMeterLeft.Name = "lblAppearanceMeterLeft"; this.lblAppearanceMeterLeft.Size = new System.Drawing.Size(72, 24); this.lblAppearanceMeterLeft.TabIndex = 51; this.lblAppearanceMeterLeft.Text = "Left Color:"; // // clrbtnMeterLeft // this.clrbtnMeterLeft.Automatic = "Automatic"; this.clrbtnMeterLeft.Color = System.Drawing.Color.Green; this.clrbtnMeterLeft.Image = null; this.clrbtnMeterLeft.Location = new System.Drawing.Point(80, 24); this.clrbtnMeterLeft.MoreColors = "More Colors..."; this.clrbtnMeterLeft.Name = "clrbtnMeterLeft"; this.clrbtnMeterLeft.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterLeft.TabIndex = 74; this.clrbtnMeterLeft.Changed += new System.EventHandler(this.clrbtnMeterLeft_Changed); // // lblMeterType // this.lblMeterType.Image = null; this.lblMeterType.Location = new System.Drawing.Point(16, 19); this.lblMeterType.Name = "lblMeterType"; this.lblMeterType.Size = new System.Drawing.Size(64, 21); this.lblMeterType.TabIndex = 79; this.lblMeterType.Text = "Meter Type:"; // // tcSkins // this.tcSkins.BackColor = System.Drawing.SystemColors.Control; this.tcSkins.Controls.Add(this.grpSMeter); this.tcSkins.Controls.Add(this.grpSkin); this.tcSkins.Location = new System.Drawing.Point(4, 22); this.tcSkins.Name = "tcSkins"; this.tcSkins.Padding = new System.Windows.Forms.Padding(3); this.tcSkins.Size = new System.Drawing.Size(592, 318); this.tcSkins.TabIndex = 3; this.tcSkins.Text = "Skins"; // // grpSMeter // this.grpSMeter.Controls.Add(this.lblSMeterTXMode); this.grpSMeter.Controls.Add(this.comboSMeterTXMode); this.grpSMeter.Controls.Add(this.lblSMeterRXMode); this.grpSMeter.Controls.Add(this.comboSMeterRXMode); this.grpSMeter.Location = new System.Drawing.Point(268, 21); this.grpSMeter.Name = "grpSMeter"; this.grpSMeter.Size = new System.Drawing.Size(200, 118); this.grpSMeter.TabIndex = 80; this.grpSMeter.TabStop = false; this.grpSMeter.Text = "S meter settings"; // // lblSMeterTXMode // this.lblSMeterTXMode.Image = null; this.lblSMeterTXMode.Location = new System.Drawing.Point(25, 69); this.lblSMeterTXMode.Name = "lblSMeterTXMode"; this.lblSMeterTXMode.Size = new System.Drawing.Size(64, 21); this.lblSMeterTXMode.TabIndex = 82; this.lblSMeterTXMode.Text = "TX mode:"; // // lblSMeterRXMode // this.lblSMeterRXMode.Image = null; this.lblSMeterRXMode.Location = new System.Drawing.Point(25, 31); this.lblSMeterRXMode.Name = "lblSMeterRXMode"; this.lblSMeterRXMode.Size = new System.Drawing.Size(64, 21); this.lblSMeterRXMode.TabIndex = 80; this.lblSMeterRXMode.Text = "RX mode:"; // // grpSkin // this.grpSkin.Controls.Add(this.lblConsoleClor); this.grpSkin.Controls.Add(this.clrbtnConsoleColor); this.grpSkin.Controls.Add(this.lblMenuFont); this.grpSkin.Controls.Add(this.lblSkinTheme); this.grpSkin.Controls.Add(this.btnMainMenuFont); this.grpSkin.Controls.Add(this.lblSkinButtonColor); this.grpSkin.Controls.Add(this.clrbtnSkinButtonColor); this.grpSkin.Controls.Add(this.comboAppSkin); this.grpSkin.Location = new System.Drawing.Point(46, 21); this.grpSkin.Name = "grpSkin"; this.grpSkin.Size = new System.Drawing.Size(200, 200); this.grpSkin.TabIndex = 79; this.grpSkin.TabStop = false; this.grpSkin.Text = "Skins"; // // lblSkinTheme // this.lblSkinTheme.Image = null; this.lblSkinTheme.Location = new System.Drawing.Point(21, 33); this.lblSkinTheme.Name = "lblSkinTheme"; this.lblSkinTheme.Size = new System.Drawing.Size(43, 21); this.lblSkinTheme.TabIndex = 85; this.lblSkinTheme.Text = "Theme"; // // comboAppSkin // this.comboAppSkin.FormattingEnabled = true; this.comboAppSkin.Location = new System.Drawing.Point(70, 30); this.comboAppSkin.Name = "comboAppSkin"; this.comboAppSkin.Size = new System.Drawing.Size(104, 21); this.comboAppSkin.TabIndex = 78; this.comboAppSkin.SelectedIndexChanged += new System.EventHandler(this.comboAppSkin_SelectedIndexChanged); // // tpPowerAmplifier // this.tpPowerAmplifier.Controls.Add(this.grpPABandOffset); this.tpPowerAmplifier.Controls.Add(this.grpPAGainByBand); this.tpPowerAmplifier.Controls.Add(this.lblPACalPower); this.tpPowerAmplifier.Controls.Add(this.udPACalPower); this.tpPowerAmplifier.Location = new System.Drawing.Point(4, 22); this.tpPowerAmplifier.Name = "tpPowerAmplifier"; this.tpPowerAmplifier.Size = new System.Drawing.Size(584, 331); this.tpPowerAmplifier.TabIndex = 8; this.tpPowerAmplifier.Text = "PA Settings"; // // grpPABandOffset // this.grpPABandOffset.Controls.Add(this.labelTS66); this.grpPABandOffset.Controls.Add(this.udPAADC2190); this.grpPABandOffset.Controls.Add(this.labelTS65); this.grpPABandOffset.Controls.Add(this.udPAADC600); this.grpPABandOffset.Controls.Add(this.lblPABandOffset2); this.grpPABandOffset.Controls.Add(this.udPAADC2); this.grpPABandOffset.Controls.Add(this.lblPABandOffset6); this.grpPABandOffset.Controls.Add(this.udPAADC6); this.grpPABandOffset.Controls.Add(this.lblPABandOffset10); this.grpPABandOffset.Controls.Add(this.lblPABandOffset12); this.grpPABandOffset.Controls.Add(this.lblPABandOffset15); this.grpPABandOffset.Controls.Add(this.lblPABandOffset17); this.grpPABandOffset.Controls.Add(this.lblPABandOffset20); this.grpPABandOffset.Controls.Add(this.lblPABandOffset30); this.grpPABandOffset.Controls.Add(this.lblPABandOffset40); this.grpPABandOffset.Controls.Add(this.lblPABandOffset60); this.grpPABandOffset.Controls.Add(this.lblPABandOffset80); this.grpPABandOffset.Controls.Add(this.lblPABandOffset160); this.grpPABandOffset.Controls.Add(this.udPAADC17); this.grpPABandOffset.Controls.Add(this.udPAADC15); this.grpPABandOffset.Controls.Add(this.udPAADC20); this.grpPABandOffset.Controls.Add(this.udPAADC12); this.grpPABandOffset.Controls.Add(this.udPAADC10); this.grpPABandOffset.Controls.Add(this.udPAADC160); this.grpPABandOffset.Controls.Add(this.udPAADC80); this.grpPABandOffset.Controls.Add(this.udPAADC60); this.grpPABandOffset.Controls.Add(this.udPAADC40); this.grpPABandOffset.Controls.Add(this.udPAADC30); this.grpPABandOffset.Location = new System.Drawing.Point(344, 10); this.grpPABandOffset.Name = "grpPABandOffset"; this.grpPABandOffset.Size = new System.Drawing.Size(230, 222); this.grpPABandOffset.TabIndex = 81; this.grpPABandOffset.TabStop = false; this.grpPABandOffset.Text = "ADC Offset (ADC bits)"; // // labelTS66 // this.labelTS66.Image = null; this.labelTS66.Location = new System.Drawing.Point(24, 37); this.labelTS66.Name = "labelTS66"; this.labelTS66.Size = new System.Drawing.Size(40, 16); this.labelTS66.TabIndex = 98; this.labelTS66.Text = "2190m:"; // // udPAADC2190 // this.udPAADC2190.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC2190.Location = new System.Drawing.Point(64, 37); this.udPAADC2190.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC2190.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC2190.Name = "udPAADC2190"; this.udPAADC2190.Size = new System.Drawing.Size(48, 20); this.udPAADC2190.TabIndex = 97; this.udPAADC2190.Value = new decimal(new int[] { 60, 0, 0, 0}); // // labelTS65 // this.labelTS65.Image = null; this.labelTS65.Location = new System.Drawing.Point(24, 63); this.labelTS65.Name = "labelTS65"; this.labelTS65.Size = new System.Drawing.Size(40, 16); this.labelTS65.TabIndex = 96; this.labelTS65.Text = "600m:"; // // udPAADC600 // this.udPAADC600.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC600.Location = new System.Drawing.Point(64, 63); this.udPAADC600.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC600.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC600.Name = "udPAADC600"; this.udPAADC600.Size = new System.Drawing.Size(48, 20); this.udPAADC600.TabIndex = 95; this.udPAADC600.Value = new decimal(new int[] { 60, 0, 0, 0}); // // lblPABandOffset2 // this.lblPABandOffset2.Image = null; this.lblPABandOffset2.Location = new System.Drawing.Point(122, 185); this.lblPABandOffset2.Name = "lblPABandOffset2"; this.lblPABandOffset2.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset2.TabIndex = 94; this.lblPABandOffset2.Text = "2m:"; // // udPAADC2 // this.udPAADC2.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC2.Location = new System.Drawing.Point(162, 185); this.udPAADC2.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC2.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC2.Name = "udPAADC2"; this.udPAADC2.Size = new System.Drawing.Size(48, 20); this.udPAADC2.TabIndex = 93; this.udPAADC2.Value = new decimal(new int[] { 60, 0, 0, 0}); // // lblPABandOffset6 // this.lblPABandOffset6.Image = null; this.lblPABandOffset6.Location = new System.Drawing.Point(122, 160); this.lblPABandOffset6.Name = "lblPABandOffset6"; this.lblPABandOffset6.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset6.TabIndex = 92; this.lblPABandOffset6.Text = "6m:"; // // udPAADC6 // this.udPAADC6.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC6.Location = new System.Drawing.Point(162, 160); this.udPAADC6.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC6.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC6.Name = "udPAADC6"; this.udPAADC6.Size = new System.Drawing.Size(48, 20); this.udPAADC6.TabIndex = 91; this.udPAADC6.Value = new decimal(new int[] { 60, 0, 0, 0}); // // lblPABandOffset10 // this.lblPABandOffset10.Image = null; this.lblPABandOffset10.Location = new System.Drawing.Point(122, 137); this.lblPABandOffset10.Name = "lblPABandOffset10"; this.lblPABandOffset10.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset10.TabIndex = 90; this.lblPABandOffset10.Text = "10m:"; // // lblPABandOffset12 // this.lblPABandOffset12.Image = null; this.lblPABandOffset12.Location = new System.Drawing.Point(122, 113); this.lblPABandOffset12.Name = "lblPABandOffset12"; this.lblPABandOffset12.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset12.TabIndex = 89; this.lblPABandOffset12.Text = "12m:"; // // lblPABandOffset15 // this.lblPABandOffset15.Image = null; this.lblPABandOffset15.Location = new System.Drawing.Point(122, 89); this.lblPABandOffset15.Name = "lblPABandOffset15"; this.lblPABandOffset15.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset15.TabIndex = 88; this.lblPABandOffset15.Text = "15m:"; // // lblPABandOffset17 // this.lblPABandOffset17.Image = null; this.lblPABandOffset17.Location = new System.Drawing.Point(122, 65); this.lblPABandOffset17.Name = "lblPABandOffset17"; this.lblPABandOffset17.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset17.TabIndex = 87; this.lblPABandOffset17.Text = "17m:"; // // lblPABandOffset20 // this.lblPABandOffset20.Image = null; this.lblPABandOffset20.Location = new System.Drawing.Point(122, 39); this.lblPABandOffset20.Name = "lblPABandOffset20"; this.lblPABandOffset20.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset20.TabIndex = 86; this.lblPABandOffset20.Text = "20m:"; // // lblPABandOffset30 // this.lblPABandOffset30.Image = null; this.lblPABandOffset30.Location = new System.Drawing.Point(24, 185); this.lblPABandOffset30.Name = "lblPABandOffset30"; this.lblPABandOffset30.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset30.TabIndex = 85; this.lblPABandOffset30.Text = "30m:"; // // lblPABandOffset40 // this.lblPABandOffset40.Image = null; this.lblPABandOffset40.Location = new System.Drawing.Point(24, 161); this.lblPABandOffset40.Name = "lblPABandOffset40"; this.lblPABandOffset40.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset40.TabIndex = 84; this.lblPABandOffset40.Text = "40m:"; // // lblPABandOffset60 // this.lblPABandOffset60.Image = null; this.lblPABandOffset60.Location = new System.Drawing.Point(24, 137); this.lblPABandOffset60.Name = "lblPABandOffset60"; this.lblPABandOffset60.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset60.TabIndex = 83; this.lblPABandOffset60.Text = "60m:"; // // lblPABandOffset80 // this.lblPABandOffset80.Image = null; this.lblPABandOffset80.Location = new System.Drawing.Point(24, 113); this.lblPABandOffset80.Name = "lblPABandOffset80"; this.lblPABandOffset80.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset80.TabIndex = 82; this.lblPABandOffset80.Text = "80m:"; // // lblPABandOffset160 // this.lblPABandOffset160.Image = null; this.lblPABandOffset160.Location = new System.Drawing.Point(24, 89); this.lblPABandOffset160.Name = "lblPABandOffset160"; this.lblPABandOffset160.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset160.TabIndex = 81; this.lblPABandOffset160.Text = "160m:"; // // udPAADC17 // this.udPAADC17.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC17.Location = new System.Drawing.Point(162, 65); this.udPAADC17.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC17.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC17.Name = "udPAADC17"; this.udPAADC17.Size = new System.Drawing.Size(48, 20); this.udPAADC17.TabIndex = 77; this.udPAADC17.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC17.LostFocus += new System.EventHandler(this.udPAADC17_LostFocus); // // udPAADC15 // this.udPAADC15.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC15.Location = new System.Drawing.Point(162, 89); this.udPAADC15.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC15.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC15.Name = "udPAADC15"; this.udPAADC15.Size = new System.Drawing.Size(48, 20); this.udPAADC15.TabIndex = 78; this.udPAADC15.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC15.LostFocus += new System.EventHandler(this.udPAADC15_LostFocus); // // udPAADC20 // this.udPAADC20.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC20.Location = new System.Drawing.Point(162, 39); this.udPAADC20.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC20.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC20.Name = "udPAADC20"; this.udPAADC20.Size = new System.Drawing.Size(48, 20); this.udPAADC20.TabIndex = 76; this.udPAADC20.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC20.LostFocus += new System.EventHandler(this.udPAADC20_LostFocus); // // udPAADC12 // this.udPAADC12.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC12.Location = new System.Drawing.Point(162, 113); this.udPAADC12.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC12.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC12.Name = "udPAADC12"; this.udPAADC12.Size = new System.Drawing.Size(48, 20); this.udPAADC12.TabIndex = 79; this.udPAADC12.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC12.LostFocus += new System.EventHandler(this.udPAADC12_LostFocus); // // udPAADC10 // this.udPAADC10.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC10.Location = new System.Drawing.Point(162, 137); this.udPAADC10.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC10.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC10.Name = "udPAADC10"; this.udPAADC10.Size = new System.Drawing.Size(48, 20); this.udPAADC10.TabIndex = 80; this.udPAADC10.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC10.LostFocus += new System.EventHandler(this.udPAADC10_LostFocus); // // udPAADC160 // this.udPAADC160.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC160.Location = new System.Drawing.Point(64, 89); this.udPAADC160.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC160.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC160.Name = "udPAADC160"; this.udPAADC160.Size = new System.Drawing.Size(48, 20); this.udPAADC160.TabIndex = 71; this.udPAADC160.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC160.LostFocus += new System.EventHandler(this.udPAADC160_LostFocus); // // udPAADC80 // this.udPAADC80.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC80.Location = new System.Drawing.Point(64, 113); this.udPAADC80.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC80.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC80.Name = "udPAADC80"; this.udPAADC80.Size = new System.Drawing.Size(48, 20); this.udPAADC80.TabIndex = 72; this.udPAADC80.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC80.LostFocus += new System.EventHandler(this.udPAADC80_LostFocus); // // udPAADC60 // this.udPAADC60.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC60.Location = new System.Drawing.Point(64, 137); this.udPAADC60.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC60.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC60.Name = "udPAADC60"; this.udPAADC60.Size = new System.Drawing.Size(48, 20); this.udPAADC60.TabIndex = 73; this.udPAADC60.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC60.LostFocus += new System.EventHandler(this.udPAADC60_LostFocus); // // udPAADC40 // this.udPAADC40.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC40.Location = new System.Drawing.Point(64, 161); this.udPAADC40.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC40.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC40.Name = "udPAADC40"; this.udPAADC40.Size = new System.Drawing.Size(48, 20); this.udPAADC40.TabIndex = 74; this.udPAADC40.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC40.LostFocus += new System.EventHandler(this.udPAADC40_LostFocus); // // udPAADC30 // this.udPAADC30.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udPAADC30.Location = new System.Drawing.Point(64, 185); this.udPAADC30.Maximum = new decimal(new int[] { 255, 0, 0, 0}); this.udPAADC30.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udPAADC30.Name = "udPAADC30"; this.udPAADC30.Size = new System.Drawing.Size(48, 20); this.udPAADC30.TabIndex = 75; this.udPAADC30.Value = new decimal(new int[] { 60, 0, 0, 0}); this.udPAADC30.LostFocus += new System.EventHandler(this.udPAADC30_LostFocus); // // grpPAGainByBand // this.grpPAGainByBand.Controls.Add(this.chkPA10_2190m); this.grpPAGainByBand.Controls.Add(this.labelTS47); this.grpPAGainByBand.Controls.Add(this.udPAGain2190); this.grpPAGainByBand.Controls.Add(this.chkPA10_600m); this.grpPAGainByBand.Controls.Add(this.btnPA10Abort); this.grpPAGainByBand.Controls.Add(this.lblPA10Calibration); this.grpPAGainByBand.Controls.Add(this.labelTS46); this.grpPAGainByBand.Controls.Add(this.progressPAcalibration); this.grpPAGainByBand.Controls.Add(this.chkPA10_2m); this.grpPAGainByBand.Controls.Add(this.udPAGain600); this.grpPAGainByBand.Controls.Add(this.chkPA10_6m); this.grpPAGainByBand.Controls.Add(this.chkPA10_10m); this.grpPAGainByBand.Controls.Add(this.chkPA10_12m); this.grpPAGainByBand.Controls.Add(this.chkPA10_15m); this.grpPAGainByBand.Controls.Add(this.chkPA10_20m); this.grpPAGainByBand.Controls.Add(this.chkPA10_30m); this.grpPAGainByBand.Controls.Add(this.chkPA10_40m); this.grpPAGainByBand.Controls.Add(this.chkPA10_60m); this.grpPAGainByBand.Controls.Add(this.chkPA10_17m); this.grpPAGainByBand.Controls.Add(this.chkPA10_80m); this.grpPAGainByBand.Controls.Add(this.chkPA10_160m); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand2); this.grpPAGainByBand.Controls.Add(this.udPAGain2); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand6); this.grpPAGainByBand.Controls.Add(this.udPAGain6); this.grpPAGainByBand.Controls.Add(this.btnPAGainReset); this.grpPAGainByBand.Controls.Add(this.btnPAGainCalibration); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand10); this.grpPAGainByBand.Controls.Add(this.udPAGain10); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand12); this.grpPAGainByBand.Controls.Add(this.udPAGain12); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand15); this.grpPAGainByBand.Controls.Add(this.udPAGain15); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand17); this.grpPAGainByBand.Controls.Add(this.udPAGain17); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand20); this.grpPAGainByBand.Controls.Add(this.udPAGain20); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand30); this.grpPAGainByBand.Controls.Add(this.udPAGain30); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand40); this.grpPAGainByBand.Controls.Add(this.udPAGain40); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand60); this.grpPAGainByBand.Controls.Add(this.udPAGain60); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand80); this.grpPAGainByBand.Controls.Add(this.udPAGain80); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand160); this.grpPAGainByBand.Controls.Add(this.udPAGain160); this.grpPAGainByBand.Location = new System.Drawing.Point(10, 10); this.grpPAGainByBand.Name = "grpPAGainByBand"; this.grpPAGainByBand.Size = new System.Drawing.Size(310, 303); this.grpPAGainByBand.TabIndex = 1; this.grpPAGainByBand.TabStop = false; this.grpPAGainByBand.Text = "Gain By Band (dB)"; // // labelTS47 // this.labelTS47.Image = null; this.labelTS47.Location = new System.Drawing.Point(24, 31); this.labelTS47.Name = "labelTS47"; this.labelTS47.Size = new System.Drawing.Size(40, 16); this.labelTS47.TabIndex = 45; this.labelTS47.Text = "2190m:"; // // udPAGain2190 // this.udPAGain2190.DecimalPlaces = 1; this.udPAGain2190.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain2190.Location = new System.Drawing.Point(97, 26); this.udPAGain2190.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain2190.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain2190.Name = "udPAGain2190"; this.udPAGain2190.Size = new System.Drawing.Size(48, 20); this.udPAGain2190.TabIndex = 44; this.udPAGain2190.Value = new decimal(new int[] { 430, 0, 0, 65536}); this.udPAGain2190.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPA10Calibration // this.lblPA10Calibration.AutoSize = true; this.lblPA10Calibration.Image = null; this.lblPA10Calibration.Location = new System.Drawing.Point(107, 209); this.lblPA10Calibration.Name = "lblPA10Calibration"; this.lblPA10Calibration.Size = new System.Drawing.Size(99, 13); this.lblPA10Calibration.TabIndex = 39; this.lblPA10Calibration.Text = "Calibration progress"; // // labelTS46 // this.labelTS46.Image = null; this.labelTS46.Location = new System.Drawing.Point(24, 53); this.labelTS46.Name = "labelTS46"; this.labelTS46.Size = new System.Drawing.Size(40, 16); this.labelTS46.TabIndex = 42; this.labelTS46.Text = "600m:"; // // progressPAcalibration // this.progressPAcalibration.Location = new System.Drawing.Point(42, 232); this.progressPAcalibration.Name = "progressPAcalibration"; this.progressPAcalibration.Size = new System.Drawing.Size(234, 23); this.progressPAcalibration.Step = 1; this.progressPAcalibration.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressPAcalibration.TabIndex = 38; // // udPAGain600 // this.udPAGain600.DecimalPlaces = 1; this.udPAGain600.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain600.Location = new System.Drawing.Point(97, 50); this.udPAGain600.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain600.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain600.Name = "udPAGain600"; this.udPAGain600.Size = new System.Drawing.Size(48, 20); this.udPAGain600.TabIndex = 41; this.udPAGain600.Value = new decimal(new int[] { 430, 0, 0, 65536}); this.udPAGain600.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand2 // this.lblPAGainByBand2.Image = null; this.lblPAGainByBand2.Location = new System.Drawing.Point(167, 172); this.lblPAGainByBand2.Name = "lblPAGainByBand2"; this.lblPAGainByBand2.Size = new System.Drawing.Size(26, 11); this.lblPAGainByBand2.TabIndex = 25; this.lblPAGainByBand2.Text = "2m:"; // // udPAGain2 // this.udPAGain2.DecimalPlaces = 1; this.udPAGain2.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain2.Location = new System.Drawing.Point(240, 170); this.udPAGain2.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain2.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain2.Name = "udPAGain2"; this.udPAGain2.Size = new System.Drawing.Size(48, 20); this.udPAGain2.TabIndex = 24; this.udPAGain2.Value = new decimal(new int[] { 430, 0, 0, 65536}); this.udPAGain2.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand6 // this.lblPAGainByBand6.Image = null; this.lblPAGainByBand6.Location = new System.Drawing.Point(167, 148); this.lblPAGainByBand6.Name = "lblPAGainByBand6"; this.lblPAGainByBand6.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand6.TabIndex = 23; this.lblPAGainByBand6.Text = "6m:"; // // udPAGain6 // this.udPAGain6.DecimalPlaces = 1; this.udPAGain6.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain6.Location = new System.Drawing.Point(240, 146); this.udPAGain6.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain6.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain6.Name = "udPAGain6"; this.udPAGain6.Size = new System.Drawing.Size(48, 20); this.udPAGain6.TabIndex = 22; this.udPAGain6.Value = new decimal(new int[] { 430, 0, 0, 65536}); this.udPAGain6.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand10 // this.lblPAGainByBand10.Image = null; this.lblPAGainByBand10.Location = new System.Drawing.Point(167, 125); this.lblPAGainByBand10.Name = "lblPAGainByBand10"; this.lblPAGainByBand10.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand10.TabIndex = 19; this.lblPAGainByBand10.Text = "10m:"; // // udPAGain10 // this.udPAGain10.DecimalPlaces = 1; this.udPAGain10.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain10.Location = new System.Drawing.Point(240, 122); this.udPAGain10.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain10.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain10.Name = "udPAGain10"; this.udPAGain10.Size = new System.Drawing.Size(48, 20); this.udPAGain10.TabIndex = 18; this.udPAGain10.Value = new decimal(new int[] { 430, 0, 0, 65536}); this.udPAGain10.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain10.LostFocus += new System.EventHandler(this.udPAGain10_LostFocus); // // lblPAGainByBand12 // this.lblPAGainByBand12.Image = null; this.lblPAGainByBand12.Location = new System.Drawing.Point(167, 101); this.lblPAGainByBand12.Name = "lblPAGainByBand12"; this.lblPAGainByBand12.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand12.TabIndex = 17; this.lblPAGainByBand12.Text = "12m:"; // // udPAGain12 // this.udPAGain12.DecimalPlaces = 1; this.udPAGain12.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain12.Location = new System.Drawing.Point(240, 98); this.udPAGain12.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain12.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain12.Name = "udPAGain12"; this.udPAGain12.Size = new System.Drawing.Size(48, 20); this.udPAGain12.TabIndex = 16; this.udPAGain12.Value = new decimal(new int[] { 474, 0, 0, 65536}); this.udPAGain12.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain12.LostFocus += new System.EventHandler(this.udPAGain12_LostFocus); // // lblPAGainByBand15 // this.lblPAGainByBand15.Image = null; this.lblPAGainByBand15.Location = new System.Drawing.Point(167, 77); this.lblPAGainByBand15.Name = "lblPAGainByBand15"; this.lblPAGainByBand15.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand15.TabIndex = 15; this.lblPAGainByBand15.Text = "15m:"; // // udPAGain15 // this.udPAGain15.DecimalPlaces = 1; this.udPAGain15.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain15.Location = new System.Drawing.Point(240, 74); this.udPAGain15.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain15.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain15.Name = "udPAGain15"; this.udPAGain15.Size = new System.Drawing.Size(48, 20); this.udPAGain15.TabIndex = 14; this.udPAGain15.Value = new decimal(new int[] { 481, 0, 0, 65536}); this.udPAGain15.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain15.LostFocus += new System.EventHandler(this.udPAGain15_LostFocus); // // lblPAGainByBand17 // this.lblPAGainByBand17.Image = null; this.lblPAGainByBand17.Location = new System.Drawing.Point(167, 53); this.lblPAGainByBand17.Name = "lblPAGainByBand17"; this.lblPAGainByBand17.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand17.TabIndex = 13; this.lblPAGainByBand17.Text = "17m:"; // // udPAGain17 // this.udPAGain17.DecimalPlaces = 1; this.udPAGain17.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain17.Location = new System.Drawing.Point(240, 50); this.udPAGain17.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain17.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain17.Name = "udPAGain17"; this.udPAGain17.Size = new System.Drawing.Size(48, 20); this.udPAGain17.TabIndex = 12; this.udPAGain17.Value = new decimal(new int[] { 493, 0, 0, 65536}); this.udPAGain17.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain17.LostFocus += new System.EventHandler(this.udPAGain17_LostFocus); // // lblPAGainByBand20 // this.lblPAGainByBand20.Image = null; this.lblPAGainByBand20.Location = new System.Drawing.Point(169, 29); this.lblPAGainByBand20.Name = "lblPAGainByBand20"; this.lblPAGainByBand20.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand20.TabIndex = 11; this.lblPAGainByBand20.Text = "20m:"; // // udPAGain20 // this.udPAGain20.DecimalPlaces = 1; this.udPAGain20.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain20.Location = new System.Drawing.Point(240, 26); this.udPAGain20.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain20.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain20.Name = "udPAGain20"; this.udPAGain20.Size = new System.Drawing.Size(48, 20); this.udPAGain20.TabIndex = 10; this.udPAGain20.Value = new decimal(new int[] { 483, 0, 0, 65536}); this.udPAGain20.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain20.LostFocus += new System.EventHandler(this.udPAGain20_LostFocus); // // lblPAGainByBand30 // this.lblPAGainByBand30.Image = null; this.lblPAGainByBand30.Location = new System.Drawing.Point(24, 173); this.lblPAGainByBand30.Name = "lblPAGainByBand30"; this.lblPAGainByBand30.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand30.TabIndex = 9; this.lblPAGainByBand30.Text = "30m:"; // // udPAGain30 // this.udPAGain30.DecimalPlaces = 1; this.udPAGain30.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain30.Location = new System.Drawing.Point(97, 170); this.udPAGain30.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain30.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain30.Name = "udPAGain30"; this.udPAGain30.Size = new System.Drawing.Size(48, 20); this.udPAGain30.TabIndex = 8; this.udPAGain30.Value = new decimal(new int[] { 489, 0, 0, 65536}); this.udPAGain30.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain30.LostFocus += new System.EventHandler(this.udPAGain30_LostFocus); // // lblPAGainByBand40 // this.lblPAGainByBand40.Image = null; this.lblPAGainByBand40.Location = new System.Drawing.Point(24, 149); this.lblPAGainByBand40.Name = "lblPAGainByBand40"; this.lblPAGainByBand40.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand40.TabIndex = 7; this.lblPAGainByBand40.Text = "40m:"; // // udPAGain40 // this.udPAGain40.DecimalPlaces = 1; this.udPAGain40.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain40.Location = new System.Drawing.Point(97, 146); this.udPAGain40.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain40.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain40.Name = "udPAGain40"; this.udPAGain40.Size = new System.Drawing.Size(48, 20); this.udPAGain40.TabIndex = 6; this.udPAGain40.Value = new decimal(new int[] { 469, 0, 0, 65536}); this.udPAGain40.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain40.LostFocus += new System.EventHandler(this.udPAGain40_LostFocus); // // lblPAGainByBand60 // this.lblPAGainByBand60.Image = null; this.lblPAGainByBand60.Location = new System.Drawing.Point(24, 125); this.lblPAGainByBand60.Name = "lblPAGainByBand60"; this.lblPAGainByBand60.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand60.TabIndex = 5; this.lblPAGainByBand60.Text = "60m:"; // // udPAGain60 // this.udPAGain60.DecimalPlaces = 1; this.udPAGain60.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain60.Location = new System.Drawing.Point(97, 122); this.udPAGain60.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain60.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain60.Name = "udPAGain60"; this.udPAGain60.Size = new System.Drawing.Size(48, 20); this.udPAGain60.TabIndex = 4; this.udPAGain60.Value = new decimal(new int[] { 474, 0, 0, 65536}); this.udPAGain60.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain60.LostFocus += new System.EventHandler(this.udPAGain60_LostFocus); // // lblPAGainByBand80 // this.lblPAGainByBand80.Image = null; this.lblPAGainByBand80.Location = new System.Drawing.Point(24, 100); this.lblPAGainByBand80.Name = "lblPAGainByBand80"; this.lblPAGainByBand80.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand80.TabIndex = 3; this.lblPAGainByBand80.Text = "80m:"; // // udPAGain80 // this.udPAGain80.DecimalPlaces = 1; this.udPAGain80.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain80.Location = new System.Drawing.Point(97, 98); this.udPAGain80.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain80.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain80.Name = "udPAGain80"; this.udPAGain80.Size = new System.Drawing.Size(48, 20); this.udPAGain80.TabIndex = 2; this.udPAGain80.Value = new decimal(new int[] { 480, 0, 0, 65536}); this.udPAGain80.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain80.LostFocus += new System.EventHandler(this.udPAGain80_LostFocus); // // lblPAGainByBand160 // this.lblPAGainByBand160.Image = null; this.lblPAGainByBand160.Location = new System.Drawing.Point(24, 78); this.lblPAGainByBand160.Name = "lblPAGainByBand160"; this.lblPAGainByBand160.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand160.TabIndex = 1; this.lblPAGainByBand160.Text = "160m:"; // // udPAGain160 // this.udPAGain160.DecimalPlaces = 1; this.udPAGain160.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain160.Location = new System.Drawing.Point(97, 74); this.udPAGain160.Maximum = new decimal(new int[] { 60, 0, 0, 0}); this.udPAGain160.Minimum = new decimal(new int[] { 30, 0, 0, 0}); this.udPAGain160.Name = "udPAGain160"; this.udPAGain160.Size = new System.Drawing.Size(48, 20); this.udPAGain160.TabIndex = 0; this.udPAGain160.Value = new decimal(new int[] { 490, 0, 0, 65536}); this.udPAGain160.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); this.udPAGain160.LostFocus += new System.EventHandler(this.udPAGain160_LostFocus); // // lblPACalPower // this.lblPACalPower.Image = null; this.lblPACalPower.Location = new System.Drawing.Point(392, 254); this.lblPACalPower.Name = "lblPACalPower"; this.lblPACalPower.Size = new System.Drawing.Size(64, 32); this.lblPACalPower.TabIndex = 23; this.lblPACalPower.Text = "Target Power (%):"; // // tpTransmit // this.tpTransmit.Controls.Add(this.groupBoxTS12); this.tpTransmit.Controls.Add(this.grpGenesis); this.tpTransmit.Controls.Add(this.grpTXAM); this.tpTransmit.Controls.Add(this.grpTXMonitor); this.tpTransmit.Controls.Add(this.grpTXVOX); this.tpTransmit.Controls.Add(this.grpTXNoiseGate); this.tpTransmit.Controls.Add(this.grpTXProfile); this.tpTransmit.Controls.Add(this.grpPATune); this.tpTransmit.Controls.Add(this.grpTXCompression); this.tpTransmit.Controls.Add(this.grpTXFilter); this.tpTransmit.Controls.Add(this.chkDCBlock); this.tpTransmit.Location = new System.Drawing.Point(4, 22); this.tpTransmit.Name = "tpTransmit"; this.tpTransmit.Size = new System.Drawing.Size(584, 331); this.tpTransmit.TabIndex = 5; this.tpTransmit.Text = "Transmit"; // // groupBoxTS12 // this.groupBoxTS12.Controls.Add(this.labelTS60); this.groupBoxTS12.Controls.Add(this.udTXFMDeviation); this.groupBoxTS12.Location = new System.Drawing.Point(152, 182); this.groupBoxTS12.Name = "groupBoxTS12"; this.groupBoxTS12.Size = new System.Drawing.Size(144, 62); this.groupBoxTS12.TabIndex = 54; this.groupBoxTS12.TabStop = false; this.groupBoxTS12.Text = "FM"; // // labelTS60 // this.labelTS60.Image = null; this.labelTS60.Location = new System.Drawing.Point(8, 25); this.labelTS60.Name = "labelTS60"; this.labelTS60.Size = new System.Drawing.Size(72, 16); this.labelTS60.TabIndex = 7; this.labelTS60.Text = "FM deviation:"; // // udTXFMDeviation // this.udTXFMDeviation.Increment = new decimal(new int[] { 100, 0, 0, 0}); this.udTXFMDeviation.Location = new System.Drawing.Point(80, 25); this.udTXFMDeviation.Maximum = new decimal(new int[] { 20000, 0, 0, 0}); this.udTXFMDeviation.Minimum = new decimal(new int[] { 100, 0, 0, 0}); this.udTXFMDeviation.Name = "udTXFMDeviation"; this.udTXFMDeviation.Size = new System.Drawing.Size(56, 20); this.udTXFMDeviation.TabIndex = 6; this.udTXFMDeviation.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udTXFMDeviation.Value = new decimal(new int[] { 6000, 0, 0, 0}); this.udTXFMDeviation.ValueChanged += new System.EventHandler(this.udTXFMDeviation_ValueChanged); // // grpGenesis // this.grpGenesis.Controls.Add(this.udG59TXSwitchTime); this.grpGenesis.Controls.Add(this.lblG59TXSwitchTime); this.grpGenesis.Controls.Add(this.chkTX_IF_shift); this.grpGenesis.Controls.Add(this.udtTX_IF_SHIFT); this.grpGenesis.Controls.Add(this.lbxTX_IF_shift); this.grpGenesis.Location = new System.Drawing.Point(368, 198); this.grpGenesis.Name = "grpGenesis"; this.grpGenesis.Size = new System.Drawing.Size(192, 106); this.grpGenesis.TabIndex = 53; this.grpGenesis.TabStop = false; this.grpGenesis.Text = "Genesis option"; // // lblG59TXSwitchTime // this.lblG59TXSwitchTime.AutoSize = true; this.lblG59TXSwitchTime.Location = new System.Drawing.Point(28, 28); this.lblG59TXSwitchTime.Name = "lblG59TXSwitchTime"; this.lblG59TXSwitchTime.Size = new System.Drawing.Size(76, 13); this.lblG59TXSwitchTime.TabIndex = 5; this.lblG59TXSwitchTime.Text = "TX switch time"; // // grpTXAM // this.grpTXAM.Controls.Add(this.lblTXAMCarrierLevel); this.grpTXAM.Controls.Add(this.udTXAMCarrierLevel); this.grpTXAM.Location = new System.Drawing.Point(152, 248); this.grpTXAM.Name = "grpTXAM"; this.grpTXAM.Size = new System.Drawing.Size(144, 56); this.grpTXAM.TabIndex = 52; this.grpTXAM.TabStop = false; this.grpTXAM.Text = "AM"; // // lblTXAMCarrierLevel // this.lblTXAMCarrierLevel.Image = null; this.lblTXAMCarrierLevel.Location = new System.Drawing.Point(8, 24); this.lblTXAMCarrierLevel.Name = "lblTXAMCarrierLevel"; this.lblTXAMCarrierLevel.Size = new System.Drawing.Size(72, 16); this.lblTXAMCarrierLevel.TabIndex = 5; this.lblTXAMCarrierLevel.Text = "Carrier Level:"; // // grpTXMonitor // this.grpTXMonitor.Controls.Add(this.lblTXAF); this.grpTXMonitor.Controls.Add(this.udTXAF); this.grpTXMonitor.Location = new System.Drawing.Point(8, 181); this.grpTXMonitor.Name = "grpTXMonitor"; this.grpTXMonitor.Size = new System.Drawing.Size(138, 50); this.grpTXMonitor.TabIndex = 51; this.grpTXMonitor.TabStop = false; this.grpTXMonitor.Text = "Monitor"; // // lblTXAF // this.lblTXAF.Image = null; this.lblTXAF.Location = new System.Drawing.Point(8, 19); this.lblTXAF.Name = "lblTXAF"; this.lblTXAF.Size = new System.Drawing.Size(40, 16); this.lblTXAF.TabIndex = 5; this.lblTXAF.Text = "TX AF:"; // // grpTXVOX // this.grpTXVOX.Controls.Add(this.lblTXVOXHangTime); this.grpTXVOX.Controls.Add(this.udTXVOXHangTime); this.grpTXVOX.Controls.Add(this.chkTXVOXEnabled); this.grpTXVOX.Controls.Add(this.lblTXVOXThreshold); this.grpTXVOX.Controls.Add(this.udTXVOXThreshold); this.grpTXVOX.Location = new System.Drawing.Point(8, 231); this.grpTXVOX.Name = "grpTXVOX"; this.grpTXVOX.Size = new System.Drawing.Size(136, 86); this.grpTXVOX.TabIndex = 50; this.grpTXVOX.TabStop = false; this.grpTXVOX.Text = "VOX"; // // lblTXVOXHangTime // this.lblTXVOXHangTime.Image = null; this.lblTXVOXHangTime.Location = new System.Drawing.Point(8, 62); this.lblTXVOXHangTime.Name = "lblTXVOXHangTime"; this.lblTXVOXHangTime.Size = new System.Drawing.Size(64, 16); this.lblTXVOXHangTime.TabIndex = 52; this.lblTXVOXHangTime.Text = "Delay (ms):"; // // lblTXVOXThreshold // this.lblTXVOXThreshold.Image = null; this.lblTXVOXThreshold.Location = new System.Drawing.Point(8, 39); this.lblTXVOXThreshold.Name = "lblTXVOXThreshold"; this.lblTXVOXThreshold.Size = new System.Drawing.Size(64, 16); this.lblTXVOXThreshold.TabIndex = 5; this.lblTXVOXThreshold.Text = "Sensitivity:"; // // grpTXNoiseGate // this.grpTXNoiseGate.Controls.Add(this.chkTXNoiseGateEnabled); this.grpTXNoiseGate.Controls.Add(this.udTXNoiseGate); this.grpTXNoiseGate.Controls.Add(this.lblTXNoiseGateThreshold); this.grpTXNoiseGate.Location = new System.Drawing.Point(152, 96); this.grpTXNoiseGate.Name = "grpTXNoiseGate"; this.grpTXNoiseGate.Size = new System.Drawing.Size(144, 80); this.grpTXNoiseGate.TabIndex = 49; this.grpTXNoiseGate.TabStop = false; this.grpTXNoiseGate.Text = "Noise Gate"; // // lblTXNoiseGateThreshold // this.lblTXNoiseGateThreshold.Image = null; this.lblTXNoiseGateThreshold.Location = new System.Drawing.Point(8, 48); this.lblTXNoiseGateThreshold.Name = "lblTXNoiseGateThreshold"; this.lblTXNoiseGateThreshold.Size = new System.Drawing.Size(82, 23); this.lblTXNoiseGateThreshold.TabIndex = 5; this.lblTXNoiseGateThreshold.Text = "Threshold (dB):"; // // grpTXProfile // this.grpTXProfile.Controls.Add(this.btnTXProfileRestore); this.grpTXProfile.Controls.Add(this.btnTXProfileDelete); this.grpTXProfile.Controls.Add(this.btnTXProfileSave); this.grpTXProfile.Controls.Add(this.comboTXProfileName); this.grpTXProfile.Location = new System.Drawing.Point(8, 8); this.grpTXProfile.Name = "grpTXProfile"; this.grpTXProfile.Size = new System.Drawing.Size(136, 103); this.grpTXProfile.TabIndex = 23; this.grpTXProfile.TabStop = false; this.grpTXProfile.Text = "Profiles"; // // grpPATune // this.grpPATune.Controls.Add(this.chkLockTUN); this.grpPATune.Controls.Add(this.lblTransmitTunePower); this.grpPATune.Controls.Add(this.udTXTunePower); this.grpPATune.Location = new System.Drawing.Point(8, 111); this.grpPATune.Name = "grpPATune"; this.grpPATune.Size = new System.Drawing.Size(136, 70); this.grpPATune.TabIndex = 22; this.grpPATune.TabStop = false; this.grpPATune.Text = "Tune"; // // lblTransmitTunePower // this.lblTransmitTunePower.Image = null; this.lblTransmitTunePower.Location = new System.Drawing.Point(8, 18); this.lblTransmitTunePower.Name = "lblTransmitTunePower"; this.lblTransmitTunePower.Size = new System.Drawing.Size(64, 16); this.lblTransmitTunePower.TabIndex = 5; this.lblTransmitTunePower.Text = "Power (%):"; // // grpTXCompression // this.grpTXCompression.Controls.Add(this.lblCompand); this.grpTXCompression.Controls.Add(this.tbTXCompander); this.grpTXCompression.Controls.Add(this.udTXCompander); this.grpTXCompression.Controls.Add(this.lblTXCompander); this.grpTXCompression.Controls.Add(this.udTXFFCompression); this.grpTXCompression.Controls.Add(this.lblTXFFVal); this.grpTXCompression.Controls.Add(this.lblTransmitFeedForward); this.grpTXCompression.Controls.Add(this.tbTXFFCompression); this.grpTXCompression.Location = new System.Drawing.Point(368, 8); this.grpTXCompression.Name = "grpTXCompression"; this.grpTXCompression.Size = new System.Drawing.Size(192, 184); this.grpTXCompression.TabIndex = 21; this.grpTXCompression.TabStop = false; this.grpTXCompression.Text = "Transmit Compression"; // // lblCompand // this.lblCompand.Image = null; this.lblCompand.Location = new System.Drawing.Point(25, 160); this.lblCompand.Name = "lblCompand"; this.lblCompand.Size = new System.Drawing.Size(152, 16); this.lblCompand.TabIndex = 35; this.lblCompand.Text = " 0 5 10"; // // lblTXCompander // this.lblTXCompander.Image = null; this.lblTXCompander.Location = new System.Drawing.Point(16, 104); this.lblTXCompander.Name = "lblTXCompander"; this.lblTXCompander.Size = new System.Drawing.Size(72, 23); this.lblTXCompander.TabIndex = 32; this.lblTXCompander.Text = "Compand"; // // lblTXFFVal // this.lblTXFFVal.Image = null; this.lblTXFFVal.Location = new System.Drawing.Point(32, 80); this.lblTXFFVal.Name = "lblTXFFVal"; this.lblTXFFVal.Size = new System.Drawing.Size(152, 16); this.lblTXFFVal.TabIndex = 29; this.lblTXFFVal.Text = "0dB 10dB 20dB"; // // lblTransmitFeedForward // this.lblTransmitFeedForward.Image = null; this.lblTransmitFeedForward.Location = new System.Drawing.Point(16, 24); this.lblTransmitFeedForward.Name = "lblTransmitFeedForward"; this.lblTransmitFeedForward.Size = new System.Drawing.Size(72, 23); this.lblTransmitFeedForward.TabIndex = 23; this.lblTransmitFeedForward.Text = "FeedForward"; // // grpTXFilter // this.grpTXFilter.Controls.Add(this.lblTXFilterHigh); this.grpTXFilter.Controls.Add(this.udTXFilterLow); this.grpTXFilter.Controls.Add(this.lblTXFilterLow); this.grpTXFilter.Controls.Add(this.udTXFilterHigh); this.grpTXFilter.Location = new System.Drawing.Point(152, 8); this.grpTXFilter.Name = "grpTXFilter"; this.grpTXFilter.Size = new System.Drawing.Size(128, 80); this.grpTXFilter.TabIndex = 19; this.grpTXFilter.TabStop = false; this.grpTXFilter.Text = "Transmit Filter"; // // lblTXFilterHigh // this.lblTXFilterHigh.Image = null; this.lblTXFilterHigh.Location = new System.Drawing.Point(16, 24); this.lblTXFilterHigh.Name = "lblTXFilterHigh"; this.lblTXFilterHigh.Size = new System.Drawing.Size(40, 23); this.lblTXFilterHigh.TabIndex = 3; this.lblTXFilterHigh.Text = "High:"; // // lblTXFilterLow // this.lblTXFilterLow.Image = null; this.lblTXFilterLow.Location = new System.Drawing.Point(16, 48); this.lblTXFilterLow.Name = "lblTXFilterLow"; this.lblTXFilterLow.Size = new System.Drawing.Size(40, 23); this.lblTXFilterLow.TabIndex = 1; this.lblTXFilterLow.Text = "Low:"; // // tpDSP // this.tpDSP.Controls.Add(this.tcDSP); this.tpDSP.Location = new System.Drawing.Point(4, 22); this.tpDSP.Name = "tpDSP"; this.tpDSP.Size = new System.Drawing.Size(584, 331); this.tpDSP.TabIndex = 1; this.tpDSP.Text = "DSP"; // // tcDSP // this.tcDSP.Controls.Add(this.tpDSPOptions); this.tcDSP.Controls.Add(this.tpDSPImageReject); this.tcDSP.Controls.Add(this.tpDSPKeyer); this.tcDSP.Controls.Add(this.tpDSPAGCALC); this.tcDSP.Location = new System.Drawing.Point(0, 0); this.tcDSP.Name = "tcDSP"; this.tcDSP.SelectedIndex = 0; this.tcDSP.Size = new System.Drawing.Size(600, 344); this.tcDSP.TabIndex = 0; // // tpDSPOptions // this.tpDSPOptions.Controls.Add(this.grpDSPBufferSize); this.tpDSPOptions.Controls.Add(this.grpDSPNB); this.tpDSPOptions.Controls.Add(this.grpDSPLMSNR); this.tpDSPOptions.Controls.Add(this.grpDSPLMSANF); this.tpDSPOptions.Controls.Add(this.grpDSPWindow); this.tpDSPOptions.Controls.Add(this.grpDSPNB2); this.tpDSPOptions.Location = new System.Drawing.Point(4, 22); this.tpDSPOptions.Name = "tpDSPOptions"; this.tpDSPOptions.Size = new System.Drawing.Size(592, 318); this.tpDSPOptions.TabIndex = 2; this.tpDSPOptions.Text = "Options"; // // grpDSPBufferSize // this.grpDSPBufferSize.Controls.Add(this.labelTS15); this.grpDSPBufferSize.Controls.Add(this.labelTS14); this.grpDSPBufferSize.Controls.Add(this.labelTS13); this.grpDSPBufferSize.Controls.Add(this.comboDSPBufSizeDigital); this.grpDSPBufferSize.Controls.Add(this.comboDSPBufSizeCW); this.grpDSPBufferSize.Controls.Add(this.comboDSPBufSizePhone); this.grpDSPBufferSize.Location = new System.Drawing.Point(256, 8); this.grpDSPBufferSize.Name = "grpDSPBufferSize"; this.grpDSPBufferSize.Size = new System.Drawing.Size(151, 144); this.grpDSPBufferSize.TabIndex = 37; this.grpDSPBufferSize.TabStop = false; this.grpDSPBufferSize.Text = "Buffer Size"; // // labelTS15 // this.labelTS15.AutoSize = true; this.labelTS15.Image = null; this.labelTS15.Location = new System.Drawing.Point(13, 102); this.labelTS15.Name = "labelTS15"; this.labelTS15.Size = new System.Drawing.Size(28, 13); this.labelTS15.TabIndex = 22; this.labelTS15.Text = "CW:"; // // labelTS14 // this.labelTS14.AutoSize = true; this.labelTS14.Image = null; this.labelTS14.Location = new System.Drawing.Point(13, 66); this.labelTS14.Name = "labelTS14"; this.labelTS14.Size = new System.Drawing.Size(39, 13); this.labelTS14.TabIndex = 21; this.labelTS14.Text = "Digital:"; // // labelTS13 // this.labelTS13.AutoSize = true; this.labelTS13.Image = null; this.labelTS13.Location = new System.Drawing.Point(13, 30); this.labelTS13.Name = "labelTS13"; this.labelTS13.Size = new System.Drawing.Size(41, 13); this.labelTS13.TabIndex = 20; this.labelTS13.Text = "Phone:"; // // grpDSPNB // this.grpDSPNB.Controls.Add(this.udDSPNB); this.grpDSPNB.Controls.Add(this.lblDSPNBThreshold); this.grpDSPNB.Location = new System.Drawing.Point(432, 8); this.grpDSPNB.Name = "grpDSPNB"; this.grpDSPNB.Size = new System.Drawing.Size(120, 56); this.grpDSPNB.TabIndex = 35; this.grpDSPNB.TabStop = false; this.grpDSPNB.Text = "Noise Blanker"; // // lblDSPNBThreshold // this.lblDSPNBThreshold.Image = null; this.lblDSPNBThreshold.Location = new System.Drawing.Point(8, 24); this.lblDSPNBThreshold.Name = "lblDSPNBThreshold"; this.lblDSPNBThreshold.Size = new System.Drawing.Size(64, 16); this.lblDSPNBThreshold.TabIndex = 9; this.lblDSPNBThreshold.Text = "Threshold:"; // // grpDSPLMSNR // this.grpDSPLMSNR.Controls.Add(this.lblLMSNRleak); this.grpDSPLMSNR.Controls.Add(this.udLMSNRleak); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRgain); this.grpDSPLMSNR.Controls.Add(this.udLMSNRgain); this.grpDSPLMSNR.Controls.Add(this.udLMSNRdelay); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRdelay); this.grpDSPLMSNR.Controls.Add(this.udLMSNRtaps); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRtaps); this.grpDSPLMSNR.Location = new System.Drawing.Point(8, 8); this.grpDSPLMSNR.Name = "grpDSPLMSNR"; this.grpDSPLMSNR.Size = new System.Drawing.Size(112, 144); this.grpDSPLMSNR.TabIndex = 33; this.grpDSPLMSNR.TabStop = false; this.grpDSPLMSNR.Text = "NR"; // // lblLMSNRleak // this.lblLMSNRleak.Image = null; this.lblLMSNRleak.Location = new System.Drawing.Point(10, 101); this.lblLMSNRleak.Name = "lblLMSNRleak"; this.lblLMSNRleak.Size = new System.Drawing.Size(40, 16); this.lblLMSNRleak.TabIndex = 11; this.lblLMSNRleak.Text = "Leak:"; // // lblLMSNRgain // this.lblLMSNRgain.Image = null; this.lblLMSNRgain.Location = new System.Drawing.Point(8, 75); this.lblLMSNRgain.Name = "lblLMSNRgain"; this.lblLMSNRgain.Size = new System.Drawing.Size(40, 16); this.lblLMSNRgain.TabIndex = 9; this.lblLMSNRgain.Text = "Gain:"; // // lblLMSNRdelay // this.lblLMSNRdelay.Image = null; this.lblLMSNRdelay.Location = new System.Drawing.Point(8, 50); this.lblLMSNRdelay.Name = "lblLMSNRdelay"; this.lblLMSNRdelay.Size = new System.Drawing.Size(40, 16); this.lblLMSNRdelay.TabIndex = 5; this.lblLMSNRdelay.Text = "Delay:"; // // lblLMSNRtaps // this.lblLMSNRtaps.Image = null; this.lblLMSNRtaps.Location = new System.Drawing.Point(8, 24); this.lblLMSNRtaps.Name = "lblLMSNRtaps"; this.lblLMSNRtaps.Size = new System.Drawing.Size(40, 16); this.lblLMSNRtaps.TabIndex = 3; this.lblLMSNRtaps.Text = "Taps:"; // // grpDSPLMSANF // this.grpDSPLMSANF.Controls.Add(this.lblLMSANFLeak); this.grpDSPLMSANF.Controls.Add(this.udLMSANFleak); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFgain); this.grpDSPLMSANF.Controls.Add(this.udLMSANFgain); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFdelay); this.grpDSPLMSANF.Controls.Add(this.udLMSANFdelay); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFTaps); this.grpDSPLMSANF.Controls.Add(this.udLMSANFtaps); this.grpDSPLMSANF.Location = new System.Drawing.Point(128, 8); this.grpDSPLMSANF.Name = "grpDSPLMSANF"; this.grpDSPLMSANF.Size = new System.Drawing.Size(120, 144); this.grpDSPLMSANF.TabIndex = 32; this.grpDSPLMSANF.TabStop = false; this.grpDSPLMSANF.Text = "ANF"; // // lblLMSANFLeak // this.lblLMSANFLeak.Image = null; this.lblLMSANFLeak.Location = new System.Drawing.Point(8, 101); this.lblLMSANFLeak.Name = "lblLMSANFLeak"; this.lblLMSANFLeak.Size = new System.Drawing.Size(40, 16); this.lblLMSANFLeak.TabIndex = 12; this.lblLMSANFLeak.Text = "Leak:"; // // lblLMSANFgain // this.lblLMSANFgain.Image = null; this.lblLMSANFgain.Location = new System.Drawing.Point(8, 75); this.lblLMSANFgain.Name = "lblLMSANFgain"; this.lblLMSANFgain.Size = new System.Drawing.Size(40, 16); this.lblLMSANFgain.TabIndex = 6; this.lblLMSANFgain.Text = "Gain:"; // // lblLMSANFdelay // this.lblLMSANFdelay.Image = null; this.lblLMSANFdelay.Location = new System.Drawing.Point(8, 50); this.lblLMSANFdelay.Name = "lblLMSANFdelay"; this.lblLMSANFdelay.Size = new System.Drawing.Size(40, 16); this.lblLMSANFdelay.TabIndex = 4; this.lblLMSANFdelay.Text = "Delay:"; // // lblLMSANFTaps // this.lblLMSANFTaps.Image = null; this.lblLMSANFTaps.Location = new System.Drawing.Point(8, 24); this.lblLMSANFTaps.Name = "lblLMSANFTaps"; this.lblLMSANFTaps.Size = new System.Drawing.Size(40, 16); this.lblLMSANFTaps.TabIndex = 2; this.lblLMSANFTaps.Text = "Taps:"; // // grpDSPWindow // this.grpDSPWindow.Controls.Add(this.comboDSPWindow); this.grpDSPWindow.Location = new System.Drawing.Point(432, 182); this.grpDSPWindow.Name = "grpDSPWindow"; this.grpDSPWindow.Size = new System.Drawing.Size(120, 56); this.grpDSPWindow.TabIndex = 36; this.grpDSPWindow.TabStop = false; this.grpDSPWindow.Text = "Window"; // // grpDSPNB2 // this.grpDSPNB2.Controls.Add(this.udDSPNB2); this.grpDSPNB2.Controls.Add(this.lblDSPNB2Threshold); this.grpDSPNB2.Location = new System.Drawing.Point(432, 96); this.grpDSPNB2.Name = "grpDSPNB2"; this.grpDSPNB2.Size = new System.Drawing.Size(120, 56); this.grpDSPNB2.TabIndex = 34; this.grpDSPNB2.TabStop = false; this.grpDSPNB2.Text = "Noise Blanker 2"; // // lblDSPNB2Threshold // this.lblDSPNB2Threshold.Image = null; this.lblDSPNB2Threshold.Location = new System.Drawing.Point(8, 24); this.lblDSPNB2Threshold.Name = "lblDSPNB2Threshold"; this.lblDSPNB2Threshold.Size = new System.Drawing.Size(64, 16); this.lblDSPNB2Threshold.TabIndex = 10; this.lblDSPNB2Threshold.Text = "Threshold:"; // // tpDSPImageReject // this.tpDSPImageReject.Controls.Add(this.grpDSPImageRejectTX); this.tpDSPImageReject.Location = new System.Drawing.Point(4, 22); this.tpDSPImageReject.Name = "tpDSPImageReject"; this.tpDSPImageReject.Size = new System.Drawing.Size(592, 318); this.tpDSPImageReject.TabIndex = 1; this.tpDSPImageReject.Text = "Image Reject"; // // grpDSPImageRejectTX // this.grpDSPImageRejectTX.Controls.Add(this.btnTXCalibrateAll); this.grpDSPImageRejectTX.Controls.Add(this.btnTXCallibrateClear); this.grpDSPImageRejectTX.Controls.Add(this.btnTXClearBandCalibration); this.grpDSPImageRejectTX.Controls.Add(this.btnTXCalibrateBand); this.grpDSPImageRejectTX.Controls.Add(this.checkboxTXImagCal); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPGainValTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPPhaseValTX); this.grpDSPImageRejectTX.Controls.Add(this.udDSPImageGainTX); this.grpDSPImageRejectTX.Controls.Add(this.udDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPImageGainTX); this.grpDSPImageRejectTX.Controls.Add(this.tbDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.tbDSPImageGainTX); this.grpDSPImageRejectTX.Location = new System.Drawing.Point(176, 8); this.grpDSPImageRejectTX.Name = "grpDSPImageRejectTX"; this.grpDSPImageRejectTX.Size = new System.Drawing.Size(240, 270); this.grpDSPImageRejectTX.TabIndex = 33; this.grpDSPImageRejectTX.TabStop = false; this.grpDSPImageRejectTX.Text = "Transmit Rejection"; // // lblDSPGainValTX // this.lblDSPGainValTX.Image = null; this.lblDSPGainValTX.Location = new System.Drawing.Point(72, 107); this.lblDSPGainValTX.Name = "lblDSPGainValTX"; this.lblDSPGainValTX.Size = new System.Drawing.Size(163, 16); this.lblDSPGainValTX.TabIndex = 15; this.lblDSPGainValTX.Text = "-500 -250 0 250 500"; // // lblDSPPhaseValTX // this.lblDSPPhaseValTX.Image = null; this.lblDSPPhaseValTX.Location = new System.Drawing.Point(72, 56); this.lblDSPPhaseValTX.Name = "lblDSPPhaseValTX"; this.lblDSPPhaseValTX.Size = new System.Drawing.Size(163, 16); this.lblDSPPhaseValTX.TabIndex = 14; this.lblDSPPhaseValTX.Text = "-400 -200 0 200 400"; // // lblDSPImageGainTX // this.lblDSPImageGainTX.Image = null; this.lblDSPImageGainTX.Location = new System.Drawing.Point(16, 71); this.lblDSPImageGainTX.Name = "lblDSPImageGainTX"; this.lblDSPImageGainTX.Size = new System.Drawing.Size(48, 16); this.lblDSPImageGainTX.TabIndex = 6; this.lblDSPImageGainTX.Text = "Gain:"; // // lblDSPImagePhaseTX // this.lblDSPImagePhaseTX.Image = null; this.lblDSPImagePhaseTX.Location = new System.Drawing.Point(16, 24); this.lblDSPImagePhaseTX.Name = "lblDSPImagePhaseTX"; this.lblDSPImagePhaseTX.Size = new System.Drawing.Size(48, 16); this.lblDSPImagePhaseTX.TabIndex = 5; this.lblDSPImagePhaseTX.Text = "Phase:"; // // tpDSPKeyer // this.tpDSPKeyer.Controls.Add(this.grpExteCWKeyer); this.tpDSPKeyer.Controls.Add(this.grpDSPCWPitch); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerSignalShaping); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerSemiBreakIn); this.tpDSPKeyer.Location = new System.Drawing.Point(4, 22); this.tpDSPKeyer.Name = "tpDSPKeyer"; this.tpDSPKeyer.Size = new System.Drawing.Size(592, 318); this.tpDSPKeyer.TabIndex = 0; this.tpDSPKeyer.Text = "Keyer"; // // grpExteCWKeyer // this.grpExteCWKeyer.Controls.Add(this.grpDSPKeyerOptions); this.grpExteCWKeyer.Controls.Add(this.grpKeyerConnections); this.grpExteCWKeyer.Location = new System.Drawing.Point(123, 8); this.grpExteCWKeyer.Name = "grpExteCWKeyer"; this.grpExteCWKeyer.Size = new System.Drawing.Size(301, 204); this.grpExteCWKeyer.TabIndex = 41; this.grpExteCWKeyer.TabStop = false; this.grpExteCWKeyer.Text = "External CW keyer"; // // grpDSPKeyerOptions // this.grpDSPKeyerOptions.Controls.Add(this.lblDSPCWMonFreq); this.grpDSPKeyerOptions.Controls.Add(this.udDSPCWMonFreq); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerMode); this.grpDSPKeyerOptions.Controls.Add(this.chkHiPerfKeyer); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerRevPdl); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerIambic); this.grpDSPKeyerOptions.Location = new System.Drawing.Point(156, 12); this.grpDSPKeyerOptions.Name = "grpDSPKeyerOptions"; this.grpDSPKeyerOptions.Size = new System.Drawing.Size(128, 185); this.grpDSPKeyerOptions.TabIndex = 37; this.grpDSPKeyerOptions.TabStop = false; this.grpDSPKeyerOptions.Text = "Options"; // // lblDSPCWMonFreq // this.lblDSPCWMonFreq.Image = null; this.lblDSPCWMonFreq.Location = new System.Drawing.Point(10, 144); this.lblDSPCWMonFreq.Name = "lblDSPCWMonFreq"; this.lblDSPCWMonFreq.Size = new System.Drawing.Size(64, 32); this.lblDSPCWMonFreq.TabIndex = 41; this.lblDSPCWMonFreq.Text = "CW monitor frequency"; // // udDSPCWMonFreq // this.udDSPCWMonFreq.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPCWMonFreq.Location = new System.Drawing.Point(74, 149); this.udDSPCWMonFreq.Maximum = new decimal(new int[] { 3000, 0, 0, 0}); this.udDSPCWMonFreq.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPCWMonFreq.Name = "udDSPCWMonFreq"; this.udDSPCWMonFreq.Size = new System.Drawing.Size(48, 20); this.udDSPCWMonFreq.TabIndex = 42; this.udDSPCWMonFreq.Value = new decimal(new int[] { 600, 0, 0, 0}); this.udDSPCWMonFreq.ValueChanged += new System.EventHandler(this.udDSPCWMonFreq_ValueChanged); // // grpKeyerConnections // this.grpKeyerConnections.Controls.Add(this.comboKeyerConnPTTLine); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnPTTLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnDASHLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnSecondary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnSecondary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnDASHLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnDOTLine); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnDOTLine); this.grpKeyerConnections.Location = new System.Drawing.Point(16, 12); this.grpKeyerConnections.Name = "grpKeyerConnections"; this.grpKeyerConnections.Size = new System.Drawing.Size(134, 162); this.grpKeyerConnections.TabIndex = 40; this.grpKeyerConnections.TabStop = false; this.grpKeyerConnections.Text = "Connections"; // // lblKeyerConnPTTLine // this.lblKeyerConnPTTLine.Image = null; this.lblKeyerConnPTTLine.Location = new System.Drawing.Point(19, 122); this.lblKeyerConnPTTLine.Name = "lblKeyerConnPTTLine"; this.lblKeyerConnPTTLine.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnPTTLine.TabIndex = 54; this.lblKeyerConnPTTLine.Text = "PTT"; this.lblKeyerConnPTTLine.Visible = false; // // lblKeyerConnSecondary // this.lblKeyerConnSecondary.Image = null; this.lblKeyerConnSecondary.Location = new System.Drawing.Point(19, 29); this.lblKeyerConnSecondary.Name = "lblKeyerConnSecondary"; this.lblKeyerConnSecondary.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnSecondary.TabIndex = 52; this.lblKeyerConnSecondary.Text = "Port:"; // // lblKeyerConnDASHLine // this.lblKeyerConnDASHLine.Image = null; this.lblKeyerConnDASHLine.Location = new System.Drawing.Point(16, 91); this.lblKeyerConnDASHLine.Name = "lblKeyerConnDASHLine"; this.lblKeyerConnDASHLine.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnDASHLine.TabIndex = 50; this.lblKeyerConnDASHLine.Text = "DASH"; this.lblKeyerConnDASHLine.Visible = false; // // lblKeyerConnDOTLine // this.lblKeyerConnDOTLine.Image = null; this.lblKeyerConnDOTLine.Location = new System.Drawing.Point(16, 61); this.lblKeyerConnDOTLine.Name = "lblKeyerConnDOTLine"; this.lblKeyerConnDOTLine.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnDOTLine.TabIndex = 48; this.lblKeyerConnDOTLine.Text = "DOT"; this.lblKeyerConnDOTLine.Visible = false; // // grpDSPCWPitch // this.grpDSPCWPitch.Controls.Add(this.lblDSPCWPitchFreq); this.grpDSPCWPitch.Controls.Add(this.udDSPCWPitch); this.grpDSPCWPitch.Location = new System.Drawing.Point(14, 8); this.grpDSPCWPitch.Name = "grpDSPCWPitch"; this.grpDSPCWPitch.Size = new System.Drawing.Size(96, 57); this.grpDSPCWPitch.TabIndex = 39; this.grpDSPCWPitch.TabStop = false; this.grpDSPCWPitch.Text = "CW Pitch (Hz)"; // // lblDSPCWPitchFreq // this.lblDSPCWPitchFreq.Image = null; this.lblDSPCWPitchFreq.Location = new System.Drawing.Point(8, 24); this.lblDSPCWPitchFreq.Name = "lblDSPCWPitchFreq"; this.lblDSPCWPitchFreq.Size = new System.Drawing.Size(32, 16); this.lblDSPCWPitchFreq.TabIndex = 8; this.lblDSPCWPitchFreq.Text = "Freq:"; // // grpDSPKeyerSignalShaping // this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerFall); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblCWFall); this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerDeBounce); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblKeyerDeBounce); this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerWeight); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblCWWeight); this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerRise); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblCWRise); this.grpDSPKeyerSignalShaping.Location = new System.Drawing.Point(437, 8); this.grpDSPKeyerSignalShaping.Name = "grpDSPKeyerSignalShaping"; this.grpDSPKeyerSignalShaping.Size = new System.Drawing.Size(136, 128); this.grpDSPKeyerSignalShaping.TabIndex = 34; this.grpDSPKeyerSignalShaping.TabStop = false; this.grpDSPKeyerSignalShaping.Text = "Signal Shaping"; // // lblCWFall // this.lblCWFall.Image = null; this.lblCWFall.Location = new System.Drawing.Point(16, 70); this.lblCWFall.Name = "lblCWFall"; this.lblCWFall.Size = new System.Drawing.Size(64, 16); this.lblCWFall.TabIndex = 43; this.lblCWFall.Text = "Fall (ms):"; // // udCWKeyerDeBounce // this.udCWKeyerDeBounce.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerDeBounce.Location = new System.Drawing.Point(80, 93); this.udCWKeyerDeBounce.Maximum = new decimal(new int[] { 15, 0, 0, 0}); this.udCWKeyerDeBounce.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerDeBounce.Name = "udCWKeyerDeBounce"; this.udCWKeyerDeBounce.Size = new System.Drawing.Size(40, 20); this.udCWKeyerDeBounce.TabIndex = 42; this.udCWKeyerDeBounce.Value = new decimal(new int[] { 2, 0, 0, 0}); this.udCWKeyerDeBounce.ValueChanged += new System.EventHandler(this.udCWKeyerDeBounce_ValueChanged); this.udCWKeyerDeBounce.LostFocus += new System.EventHandler(this.udCWKeyerDeBounce_LostFocus); // // lblKeyerDeBounce // this.lblKeyerDeBounce.Image = null; this.lblKeyerDeBounce.Location = new System.Drawing.Point(16, 93); this.lblKeyerDeBounce.Name = "lblKeyerDeBounce"; this.lblKeyerDeBounce.Size = new System.Drawing.Size(64, 16); this.lblKeyerDeBounce.TabIndex = 41; this.lblKeyerDeBounce.Text = "Debounce:"; // // lblCWWeight // this.lblCWWeight.Image = null; this.lblCWWeight.Location = new System.Drawing.Point(16, 24); this.lblCWWeight.Name = "lblCWWeight"; this.lblCWWeight.Size = new System.Drawing.Size(48, 16); this.lblCWWeight.TabIndex = 39; this.lblCWWeight.Text = "Weight:"; // // lblCWRise // this.lblCWRise.Image = null; this.lblCWRise.Location = new System.Drawing.Point(16, 47); this.lblCWRise.Name = "lblCWRise"; this.lblCWRise.Size = new System.Drawing.Size(64, 16); this.lblCWRise.TabIndex = 39; this.lblCWRise.Text = "Rise (ms):"; // // grpDSPKeyerSemiBreakIn // this.grpDSPKeyerSemiBreakIn.Controls.Add(this.chkDSPKeyerSemiBreakInEnabled); this.grpDSPKeyerSemiBreakIn.Controls.Add(this.lblCWKeyerBreakIn); this.grpDSPKeyerSemiBreakIn.Controls.Add(this.udCWKeyerSemiBreakInDelay); this.grpDSPKeyerSemiBreakIn.Location = new System.Drawing.Point(8, 212); this.grpDSPKeyerSemiBreakIn.Name = "grpDSPKeyerSemiBreakIn"; this.grpDSPKeyerSemiBreakIn.Size = new System.Drawing.Size(136, 88); this.grpDSPKeyerSemiBreakIn.TabIndex = 38; this.grpDSPKeyerSemiBreakIn.TabStop = false; this.grpDSPKeyerSemiBreakIn.Text = "Semi Break In"; // // lblCWKeyerBreakIn // this.lblCWKeyerBreakIn.Image = null; this.lblCWKeyerBreakIn.Location = new System.Drawing.Point(8, 48); this.lblCWKeyerBreakIn.Name = "lblCWKeyerBreakIn"; this.lblCWKeyerBreakIn.Size = new System.Drawing.Size(64, 16); this.lblCWKeyerBreakIn.TabIndex = 34; this.lblCWKeyerBreakIn.Text = "Delay (ms):"; // // tpDSPAGCALC // this.tpDSPAGCALC.Controls.Add(this.grpDSPLeveler); this.tpDSPAGCALC.Controls.Add(this.grpDSPALC); this.tpDSPAGCALC.Controls.Add(this.grpDSPAGC); this.tpDSPAGCALC.Location = new System.Drawing.Point(4, 22); this.tpDSPAGCALC.Name = "tpDSPAGCALC"; this.tpDSPAGCALC.Size = new System.Drawing.Size(592, 318); this.tpDSPAGCALC.TabIndex = 3; this.tpDSPAGCALC.Text = "AGC/ALC"; // // grpDSPLeveler // this.grpDSPLeveler.Controls.Add(this.chkDSPLevelerEnabled); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerHangThreshold); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerHangTime); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerHangTime); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerThreshold); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerSlope); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerDecay); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerSlope); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerAttack); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerDecay); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerAttack); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerThreshold); this.grpDSPLeveler.Controls.Add(this.tbDSPLevelerHangThreshold); this.grpDSPLeveler.Location = new System.Drawing.Point(264, 8); this.grpDSPLeveler.Name = "grpDSPLeveler"; this.grpDSPLeveler.Size = new System.Drawing.Size(144, 216); this.grpDSPLeveler.TabIndex = 39; this.grpDSPLeveler.TabStop = false; this.grpDSPLeveler.Text = "Leveler"; // // lblDSPLevelerHangThreshold // this.lblDSPLevelerHangThreshold.Image = null; this.lblDSPLevelerHangThreshold.Location = new System.Drawing.Point(8, 168); this.lblDSPLevelerHangThreshold.Name = "lblDSPLevelerHangThreshold"; this.lblDSPLevelerHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPLevelerHangThreshold.TabIndex = 41; this.lblDSPLevelerHangThreshold.Text = "Hang Threshold:"; this.lblDSPLevelerHangThreshold.Visible = false; // // udDSPLevelerHangTime // this.udDSPLevelerHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerHangTime.Location = new System.Drawing.Point(88, 144); this.udDSPLevelerHangTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPLevelerHangTime.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerHangTime.Name = "udDSPLevelerHangTime"; this.udDSPLevelerHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPLevelerHangTime.TabIndex = 15; this.udDSPLevelerHangTime.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPLevelerHangTime.ValueChanged += new System.EventHandler(this.udDSPLevelerHangTime_ValueChanged); this.udDSPLevelerHangTime.LostFocus += new System.EventHandler(this.udDSPLevelerHangTime_LostFocus); // // lblDSPLevelerHangTime // this.lblDSPLevelerHangTime.Image = null; this.lblDSPLevelerHangTime.Location = new System.Drawing.Point(8, 144); this.lblDSPLevelerHangTime.Name = "lblDSPLevelerHangTime"; this.lblDSPLevelerHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPLevelerHangTime.TabIndex = 14; this.lblDSPLevelerHangTime.Text = "Hang (ms):"; // // udDSPLevelerSlope // this.udDSPLevelerSlope.Enabled = false; this.udDSPLevelerSlope.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerSlope.Location = new System.Drawing.Point(88, 48); this.udDSPLevelerSlope.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udDSPLevelerSlope.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerSlope.Name = "udDSPLevelerSlope"; this.udDSPLevelerSlope.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerSlope.TabIndex = 13; this.udDSPLevelerSlope.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerSlope.Visible = false; this.udDSPLevelerSlope.ValueChanged += new System.EventHandler(this.udDSPLevelerSlope_ValueChanged); this.udDSPLevelerSlope.LostFocus += new System.EventHandler(this.udDSPLevelerSlope_LostFocus); // // udDSPLevelerDecay // this.udDSPLevelerDecay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerDecay.Location = new System.Drawing.Point(88, 120); this.udDSPLevelerDecay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPLevelerDecay.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerDecay.Name = "udDSPLevelerDecay"; this.udDSPLevelerDecay.Size = new System.Drawing.Size(48, 20); this.udDSPLevelerDecay.TabIndex = 12; this.udDSPLevelerDecay.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPLevelerDecay.ValueChanged += new System.EventHandler(this.udDSPLevelerDecay_ValueChanged); this.udDSPLevelerDecay.LostFocus += new System.EventHandler(this.udDSPLevelerDecay_LostFocus); // // lblDSPLevelerSlope // this.lblDSPLevelerSlope.Enabled = false; this.lblDSPLevelerSlope.Image = null; this.lblDSPLevelerSlope.Location = new System.Drawing.Point(8, 48); this.lblDSPLevelerSlope.Name = "lblDSPLevelerSlope"; this.lblDSPLevelerSlope.Size = new System.Drawing.Size(64, 16); this.lblDSPLevelerSlope.TabIndex = 11; this.lblDSPLevelerSlope.Text = "Slope (dB):"; this.lblDSPLevelerSlope.Visible = false; // // udDSPLevelerAttack // this.udDSPLevelerAttack.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerAttack.Location = new System.Drawing.Point(88, 96); this.udDSPLevelerAttack.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerAttack.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerAttack.Name = "udDSPLevelerAttack"; this.udDSPLevelerAttack.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerAttack.TabIndex = 10; this.udDSPLevelerAttack.Value = new decimal(new int[] { 2, 0, 0, 0}); this.udDSPLevelerAttack.ValueChanged += new System.EventHandler(this.udDSPLevelerAttack_ValueChanged); this.udDSPLevelerAttack.LostFocus += new System.EventHandler(this.udDSPLevelerAttack_LostFocus); // // lblDSPLevelerDecay // this.lblDSPLevelerDecay.Image = null; this.lblDSPLevelerDecay.Location = new System.Drawing.Point(8, 120); this.lblDSPLevelerDecay.Name = "lblDSPLevelerDecay"; this.lblDSPLevelerDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPLevelerDecay.TabIndex = 9; this.lblDSPLevelerDecay.Text = "Decay (ms):"; // // lblDSPLevelerAttack // this.lblDSPLevelerAttack.Image = null; this.lblDSPLevelerAttack.Location = new System.Drawing.Point(8, 96); this.lblDSPLevelerAttack.Name = "lblDSPLevelerAttack"; this.lblDSPLevelerAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPLevelerAttack.TabIndex = 8; this.lblDSPLevelerAttack.Text = "Attack (ms):"; // // lblDSPLevelerThreshold // this.lblDSPLevelerThreshold.Image = null; this.lblDSPLevelerThreshold.Location = new System.Drawing.Point(8, 72); this.lblDSPLevelerThreshold.Name = "lblDSPLevelerThreshold"; this.lblDSPLevelerThreshold.Size = new System.Drawing.Size(88, 24); this.lblDSPLevelerThreshold.TabIndex = 7; this.lblDSPLevelerThreshold.Text = "Max.Gain (dB):"; // // tbDSPLevelerHangThreshold // this.tbDSPLevelerHangThreshold.AutoSize = false; this.tbDSPLevelerHangThreshold.Enabled = false; this.tbDSPLevelerHangThreshold.LargeChange = 1; this.tbDSPLevelerHangThreshold.Location = new System.Drawing.Point(8, 184); this.tbDSPLevelerHangThreshold.Maximum = 100; this.tbDSPLevelerHangThreshold.Name = "tbDSPLevelerHangThreshold"; this.tbDSPLevelerHangThreshold.Size = new System.Drawing.Size(128, 16); this.tbDSPLevelerHangThreshold.TabIndex = 40; this.tbDSPLevelerHangThreshold.TickFrequency = 10; this.tbDSPLevelerHangThreshold.Visible = false; this.tbDSPLevelerHangThreshold.Scroll += new System.EventHandler(this.tbDSPLevelerHangThreshold_Scroll); // // grpDSPALC // this.grpDSPALC.Controls.Add(this.lblDSPALCHangThreshold); this.grpDSPALC.Controls.Add(this.tbDSPALCHangThreshold); this.grpDSPALC.Controls.Add(this.udDSPALCHangTime); this.grpDSPALC.Controls.Add(this.lblDSPALCHangTime); this.grpDSPALC.Controls.Add(this.udDSPALCThreshold); this.grpDSPALC.Controls.Add(this.udDSPALCSlope); this.grpDSPALC.Controls.Add(this.udDSPALCDecay); this.grpDSPALC.Controls.Add(this.lblDSPALCSlope); this.grpDSPALC.Controls.Add(this.udDSPALCAttack); this.grpDSPALC.Controls.Add(this.lblDSPALCDecay); this.grpDSPALC.Controls.Add(this.lblDSPALCAttack); this.grpDSPALC.Controls.Add(this.lblDSPALCThreshold); this.grpDSPALC.Location = new System.Drawing.Point(416, 8); this.grpDSPALC.Name = "grpDSPALC"; this.grpDSPALC.Size = new System.Drawing.Size(144, 192); this.grpDSPALC.TabIndex = 38; this.grpDSPALC.TabStop = false; this.grpDSPALC.Text = "ALC"; // // lblDSPALCHangThreshold // this.lblDSPALCHangThreshold.Image = null; this.lblDSPALCHangThreshold.Location = new System.Drawing.Point(8, 144); this.lblDSPALCHangThreshold.Name = "lblDSPALCHangThreshold"; this.lblDSPALCHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPALCHangThreshold.TabIndex = 43; this.lblDSPALCHangThreshold.Text = "Hang Threshold:"; this.lblDSPALCHangThreshold.Visible = false; // // tbDSPALCHangThreshold // this.tbDSPALCHangThreshold.AutoSize = false; this.tbDSPALCHangThreshold.Enabled = false; this.tbDSPALCHangThreshold.LargeChange = 1; this.tbDSPALCHangThreshold.Location = new System.Drawing.Point(8, 160); this.tbDSPALCHangThreshold.Maximum = 100; this.tbDSPALCHangThreshold.Name = "tbDSPALCHangThreshold"; this.tbDSPALCHangThreshold.Size = new System.Drawing.Size(128, 16); this.tbDSPALCHangThreshold.TabIndex = 42; this.tbDSPALCHangThreshold.TickFrequency = 10; this.tbDSPALCHangThreshold.Visible = false; this.tbDSPALCHangThreshold.Scroll += new System.EventHandler(this.tbDSPALCHangThreshold_Scroll); // // udDSPALCHangTime // this.udDSPALCHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCHangTime.Location = new System.Drawing.Point(88, 120); this.udDSPALCHangTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPALCHangTime.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCHangTime.Name = "udDSPALCHangTime"; this.udDSPALCHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPALCHangTime.TabIndex = 17; this.udDSPALCHangTime.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPALCHangTime.ValueChanged += new System.EventHandler(this.udDSPALCHangTime_ValueChanged); this.udDSPALCHangTime.LostFocus += new System.EventHandler(this.udDSPALCHangTime_LostFocus); // // lblDSPALCHangTime // this.lblDSPALCHangTime.Image = null; this.lblDSPALCHangTime.Location = new System.Drawing.Point(8, 120); this.lblDSPALCHangTime.Name = "lblDSPALCHangTime"; this.lblDSPALCHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPALCHangTime.TabIndex = 16; this.lblDSPALCHangTime.Text = "Hang (ms):"; // // udDSPALCSlope // this.udDSPALCSlope.Enabled = false; this.udDSPALCSlope.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCSlope.Location = new System.Drawing.Point(88, 24); this.udDSPALCSlope.Maximum = new decimal(new int[] { 100, 0, 0, 0}); this.udDSPALCSlope.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCSlope.Name = "udDSPALCSlope"; this.udDSPALCSlope.Size = new System.Drawing.Size(40, 20); this.udDSPALCSlope.TabIndex = 13; this.udDSPALCSlope.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCSlope.Visible = false; this.udDSPALCSlope.ValueChanged += new System.EventHandler(this.udDSPALCSlope_ValueChanged); this.udDSPALCSlope.LostFocus += new System.EventHandler(this.udDSPALCSlope_LostFocus); // // udDSPALCDecay // this.udDSPALCDecay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCDecay.Location = new System.Drawing.Point(88, 96); this.udDSPALCDecay.Maximum = new decimal(new int[] { 50, 0, 0, 0}); this.udDSPALCDecay.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCDecay.Name = "udDSPALCDecay"; this.udDSPALCDecay.Size = new System.Drawing.Size(48, 20); this.udDSPALCDecay.TabIndex = 12; this.udDSPALCDecay.Value = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCDecay.ValueChanged += new System.EventHandler(this.udDSPALCDecay_ValueChanged); this.udDSPALCDecay.LostFocus += new System.EventHandler(this.udDSPALCDecay_LostFocus); // // lblDSPALCSlope // this.lblDSPALCSlope.Image = null; this.lblDSPALCSlope.Location = new System.Drawing.Point(8, 24); this.lblDSPALCSlope.Name = "lblDSPALCSlope"; this.lblDSPALCSlope.Size = new System.Drawing.Size(64, 16); this.lblDSPALCSlope.TabIndex = 11; this.lblDSPALCSlope.Text = "Slope (dB):"; this.lblDSPALCSlope.Visible = false; // // udDSPALCAttack // this.udDSPALCAttack.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCAttack.Location = new System.Drawing.Point(88, 72); this.udDSPALCAttack.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCAttack.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCAttack.Name = "udDSPALCAttack"; this.udDSPALCAttack.Size = new System.Drawing.Size(40, 20); this.udDSPALCAttack.TabIndex = 10; this.udDSPALCAttack.Value = new decimal(new int[] { 2, 0, 0, 0}); this.udDSPALCAttack.ValueChanged += new System.EventHandler(this.udDSPALCAttack_ValueChanged); this.udDSPALCAttack.LostFocus += new System.EventHandler(this.udDSPALCAttack_LostFocus); // // lblDSPALCDecay // this.lblDSPALCDecay.Image = null; this.lblDSPALCDecay.Location = new System.Drawing.Point(8, 96); this.lblDSPALCDecay.Name = "lblDSPALCDecay"; this.lblDSPALCDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPALCDecay.TabIndex = 9; this.lblDSPALCDecay.Text = "Decay (ms):"; // // lblDSPALCAttack // this.lblDSPALCAttack.Image = null; this.lblDSPALCAttack.Location = new System.Drawing.Point(8, 72); this.lblDSPALCAttack.Name = "lblDSPALCAttack"; this.lblDSPALCAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPALCAttack.TabIndex = 8; this.lblDSPALCAttack.Text = "Attack (ms):"; // // lblDSPALCThreshold // this.lblDSPALCThreshold.Image = null; this.lblDSPALCThreshold.Location = new System.Drawing.Point(8, 48); this.lblDSPALCThreshold.Name = "lblDSPALCThreshold"; this.lblDSPALCThreshold.Size = new System.Drawing.Size(88, 24); this.lblDSPALCThreshold.TabIndex = 7; this.lblDSPALCThreshold.Text = "Neg. Gain (dB):"; this.lblDSPALCThreshold.Visible = false; // // grpDSPAGC // this.grpDSPAGC.Controls.Add(this.tbDSPAGCHangThreshold); this.grpDSPAGC.Controls.Add(this.lblDSPAGCHangThreshold); this.grpDSPAGC.Controls.Add(this.lblDSPAGCHangTime); this.grpDSPAGC.Controls.Add(this.udDSPAGCHangTime); this.grpDSPAGC.Controls.Add(this.udDSPAGCMaxGaindB); this.grpDSPAGC.Controls.Add(this.udDSPAGCSlope); this.grpDSPAGC.Controls.Add(this.udDSPAGCDecay); this.grpDSPAGC.Controls.Add(this.lblDSPAGCSlope); this.grpDSPAGC.Controls.Add(this.udDSPAGCAttack); this.grpDSPAGC.Controls.Add(this.lblDSPAGCDecay); this.grpDSPAGC.Controls.Add(this.lblDSPAGCAttack); this.grpDSPAGC.Controls.Add(this.lblDSPAGCMaxGain); this.grpDSPAGC.Controls.Add(this.udDSPAGCFixedGaindB); this.grpDSPAGC.Controls.Add(this.lblDSPAGCFixed); this.grpDSPAGC.Location = new System.Drawing.Point(8, 8); this.grpDSPAGC.Name = "grpDSPAGC"; this.grpDSPAGC.Size = new System.Drawing.Size(168, 232); this.grpDSPAGC.TabIndex = 31; this.grpDSPAGC.TabStop = false; this.grpDSPAGC.Text = "AGC"; // // tbDSPAGCHangThreshold // this.tbDSPAGCHangThreshold.AutoSize = false; this.tbDSPAGCHangThreshold.LargeChange = 1; this.tbDSPAGCHangThreshold.Location = new System.Drawing.Point(8, 168); this.tbDSPAGCHangThreshold.Maximum = 100; this.tbDSPAGCHangThreshold.Name = "tbDSPAGCHangThreshold"; this.tbDSPAGCHangThreshold.Size = new System.Drawing.Size(144, 16); this.tbDSPAGCHangThreshold.TabIndex = 47; this.tbDSPAGCHangThreshold.TickFrequency = 10; this.tbDSPAGCHangThreshold.Scroll += new System.EventHandler(this.tbDSPAGCHangThreshold_Scroll); // // lblDSPAGCHangThreshold // this.lblDSPAGCHangThreshold.Image = null; this.lblDSPAGCHangThreshold.Location = new System.Drawing.Point(8, 144); this.lblDSPAGCHangThreshold.Name = "lblDSPAGCHangThreshold"; this.lblDSPAGCHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPAGCHangThreshold.TabIndex = 46; this.lblDSPAGCHangThreshold.Text = "Hang Threshold:"; // // lblDSPAGCHangTime // this.lblDSPAGCHangTime.Image = null; this.lblDSPAGCHangTime.Location = new System.Drawing.Point(8, 120); this.lblDSPAGCHangTime.Name = "lblDSPAGCHangTime"; this.lblDSPAGCHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPAGCHangTime.TabIndex = 45; this.lblDSPAGCHangTime.Text = "Hang (ms):"; // // udDSPAGCHangTime // this.udDSPAGCHangTime.Enabled = false; this.udDSPAGCHangTime.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCHangTime.Location = new System.Drawing.Point(104, 120); this.udDSPAGCHangTime.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPAGCHangTime.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCHangTime.Name = "udDSPAGCHangTime"; this.udDSPAGCHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPAGCHangTime.TabIndex = 44; this.udDSPAGCHangTime.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPAGCHangTime.ValueChanged += new System.EventHandler(this.udDSPAGCHangTime_ValueChanged); this.udDSPAGCHangTime.LostFocus += new System.EventHandler(this.udDSPAGCHangTime_LostFocus); // // udDSPAGCSlope // this.udDSPAGCSlope.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCSlope.Location = new System.Drawing.Point(104, 24); this.udDSPAGCSlope.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCSlope.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPAGCSlope.Name = "udDSPAGCSlope"; this.udDSPAGCSlope.Size = new System.Drawing.Size(40, 20); this.udDSPAGCSlope.TabIndex = 13; this.udDSPAGCSlope.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.udDSPAGCSlope.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udDSPAGCSlope.ValueChanged += new System.EventHandler(this.udDSPAGCSlope_ValueChanged); this.udDSPAGCSlope.LostFocus += new System.EventHandler(this.udDSPAGCSlope_LostFocus); // // udDSPAGCDecay // this.udDSPAGCDecay.Enabled = false; this.udDSPAGCDecay.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCDecay.Location = new System.Drawing.Point(104, 96); this.udDSPAGCDecay.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udDSPAGCDecay.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCDecay.Name = "udDSPAGCDecay"; this.udDSPAGCDecay.Size = new System.Drawing.Size(48, 20); this.udDSPAGCDecay.TabIndex = 12; this.udDSPAGCDecay.Value = new decimal(new int[] { 500, 0, 0, 0}); this.udDSPAGCDecay.ValueChanged += new System.EventHandler(this.udDSPAGCDecay_ValueChanged); this.udDSPAGCDecay.LostFocus += new System.EventHandler(this.udDSPAGCDecay_LostFocus); // // lblDSPAGCSlope // this.lblDSPAGCSlope.Image = null; this.lblDSPAGCSlope.Location = new System.Drawing.Point(8, 24); this.lblDSPAGCSlope.Name = "lblDSPAGCSlope"; this.lblDSPAGCSlope.Size = new System.Drawing.Size(80, 16); this.lblDSPAGCSlope.TabIndex = 11; this.lblDSPAGCSlope.Text = "Slope (dB):"; // // udDSPAGCAttack // this.udDSPAGCAttack.Enabled = false; this.udDSPAGCAttack.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCAttack.Location = new System.Drawing.Point(104, 72); this.udDSPAGCAttack.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCAttack.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCAttack.Name = "udDSPAGCAttack"; this.udDSPAGCAttack.Size = new System.Drawing.Size(40, 20); this.udDSPAGCAttack.TabIndex = 10; this.udDSPAGCAttack.Value = new decimal(new int[] { 2, 0, 0, 0}); this.udDSPAGCAttack.ValueChanged += new System.EventHandler(this.udDSPAGCAttack_ValueChanged); this.udDSPAGCAttack.LostFocus += new System.EventHandler(this.udDSPAGCAttack_LostFocus); // // lblDSPAGCDecay // this.lblDSPAGCDecay.Image = null; this.lblDSPAGCDecay.Location = new System.Drawing.Point(8, 96); this.lblDSPAGCDecay.Name = "lblDSPAGCDecay"; this.lblDSPAGCDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPAGCDecay.TabIndex = 9; this.lblDSPAGCDecay.Text = "Decay (ms):"; // // lblDSPAGCAttack // this.lblDSPAGCAttack.Image = null; this.lblDSPAGCAttack.Location = new System.Drawing.Point(8, 72); this.lblDSPAGCAttack.Name = "lblDSPAGCAttack"; this.lblDSPAGCAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPAGCAttack.TabIndex = 8; this.lblDSPAGCAttack.Text = "Attack (ms):"; // // lblDSPAGCMaxGain // this.lblDSPAGCMaxGain.Image = null; this.lblDSPAGCMaxGain.Location = new System.Drawing.Point(8, 48); this.lblDSPAGCMaxGain.Name = "lblDSPAGCMaxGain"; this.lblDSPAGCMaxGain.Size = new System.Drawing.Size(88, 24); this.lblDSPAGCMaxGain.TabIndex = 7; this.lblDSPAGCMaxGain.Text = "Max Gain (dB):"; // // lblDSPAGCFixed // this.lblDSPAGCFixed.Image = null; this.lblDSPAGCFixed.Location = new System.Drawing.Point(8, 200); this.lblDSPAGCFixed.Name = "lblDSPAGCFixed"; this.lblDSPAGCFixed.Size = new System.Drawing.Size(88, 16); this.lblDSPAGCFixed.TabIndex = 5; this.lblDSPAGCFixed.Text = "Fixed Gain (dB):"; // // tpDisplay // this.tpDisplay.Controls.Add(this.grpDisplayDriverEngine); this.tpDisplay.Controls.Add(this.grpDisplayPolyPhase); this.tpDisplay.Controls.Add(this.grpDisplayScopeMode); this.tpDisplay.Controls.Add(this.grpDisplayMultimeter); this.tpDisplay.Controls.Add(this.grpDisplayWaterfall); this.tpDisplay.Controls.Add(this.grpDisplayRefreshRates); this.tpDisplay.Controls.Add(this.grpDisplayAverage); this.tpDisplay.Controls.Add(this.grpDisplayPhase); this.tpDisplay.Controls.Add(this.grpDisplaySpectrumGrid); this.tpDisplay.Location = new System.Drawing.Point(4, 22); this.tpDisplay.Name = "tpDisplay"; this.tpDisplay.Size = new System.Drawing.Size(584, 331); this.tpDisplay.TabIndex = 2; this.tpDisplay.Text = "Display"; // // grpDisplayDriverEngine // this.grpDisplayDriverEngine.Controls.Add(this.radDirectXSW); this.grpDisplayDriverEngine.Controls.Add(this.radDirectXHW); this.grpDisplayDriverEngine.Controls.Add(this.comboDisplayDriver); this.grpDisplayDriverEngine.Location = new System.Drawing.Point(274, 168); this.grpDisplayDriverEngine.Name = "grpDisplayDriverEngine"; this.grpDisplayDriverEngine.Size = new System.Drawing.Size(96, 141); this.grpDisplayDriverEngine.TabIndex = 46; this.grpDisplayDriverEngine.TabStop = false; this.grpDisplayDriverEngine.Text = "Driver Engine"; // // radDirectXSW // this.radDirectXSW.AutoSize = true; this.radDirectXSW.Image = null; this.radDirectXSW.Location = new System.Drawing.Point(13, 105); this.radDirectXSW.Name = "radDirectXSW"; this.radDirectXSW.Size = new System.Drawing.Size(67, 17); this.radDirectXSW.TabIndex = 47; this.radDirectXSW.Text = "Software"; this.radDirectXSW.UseVisualStyleBackColor = true; this.radDirectXSW.CheckedChanged += new System.EventHandler(this.radDirectXSW_CheckedChanged); // // radDirectXHW // this.radDirectXHW.AutoSize = true; this.radDirectXHW.Checked = true; this.radDirectXHW.Image = null; this.radDirectXHW.Location = new System.Drawing.Point(13, 69); this.radDirectXHW.Name = "radDirectXHW"; this.radDirectXHW.Size = new System.Drawing.Size(71, 17); this.radDirectXHW.TabIndex = 46; this.radDirectXHW.TabStop = true; this.radDirectXHW.Text = "Hardware"; this.radDirectXHW.UseVisualStyleBackColor = true; this.radDirectXHW.CheckedChanged += new System.EventHandler(this.radDirectXHW_CheckedChanged); // // grpDisplayPolyPhase // this.grpDisplayPolyPhase.Controls.Add(this.chkSpectrumPolyphase); this.grpDisplayPolyPhase.Location = new System.Drawing.Point(456, 115); this.grpDisplayPolyPhase.Name = "grpDisplayPolyPhase"; this.grpDisplayPolyPhase.Size = new System.Drawing.Size(120, 56); this.grpDisplayPolyPhase.TabIndex = 44; this.grpDisplayPolyPhase.TabStop = false; this.grpDisplayPolyPhase.Text = "Polyphase FFT"; // // grpDisplayScopeMode // this.grpDisplayScopeMode.Controls.Add(this.lblScopeColor); this.grpDisplayScopeMode.Controls.Add(this.clrbtnScopeColor); this.grpDisplayScopeMode.Controls.Add(this.udDisplayScopeTime); this.grpDisplayScopeMode.Controls.Add(this.lblDisplayScopeTime); this.grpDisplayScopeMode.Location = new System.Drawing.Point(456, 8); this.grpDisplayScopeMode.Name = "grpDisplayScopeMode"; this.grpDisplayScopeMode.Size = new System.Drawing.Size(120, 101); this.grpDisplayScopeMode.TabIndex = 43; this.grpDisplayScopeMode.TabStop = false; this.grpDisplayScopeMode.Text = "Scope Mode"; // // lblDisplayScopeTime // this.lblDisplayScopeTime.Image = null; this.lblDisplayScopeTime.Location = new System.Drawing.Point(8, 24); this.lblDisplayScopeTime.Name = "lblDisplayScopeTime"; this.lblDisplayScopeTime.Size = new System.Drawing.Size(64, 23); this.lblDisplayScopeTime.TabIndex = 1; this.lblDisplayScopeTime.Text = "Time (ms):"; // // grpDisplayMultimeter // this.grpDisplayMultimeter.Controls.Add(this.udDecayTime); this.grpDisplayMultimeter.Controls.Add(this.labelTS23); this.grpDisplayMultimeter.Controls.Add(this.udAtackTime); this.grpDisplayMultimeter.Controls.Add(this.labelTS21); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMeterAvg); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterAvg); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMultiTextHoldTime); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterTextHoldTime); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMultiPeakHoldTime); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMultiPeakHoldTime); this.grpDisplayMultimeter.Location = new System.Drawing.Point(381, 168); this.grpDisplayMultimeter.Name = "grpDisplayMultimeter"; this.grpDisplayMultimeter.Size = new System.Drawing.Size(200, 150); this.grpDisplayMultimeter.TabIndex = 41; this.grpDisplayMultimeter.TabStop = false; this.grpDisplayMultimeter.Text = "Multimeter"; // // udDecayTime // this.udDecayTime.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udDecayTime.Location = new System.Drawing.Point(139, 120); this.udDecayTime.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udDecayTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udDecayTime.Name = "udDecayTime"; this.udDecayTime.Size = new System.Drawing.Size(49, 20); this.udDecayTime.TabIndex = 12; this.udDecayTime.Value = new decimal(new int[] { 750, 0, 0, 0}); this.udDecayTime.ValueChanged += new System.EventHandler(this.udDecayTime_ValueChanged); // // labelTS23 // this.labelTS23.Image = null; this.labelTS23.Location = new System.Drawing.Point(12, 121); this.labelTS23.Name = "labelTS23"; this.labelTS23.Size = new System.Drawing.Size(112, 16); this.labelTS23.TabIndex = 11; this.labelTS23.Text = "Decay Time (ms):"; // // udAtackTime // this.udAtackTime.Increment = new decimal(new int[] { 10, 0, 0, 0}); this.udAtackTime.Location = new System.Drawing.Point(139, 96); this.udAtackTime.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.udAtackTime.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udAtackTime.Name = "udAtackTime"; this.udAtackTime.Size = new System.Drawing.Size(49, 20); this.udAtackTime.TabIndex = 10; this.udAtackTime.Value = new decimal(new int[] { 250, 0, 0, 0}); this.udAtackTime.ValueChanged += new System.EventHandler(this.udAtackTime_ValueChanged); // // labelTS21 // this.labelTS21.Image = null; this.labelTS21.Location = new System.Drawing.Point(12, 98); this.labelTS21.Name = "labelTS21"; this.labelTS21.Size = new System.Drawing.Size(112, 16); this.labelTS21.TabIndex = 9; this.labelTS21.Text = "Attack Time (ms):"; // // lblDisplayMeterAvg // this.lblDisplayMeterAvg.Image = null; this.lblDisplayMeterAvg.Location = new System.Drawing.Point(12, 72); this.lblDisplayMeterAvg.Name = "lblDisplayMeterAvg"; this.lblDisplayMeterAvg.Size = new System.Drawing.Size(112, 16); this.lblDisplayMeterAvg.TabIndex = 7; this.lblDisplayMeterAvg.Text = "Average Time (ms):"; // // lblDisplayMeterTextHoldTime // this.lblDisplayMeterTextHoldTime.Image = null; this.lblDisplayMeterTextHoldTime.Location = new System.Drawing.Point(12, 48); this.lblDisplayMeterTextHoldTime.Name = "lblDisplayMeterTextHoldTime"; this.lblDisplayMeterTextHoldTime.Size = new System.Drawing.Size(120, 16); this.lblDisplayMeterTextHoldTime.TabIndex = 3; this.lblDisplayMeterTextHoldTime.Text = "Digital Peak Hold (ms):"; // // lblDisplayMultiPeakHoldTime // this.lblDisplayMultiPeakHoldTime.Image = null; this.lblDisplayMultiPeakHoldTime.Location = new System.Drawing.Point(12, 24); this.lblDisplayMultiPeakHoldTime.Name = "lblDisplayMultiPeakHoldTime"; this.lblDisplayMultiPeakHoldTime.Size = new System.Drawing.Size(128, 16); this.lblDisplayMultiPeakHoldTime.TabIndex = 0; this.lblDisplayMultiPeakHoldTime.Text = "Analog Peak Hold (ms):"; // // grpDisplayWaterfall // this.grpDisplayWaterfall.Controls.Add(this.tbWaterfallAlpha); this.grpDisplayWaterfall.Controls.Add(this.chkReverseWaterfall); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallAverageTime); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallUpdatePeriod); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallAvgTime); this.grpDisplayWaterfall.Controls.Add(this.label1); this.grpDisplayWaterfall.Controls.Add(this.comboColorPalette); this.grpDisplayWaterfall.Controls.Add(this.clrbtnWaterfallMid); this.grpDisplayWaterfall.Controls.Add(this.clrbtnWaterfallHigh); this.grpDisplayWaterfall.Controls.Add(this.clrbtnWaterfallLow); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallMidColor); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallHighColor); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallLowColor); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallLowLevel); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallLowLevel); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallHighLevel); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallHighLevel); this.grpDisplayWaterfall.Location = new System.Drawing.Point(8, 159); this.grpDisplayWaterfall.Name = "grpDisplayWaterfall"; this.grpDisplayWaterfall.Size = new System.Drawing.Size(256, 150); this.grpDisplayWaterfall.TabIndex = 40; this.grpDisplayWaterfall.TabStop = false; this.grpDisplayWaterfall.Text = "Waterfall"; // // tbWaterfallAlpha // this.tbWaterfallAlpha.AutoSize = false; this.tbWaterfallAlpha.Location = new System.Drawing.Point(53, 101); this.tbWaterfallAlpha.Maximum = 255; this.tbWaterfallAlpha.Name = "tbWaterfallAlpha"; this.tbWaterfallAlpha.Size = new System.Drawing.Size(67, 20); this.tbWaterfallAlpha.TabIndex = 91; this.tbWaterfallAlpha.TickStyle = System.Windows.Forms.TickStyle.None; this.tbWaterfallAlpha.Value = 255; this.tbWaterfallAlpha.Scroll += new System.EventHandler(this.tbWaterfallAlpha_Scroll); // // chkReverseWaterfall // this.chkReverseWaterfall.AutoSize = true; this.chkReverseWaterfall.Image = null; this.chkReverseWaterfall.Location = new System.Drawing.Point(15, 125); this.chkReverseWaterfall.Name = "chkReverseWaterfall"; this.chkReverseWaterfall.Size = new System.Drawing.Size(111, 17); this.chkReverseWaterfall.TabIndex = 47; this.chkReverseWaterfall.Text = "Reverse Waterfall"; this.chkReverseWaterfall.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chkReverseWaterfall.UseVisualStyleBackColor = true; this.chkReverseWaterfall.CheckedChanged += new System.EventHandler(this.chkReverseWaterfall_CheckedChanged); // // lblDisplayWaterfallAverageTime // this.lblDisplayWaterfallAverageTime.Image = null; this.lblDisplayWaterfallAverageTime.Location = new System.Drawing.Point(132, 98); this.lblDisplayWaterfallAverageTime.Name = "lblDisplayWaterfallAverageTime"; this.lblDisplayWaterfallAverageTime.Size = new System.Drawing.Size(60, 33); this.lblDisplayWaterfallAverageTime.TabIndex = 71; this.lblDisplayWaterfallAverageTime.Text = "Averging (ms):"; // // lblDisplayWaterfallUpdatePeriod // this.lblDisplayWaterfallUpdatePeriod.Image = null; this.lblDisplayWaterfallUpdatePeriod.Location = new System.Drawing.Point(8, 101); this.lblDisplayWaterfallUpdatePeriod.Name = "lblDisplayWaterfallUpdatePeriod"; this.lblDisplayWaterfallUpdatePeriod.Size = new System.Drawing.Size(66, 18); this.lblDisplayWaterfallUpdatePeriod.TabIndex = 73; this.lblDisplayWaterfallUpdatePeriod.Text = "Alpha"; // // lblDisplayWaterfallMidColor // this.lblDisplayWaterfallMidColor.Image = null; this.lblDisplayWaterfallMidColor.Location = new System.Drawing.Point(136, 44); this.lblDisplayWaterfallMidColor.Name = "lblDisplayWaterfallMidColor"; this.lblDisplayWaterfallMidColor.Size = new System.Drawing.Size(64, 16); this.lblDisplayWaterfallMidColor.TabIndex = 61; this.lblDisplayWaterfallMidColor.Text = "Mid Color:"; // // lblDisplayWaterfallHighColor // this.lblDisplayWaterfallHighColor.Image = null; this.lblDisplayWaterfallHighColor.Location = new System.Drawing.Point(136, 70); this.lblDisplayWaterfallHighColor.Name = "lblDisplayWaterfallHighColor"; this.lblDisplayWaterfallHighColor.Size = new System.Drawing.Size(64, 16); this.lblDisplayWaterfallHighColor.TabIndex = 59; this.lblDisplayWaterfallHighColor.Text = "High Color:"; // // lblDisplayWaterfallLowColor // this.lblDisplayWaterfallLowColor.Image = null; this.lblDisplayWaterfallLowColor.Location = new System.Drawing.Point(136, 18); this.lblDisplayWaterfallLowColor.Name = "lblDisplayWaterfallLowColor"; this.lblDisplayWaterfallLowColor.Size = new System.Drawing.Size(64, 16); this.lblDisplayWaterfallLowColor.TabIndex = 57; this.lblDisplayWaterfallLowColor.Text = "Low Color:"; // // lblDisplayWaterfallLowLevel // this.lblDisplayWaterfallLowLevel.Image = null; this.lblDisplayWaterfallLowLevel.Location = new System.Drawing.Point(8, 18); this.lblDisplayWaterfallLowLevel.Name = "lblDisplayWaterfallLowLevel"; this.lblDisplayWaterfallLowLevel.Size = new System.Drawing.Size(64, 23); this.lblDisplayWaterfallLowLevel.TabIndex = 3; this.lblDisplayWaterfallLowLevel.Text = "Low Level"; // // lblDisplayWaterfallHighLevel // this.lblDisplayWaterfallHighLevel.Image = null; this.lblDisplayWaterfallHighLevel.Location = new System.Drawing.Point(8, 44); this.lblDisplayWaterfallHighLevel.Name = "lblDisplayWaterfallHighLevel"; this.lblDisplayWaterfallHighLevel.Size = new System.Drawing.Size(64, 19); this.lblDisplayWaterfallHighLevel.TabIndex = 1; this.lblDisplayWaterfallHighLevel.Text = "High Level"; // // grpDisplayRefreshRates // this.grpDisplayRefreshRates.Controls.Add(this.udDisplayCPUMeter); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayCPUMeter); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayPeakText); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayPeakText); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayMeterDelay); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayMeterDelay); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayFPS); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayFPS); this.grpDisplayRefreshRates.Location = new System.Drawing.Point(139, 8); this.grpDisplayRefreshRates.Name = "grpDisplayRefreshRates"; this.grpDisplayRefreshRates.Size = new System.Drawing.Size(176, 128); this.grpDisplayRefreshRates.TabIndex = 39; this.grpDisplayRefreshRates.TabStop = false; this.grpDisplayRefreshRates.Text = "Refresh Rates"; // // lblDisplayCPUMeter // this.lblDisplayCPUMeter.Image = null; this.lblDisplayCPUMeter.Location = new System.Drawing.Point(16, 96); this.lblDisplayCPUMeter.Name = "lblDisplayCPUMeter"; this.lblDisplayCPUMeter.Size = new System.Drawing.Size(100, 23); this.lblDisplayCPUMeter.TabIndex = 37; this.lblDisplayCPUMeter.Text = "CPU Meter (ms)"; // // lblDisplayPeakText // this.lblDisplayPeakText.Image = null; this.lblDisplayPeakText.Location = new System.Drawing.Point(16, 72); this.lblDisplayPeakText.Name = "lblDisplayPeakText"; this.lblDisplayPeakText.Size = new System.Drawing.Size(100, 23); this.lblDisplayPeakText.TabIndex = 35; this.lblDisplayPeakText.Text = "Peak Text (ms)"; // // lblDisplayMeterDelay // this.lblDisplayMeterDelay.Image = null; this.lblDisplayMeterDelay.Location = new System.Drawing.Point(16, 48); this.lblDisplayMeterDelay.Name = "lblDisplayMeterDelay"; this.lblDisplayMeterDelay.Size = new System.Drawing.Size(96, 23); this.lblDisplayMeterDelay.TabIndex = 33; this.lblDisplayMeterDelay.Text = "Meter Delay (ms):"; // // lblDisplayFPS // this.lblDisplayFPS.Image = null; this.lblDisplayFPS.Location = new System.Drawing.Point(16, 24); this.lblDisplayFPS.Name = "lblDisplayFPS"; this.lblDisplayFPS.Size = new System.Drawing.Size(104, 16); this.lblDisplayFPS.TabIndex = 31; this.lblDisplayFPS.Text = "Main Display FPS:"; // // grpDisplayAverage // this.grpDisplayAverage.Controls.Add(this.udDisplayAVGTime); this.grpDisplayAverage.Controls.Add(this.lblDisplayAVGTime); this.grpDisplayAverage.Location = new System.Drawing.Point(324, 72); this.grpDisplayAverage.Name = "grpDisplayAverage"; this.grpDisplayAverage.Size = new System.Drawing.Size(120, 56); this.grpDisplayAverage.TabIndex = 38; this.grpDisplayAverage.TabStop = false; this.grpDisplayAverage.Text = "Averaging"; // // lblDisplayAVGTime // this.lblDisplayAVGTime.Image = null; this.lblDisplayAVGTime.Location = new System.Drawing.Point(8, 24); this.lblDisplayAVGTime.Name = "lblDisplayAVGTime"; this.lblDisplayAVGTime.Size = new System.Drawing.Size(64, 23); this.lblDisplayAVGTime.TabIndex = 3; this.lblDisplayAVGTime.Text = "Time (ms):"; // // grpDisplayPhase // this.grpDisplayPhase.Controls.Add(this.lblDisplayPhasePts); this.grpDisplayPhase.Controls.Add(this.udDisplayPhasePts); this.grpDisplayPhase.Location = new System.Drawing.Point(324, 8); this.grpDisplayPhase.Name = "grpDisplayPhase"; this.grpDisplayPhase.Size = new System.Drawing.Size(120, 56); this.grpDisplayPhase.TabIndex = 37; this.grpDisplayPhase.TabStop = false; this.grpDisplayPhase.Text = "Phase Mode"; // // lblDisplayPhasePts // this.lblDisplayPhasePts.Image = null; this.lblDisplayPhasePts.Location = new System.Drawing.Point(8, 24); this.lblDisplayPhasePts.Name = "lblDisplayPhasePts"; this.lblDisplayPhasePts.Size = new System.Drawing.Size(56, 23); this.lblDisplayPhasePts.TabIndex = 1; this.lblDisplayPhasePts.Text = "Num Pts:"; // // grpDisplaySpectrumGrid // this.grpDisplaySpectrumGrid.Controls.Add(this.chkHorGrid); this.grpDisplaySpectrumGrid.Controls.Add(this.chkVertGrid); this.grpDisplaySpectrumGrid.Controls.Add(this.comboDisplayLabelAlign); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayAlign); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridStep); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridMin); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridMax); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridStep); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridMin); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridMax); this.grpDisplaySpectrumGrid.Location = new System.Drawing.Point(8, 8); this.grpDisplaySpectrumGrid.Name = "grpDisplaySpectrumGrid"; this.grpDisplaySpectrumGrid.Size = new System.Drawing.Size(120, 145); this.grpDisplaySpectrumGrid.TabIndex = 29; this.grpDisplaySpectrumGrid.TabStop = false; this.grpDisplaySpectrumGrid.Text = "Display Grid"; // // lblDisplayAlign // this.lblDisplayAlign.Image = null; this.lblDisplayAlign.Location = new System.Drawing.Point(8, 86); this.lblDisplayAlign.Name = "lblDisplayAlign"; this.lblDisplayAlign.Size = new System.Drawing.Size(40, 16); this.lblDisplayAlign.TabIndex = 29; this.lblDisplayAlign.Text = "Align:"; // // lblDisplayGridStep // this.lblDisplayGridStep.Image = null; this.lblDisplayGridStep.Location = new System.Drawing.Point(8, 62); this.lblDisplayGridStep.Name = "lblDisplayGridStep"; this.lblDisplayGridStep.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridStep.TabIndex = 28; this.lblDisplayGridStep.Text = "Step:"; // // lblDisplayGridMin // this.lblDisplayGridMin.Image = null; this.lblDisplayGridMin.Location = new System.Drawing.Point(8, 38); this.lblDisplayGridMin.Name = "lblDisplayGridMin"; this.lblDisplayGridMin.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridMin.TabIndex = 27; this.lblDisplayGridMin.Text = "Min:"; // // lblDisplayGridMax // this.lblDisplayGridMax.Image = null; this.lblDisplayGridMax.Location = new System.Drawing.Point(8, 14); this.lblDisplayGridMax.Name = "lblDisplayGridMax"; this.lblDisplayGridMax.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridMax.TabIndex = 26; this.lblDisplayGridMax.Text = "Max:"; // // tpAudio // this.tpAudio.Controls.Add(this.tcAudio); this.tpAudio.Location = new System.Drawing.Point(4, 22); this.tpAudio.Name = "tpAudio"; this.tpAudio.Size = new System.Drawing.Size(584, 331); this.tpAudio.TabIndex = 0; this.tpAudio.Text = "Audio"; // // tcAudio // this.tcAudio.Controls.Add(this.tpAudioCard1); this.tcAudio.Controls.Add(this.tpVAC); this.tcAudio.Controls.Add(this.tabPage1); this.tcAudio.Location = new System.Drawing.Point(0, 0); this.tcAudio.Name = "tcAudio"; this.tcAudio.SelectedIndex = 0; this.tcAudio.Size = new System.Drawing.Size(600, 344); this.tcAudio.TabIndex = 35; // // tpAudioCard1 // this.tpAudioCard1.Controls.Add(this.chkLineMic); this.tpAudioCard1.Controls.Add(this.chkTXIQswap); this.tpAudioCard1.Controls.Add(this.chkRXIQswap); this.tpAudioCard1.Controls.Add(this.chkVACPrimaryAudioDevice); this.tpAudioCard1.Controls.Add(this.grpAudioDetails1); this.tpAudioCard1.Location = new System.Drawing.Point(4, 22); this.tpAudioCard1.Name = "tpAudioCard1"; this.tpAudioCard1.Size = new System.Drawing.Size(592, 318); this.tpAudioCard1.TabIndex = 0; this.tpAudioCard1.Text = "Sound Card"; // // grpAudioDetails1 // this.grpAudioDetails1.Controls.Add(this.lblQSK); this.grpAudioDetails1.Controls.Add(this.chkQSK); this.grpAudioDetails1.Controls.Add(this.grpPrimaryDirectI_Q); this.grpAudioDetails1.Controls.Add(this.labelTS29); this.grpAudioDetails1.Controls.Add(this.btnAudioVoltTest1); this.grpAudioDetails1.Controls.Add(this.udAudioVoltage1); this.grpAudioDetails1.Controls.Add(this.chkAudioMicBoost); this.grpAudioDetails1.Controls.Add(this.labelTS24); this.grpAudioDetails1.Controls.Add(this.lblAudioModel1); this.grpAudioDetails1.Controls.Add(this.labelTS25); this.grpAudioDetails1.Controls.Add(this.labelTS26); this.grpAudioDetails1.Controls.Add(this.udAudioMicGain1); this.grpAudioDetails1.Controls.Add(this.labelTS28); this.grpAudioDetails1.Controls.Add(this.udAudioLineIn1); this.grpAudioDetails1.Controls.Add(this.comboAudioSampleRate1); this.grpAudioDetails1.Controls.Add(this.labelTS27); this.grpAudioDetails1.Controls.Add(this.comboAudioBuffer1); this.grpAudioDetails1.Controls.Add(this.comboAudioSoundCard); this.grpAudioDetails1.Controls.Add(this.grpSampleCorrection); this.grpAudioDetails1.Controls.Add(this.grpAudioChannels); this.grpAudioDetails1.Controls.Add(this.comboAudioTransmit1); this.grpAudioDetails1.Controls.Add(this.lblAudioMixer1); this.grpAudioDetails1.Controls.Add(this.grpAudioLatency1); this.grpAudioDetails1.Controls.Add(this.lblAudioOutput1); this.grpAudioDetails1.Controls.Add(this.comboAudioOutput1); this.grpAudioDetails1.Controls.Add(this.lblAudioInput1); this.grpAudioDetails1.Controls.Add(this.lblAudioDriver1); this.grpAudioDetails1.Controls.Add(this.comboAudioInput1); this.grpAudioDetails1.Controls.Add(this.comboAudioDriver1); this.grpAudioDetails1.Controls.Add(this.comboAudioMixer1); this.grpAudioDetails1.Controls.Add(this.lblAudioTransmit1); this.grpAudioDetails1.Controls.Add(this.lblAudioReceive1); this.grpAudioDetails1.Controls.Add(this.comboAudioReceive1); this.grpAudioDetails1.Location = new System.Drawing.Point(8, 8); this.grpAudioDetails1.Name = "grpAudioDetails1"; this.grpAudioDetails1.Size = new System.Drawing.Size(569, 276); this.grpAudioDetails1.TabIndex = 34; this.grpAudioDetails1.TabStop = false; this.grpAudioDetails1.Text = "Primary Sound Card Setup Details"; // // lblQSK // this.lblQSK.AutoSize = true; this.lblQSK.Image = null; this.lblQSK.Location = new System.Drawing.Point(90, 254); this.lblQSK.Name = "lblQSK"; this.lblQSK.Size = new System.Drawing.Size(29, 13); this.lblQSK.TabIndex = 79; this.lblQSK.Text = "QSK"; // // chkQSK // this.chkQSK.Image = null; this.chkQSK.Location = new System.Drawing.Point(130, 254); this.chkQSK.Name = "chkQSK"; this.chkQSK.Size = new System.Drawing.Size(40, 16); this.chkQSK.TabIndex = 78; this.chkQSK.Text = "On"; this.chkQSK.CheckedChanged += new System.EventHandler(this.chkQSK_CheckedChanged); // // grpPrimaryDirectI_Q // this.grpPrimaryDirectI_Q.Controls.Add(this.udPrimaryGain); this.grpPrimaryDirectI_Q.Controls.Add(this.labelTS30); this.grpPrimaryDirectI_Q.Controls.Add(this.udPrimaryPhase); this.grpPrimaryDirectI_Q.Controls.Add(this.labelTS31); this.grpPrimaryDirectI_Q.Controls.Add(this.tbPrimaryGain); this.grpPrimaryDirectI_Q.Controls.Add(this.chkPrimaryRXshiftEnabled); this.grpPrimaryDirectI_Q.Controls.Add(this.labelTS32); this.grpPrimaryDirectI_Q.Controls.Add(this.udPrimaryRXshift); this.grpPrimaryDirectI_Q.Controls.Add(this.tbPrimaryPhase); this.grpPrimaryDirectI_Q.Controls.Add(this.chkPrimaryI_Qcorrection); this.grpPrimaryDirectI_Q.Controls.Add(this.chkPrimaryDirectI_Q); this.grpPrimaryDirectI_Q.Location = new System.Drawing.Point(199, 170); this.grpPrimaryDirectI_Q.Name = "grpPrimaryDirectI_Q"; this.grpPrimaryDirectI_Q.Size = new System.Drawing.Size(270, 100); this.grpPrimaryDirectI_Q.TabIndex = 77; this.grpPrimaryDirectI_Q.TabStop = false; this.grpPrimaryDirectI_Q.Text = "Direct I/Q output"; // // labelTS30 // this.labelTS30.Image = null; this.labelTS30.Location = new System.Drawing.Point(131, 55); this.labelTS30.Name = "labelTS30"; this.labelTS30.Size = new System.Drawing.Size(48, 16); this.labelTS30.TabIndex = 49; this.labelTS30.Text = "Gain:"; // // labelTS31 // this.labelTS31.Image = null; this.labelTS31.Location = new System.Drawing.Point(131, 12); this.labelTS31.Name = "labelTS31"; this.labelTS31.Size = new System.Drawing.Size(48, 16); this.labelTS31.TabIndex = 47; this.labelTS31.Text = "Phase:"; // // labelTS32 // this.labelTS32.Image = null; this.labelTS32.Location = new System.Drawing.Point(11, 78); this.labelTS32.Name = "labelTS32"; this.labelTS32.Size = new System.Drawing.Size(47, 16); this.labelTS32.TabIndex = 45; this.labelTS32.Text = "RX shift"; // // labelTS29 // this.labelTS29.AutoSize = true; this.labelTS29.Image = null; this.labelTS29.Location = new System.Drawing.Point(267, 126); this.labelTS29.Name = "labelTS29"; this.labelTS29.Size = new System.Drawing.Size(108, 13); this.labelTS29.TabIndex = 57; this.labelTS29.Text = "Audio Output Voltage"; // // chkAudioMicBoost // this.chkAudioMicBoost.Image = null; this.chkAudioMicBoost.Location = new System.Drawing.Point(350, 107); this.chkAudioMicBoost.Name = "chkAudioMicBoost"; this.chkAudioMicBoost.Size = new System.Drawing.Size(40, 16); this.chkAudioMicBoost.TabIndex = 6; this.chkAudioMicBoost.Text = "On"; this.chkAudioMicBoost.CheckedChanged += new System.EventHandler(this.chkAudioMicBoost_CheckedChanged); // // labelTS24 // this.labelTS24.AutoSize = true; this.labelTS24.Image = null; this.labelTS24.Location = new System.Drawing.Point(232, 108); this.labelTS24.Name = "labelTS24"; this.labelTS24.Size = new System.Drawing.Size(54, 13); this.labelTS24.TabIndex = 20; this.labelTS24.Text = "Mic Boost"; // // lblAudioModel1 // this.lblAudioModel1.Image = null; this.lblAudioModel1.Location = new System.Drawing.Point(6, 35); this.lblAudioModel1.Name = "lblAudioModel1"; this.lblAudioModel1.Size = new System.Drawing.Size(48, 16); this.lblAudioModel1.TabIndex = 56; this.lblAudioModel1.Text = "Model:"; // // labelTS25 // this.labelTS25.AutoSize = true; this.labelTS25.Image = null; this.labelTS25.Location = new System.Drawing.Point(232, 86); this.labelTS25.Name = "labelTS25"; this.labelTS25.Size = new System.Drawing.Size(49, 13); this.labelTS25.TabIndex = 52; this.labelTS25.Text = "Mic Gain"; // // labelTS26 // this.labelTS26.AutoSize = true; this.labelTS26.Image = null; this.labelTS26.Location = new System.Drawing.Point(232, 64); this.labelTS26.Name = "labelTS26"; this.labelTS26.Size = new System.Drawing.Size(64, 13); this.labelTS26.TabIndex = 53; this.labelTS26.Text = "Line In Gain"; // // labelTS28 // this.labelTS28.AutoSize = true; this.labelTS28.Image = null; this.labelTS28.Location = new System.Drawing.Point(232, 41); this.labelTS28.Name = "labelTS28"; this.labelTS28.Size = new System.Drawing.Size(68, 13); this.labelTS28.TabIndex = 55; this.labelTS28.Text = "Sample Rate"; // // labelTS27 // this.labelTS27.AutoSize = true; this.labelTS27.Image = null; this.labelTS27.Location = new System.Drawing.Point(232, 17); this.labelTS27.Name = "labelTS27"; this.labelTS27.Size = new System.Drawing.Size(58, 13); this.labelTS27.TabIndex = 54; this.labelTS27.Text = "Buffer Size"; // // grpSampleCorrection // this.grpSampleCorrection.Controls.Add(this.udIQCorrection); this.grpSampleCorrection.Location = new System.Drawing.Point(471, 136); this.grpSampleCorrection.Name = "grpSampleCorrection"; this.grpSampleCorrection.Size = new System.Drawing.Size(92, 50); this.grpSampleCorrection.TabIndex = 49; this.grpSampleCorrection.TabStop = false; this.grpSampleCorrection.Text = "IQ correction"; // // grpAudioChannels // this.grpAudioChannels.Controls.Add(this.groupBoxTS7); this.grpAudioChannels.Controls.Add(this.chkAudioExclusive); this.grpAudioChannels.Controls.Add(this.groupBoxTS6); this.grpAudioChannels.Controls.Add(this.comboAudioChannels1); this.grpAudioChannels.Location = new System.Drawing.Point(419, 8); this.grpAudioChannels.Name = "grpAudioChannels"; this.grpAudioChannels.Size = new System.Drawing.Size(144, 126); this.grpAudioChannels.TabIndex = 42; this.grpAudioChannels.TabStop = false; this.grpAudioChannels.Text = "Channels"; // // groupBoxTS7 // this.groupBoxTS7.Controls.Add(this.rad3_4TXOut); this.groupBoxTS7.Controls.Add(this.rad1_2TXOut); this.groupBoxTS7.Location = new System.Drawing.Point(72, 36); this.groupBoxTS7.Name = "groupBoxTS7"; this.groupBoxTS7.Size = new System.Drawing.Size(68, 67); this.groupBoxTS7.TabIndex = 4; this.groupBoxTS7.TabStop = false; this.groupBoxTS7.Text = "TX"; // // groupBoxTS6 // this.groupBoxTS6.Controls.Add(this.rad1_2RXIn); this.groupBoxTS6.Controls.Add(this.rad3_4RXIn); this.groupBoxTS6.Location = new System.Drawing.Point(6, 36); this.groupBoxTS6.Name = "groupBoxTS6"; this.groupBoxTS6.Size = new System.Drawing.Size(62, 67); this.groupBoxTS6.TabIndex = 3; this.groupBoxTS6.TabStop = false; this.groupBoxTS6.Text = "RX"; // // lblAudioMixer1 // this.lblAudioMixer1.Image = null; this.lblAudioMixer1.Location = new System.Drawing.Point(4, 159); this.lblAudioMixer1.Name = "lblAudioMixer1"; this.lblAudioMixer1.Size = new System.Drawing.Size(48, 20); this.lblAudioMixer1.TabIndex = 22; this.lblAudioMixer1.Text = "Mixer:"; // // grpAudioLatency1 // this.grpAudioLatency1.Controls.Add(this.chkAudioLatencyManual1); this.grpAudioLatency1.Controls.Add(this.udAudioLatency1); this.grpAudioLatency1.Location = new System.Drawing.Point(471, 190); this.grpAudioLatency1.Name = "grpAudioLatency1"; this.grpAudioLatency1.Size = new System.Drawing.Size(92, 80); this.grpAudioLatency1.TabIndex = 38; this.grpAudioLatency1.TabStop = false; this.grpAudioLatency1.Text = "Latency (ms)"; // // chkAudioLatencyManual1 // this.chkAudioLatencyManual1.Image = null; this.chkAudioLatencyManual1.Location = new System.Drawing.Point(16, 24); this.chkAudioLatencyManual1.Name = "chkAudioLatencyManual1"; this.chkAudioLatencyManual1.Size = new System.Drawing.Size(64, 16); this.chkAudioLatencyManual1.TabIndex = 5; this.chkAudioLatencyManual1.Text = "Manual"; this.chkAudioLatencyManual1.CheckedChanged += new System.EventHandler(this.chkAudioLatencyManual1_CheckedChanged); // // lblAudioOutput1 // this.lblAudioOutput1.Image = null; this.lblAudioOutput1.Location = new System.Drawing.Point(4, 128); this.lblAudioOutput1.Name = "lblAudioOutput1"; this.lblAudioOutput1.Size = new System.Drawing.Size(48, 16); this.lblAudioOutput1.TabIndex = 6; this.lblAudioOutput1.Text = "Output:"; // // lblAudioInput1 // this.lblAudioInput1.Image = null; this.lblAudioInput1.Location = new System.Drawing.Point(4, 97); this.lblAudioInput1.Name = "lblAudioInput1"; this.lblAudioInput1.Size = new System.Drawing.Size(48, 16); this.lblAudioInput1.TabIndex = 4; this.lblAudioInput1.Text = "Input:"; // // lblAudioDriver1 // this.lblAudioDriver1.Image = null; this.lblAudioDriver1.Location = new System.Drawing.Point(4, 66); this.lblAudioDriver1.Name = "lblAudioDriver1"; this.lblAudioDriver1.Size = new System.Drawing.Size(48, 16); this.lblAudioDriver1.TabIndex = 3; this.lblAudioDriver1.Text = "Driver:"; // // lblAudioTransmit1 // this.lblAudioTransmit1.Image = null; this.lblAudioTransmit1.Location = new System.Drawing.Point(4, 225); this.lblAudioTransmit1.Name = "lblAudioTransmit1"; this.lblAudioTransmit1.Size = new System.Drawing.Size(56, 16); this.lblAudioTransmit1.TabIndex = 3; this.lblAudioTransmit1.Text = "Transmit:"; // // lblAudioReceive1 // this.lblAudioReceive1.Image = null; this.lblAudioReceive1.Location = new System.Drawing.Point(4, 194); this.lblAudioReceive1.Name = "lblAudioReceive1"; this.lblAudioReceive1.Size = new System.Drawing.Size(48, 16); this.lblAudioReceive1.TabIndex = 1; this.lblAudioReceive1.Text = "Receive:"; // // tpVAC // this.tpVAC.Controls.Add(this.grpVACDirectIQ); this.tpVAC.Controls.Add(this.grpLoopDll); this.tpVAC.Controls.Add(this.grpAudioVACAutoEnable); this.tpVAC.Controls.Add(this.grpAudioVAC); this.tpVAC.Controls.Add(this.grpAudioDetailsVAC); this.tpVAC.Controls.Add(this.chkAudioEnableVAC); this.tpVAC.Location = new System.Drawing.Point(4, 22); this.tpVAC.Name = "tpVAC"; this.tpVAC.Size = new System.Drawing.Size(592, 318); this.tpVAC.TabIndex = 1; this.tpVAC.Text = "VAC"; // // grpVACDirectIQ // this.grpVACDirectIQ.Controls.Add(this.udVACGain); this.grpVACDirectIQ.Controls.Add(this.labelTS20); this.grpVACDirectIQ.Controls.Add(this.udVACPhase); this.grpVACDirectIQ.Controls.Add(this.labelTS22); this.grpVACDirectIQ.Controls.Add(this.tbVACGain); this.grpVACDirectIQ.Controls.Add(this.chkVACRXShiftEnable); this.grpVACDirectIQ.Controls.Add(this.lblRXShift); this.grpVACDirectIQ.Controls.Add(this.udRXShift); this.grpVACDirectIQ.Controls.Add(this.tbVACPhase); this.grpVACDirectIQ.Controls.Add(this.chkVACCorrection); this.grpVACDirectIQ.Controls.Add(this.chkVACDirectI_Q); this.grpVACDirectIQ.Location = new System.Drawing.Point(296, 183); this.grpVACDirectIQ.Name = "grpVACDirectIQ"; this.grpVACDirectIQ.Size = new System.Drawing.Size(270, 115); this.grpVACDirectIQ.TabIndex = 76; this.grpVACDirectIQ.TabStop = false; this.grpVACDirectIQ.Text = "Direct I/Q output"; // // labelTS20 // this.labelTS20.Image = null; this.labelTS20.Location = new System.Drawing.Point(128, 61); this.labelTS20.Name = "labelTS20"; this.labelTS20.Size = new System.Drawing.Size(48, 16); this.labelTS20.TabIndex = 49; this.labelTS20.Text = "Gain:"; // // labelTS22 // this.labelTS22.Image = null; this.labelTS22.Location = new System.Drawing.Point(128, 18); this.labelTS22.Name = "labelTS22"; this.labelTS22.Size = new System.Drawing.Size(48, 16); this.labelTS22.TabIndex = 47; this.labelTS22.Text = "Phase:"; // // lblRXShift // this.lblRXShift.Image = null; this.lblRXShift.Location = new System.Drawing.Point(11, 89); this.lblRXShift.Name = "lblRXShift"; this.lblRXShift.Size = new System.Drawing.Size(47, 16); this.lblRXShift.TabIndex = 45; this.lblRXShift.Text = "RX shift"; // // grpLoopDll // this.grpLoopDll.Controls.Add(this.txtLoopDll); this.grpLoopDll.Location = new System.Drawing.Point(27, 229); this.grpLoopDll.Name = "grpLoopDll"; this.grpLoopDll.Size = new System.Drawing.Size(263, 48); this.grpLoopDll.TabIndex = 75; this.grpLoopDll.TabStop = false; this.grpLoopDll.Text = "Loop DLL"; // // grpAudioVACAutoEnable // this.grpAudioVACAutoEnable.Controls.Add(this.chkAudioVACAutoEnable); this.grpAudioVACAutoEnable.Location = new System.Drawing.Point(27, 159); this.grpAudioVACAutoEnable.Name = "grpAudioVACAutoEnable"; this.grpAudioVACAutoEnable.Size = new System.Drawing.Size(263, 64); this.grpAudioVACAutoEnable.TabIndex = 74; this.grpAudioVACAutoEnable.TabStop = false; this.grpAudioVACAutoEnable.Text = "Auto Enable"; // // grpAudioVAC // this.grpAudioVAC.Controls.Add(this.radVACMuteNone); this.grpAudioVAC.Controls.Add(this.radVACMuteBoth); this.grpAudioVAC.Controls.Add(this.radVACMuteRight); this.grpAudioVAC.Controls.Add(this.radVACMuteLeft); this.grpAudioVAC.Controls.Add(this.chkLargeRBBuffer); this.grpAudioVAC.Controls.Add(this.chkVACExclusive); this.grpAudioVAC.Controls.Add(this.labelTS19); this.grpAudioVAC.Controls.Add(this.grpAudioLatencyVAC); this.grpAudioVAC.Controls.Add(this.labelTS18); this.grpAudioVAC.Controls.Add(this.chkCWMonitorVAC); this.grpAudioVAC.Controls.Add(this.grpAudioVACGain); this.grpAudioVAC.Controls.Add(this.comboAudioSampleRateVAC); this.grpAudioVAC.Controls.Add(this.comboAudioBufferVAC); this.grpAudioVAC.Location = new System.Drawing.Point(296, 3); this.grpAudioVAC.Name = "grpAudioVAC"; this.grpAudioVAC.Size = new System.Drawing.Size(270, 180); this.grpAudioVAC.TabIndex = 65; this.grpAudioVAC.TabStop = false; this.grpAudioVAC.Text = "Settings"; // // labelTS19 // this.labelTS19.AutoSize = true; this.labelTS19.Image = null; this.labelTS19.Location = new System.Drawing.Point(6, 51); this.labelTS19.Name = "labelTS19"; this.labelTS19.Size = new System.Drawing.Size(63, 13); this.labelTS19.TabIndex = 62; this.labelTS19.Text = "Sample rate"; // // grpAudioLatencyVAC // this.grpAudioLatencyVAC.Controls.Add(this.chkAudioLatencyManualVAC); this.grpAudioLatencyVAC.Controls.Add(this.udAudioLatencyVAC); this.grpAudioLatencyVAC.Location = new System.Drawing.Point(168, 77); this.grpAudioLatencyVAC.Name = "grpAudioLatencyVAC"; this.grpAudioLatencyVAC.Size = new System.Drawing.Size(96, 65); this.grpAudioLatencyVAC.TabIndex = 67; this.grpAudioLatencyVAC.TabStop = false; this.grpAudioLatencyVAC.Text = "Latency (ms)"; // // chkAudioLatencyManualVAC // this.chkAudioLatencyManualVAC.Image = null; this.chkAudioLatencyManualVAC.Location = new System.Drawing.Point(16, 16); this.chkAudioLatencyManualVAC.Name = "chkAudioLatencyManualVAC"; this.chkAudioLatencyManualVAC.Size = new System.Drawing.Size(64, 16); this.chkAudioLatencyManualVAC.TabIndex = 5; this.chkAudioLatencyManualVAC.Text = "Manual"; this.chkAudioLatencyManualVAC.CheckedChanged += new System.EventHandler(this.chkAudioLatencyManual2_CheckedChanged); // // labelTS18 // this.labelTS18.AutoSize = true; this.labelTS18.Image = null; this.labelTS18.Location = new System.Drawing.Point(6, 22); this.labelTS18.Name = "labelTS18"; this.labelTS18.Size = new System.Drawing.Size(56, 13); this.labelTS18.TabIndex = 61; this.labelTS18.Text = "Buffer size"; // // grpAudioVACGain // this.grpAudioVACGain.Controls.Add(this.lblAudioVACGainTX); this.grpAudioVACGain.Controls.Add(this.udAudioVACGainTX); this.grpAudioVACGain.Controls.Add(this.lblAudioVACGainRX); this.grpAudioVACGain.Controls.Add(this.udAudioVACGainRX); this.grpAudioVACGain.Location = new System.Drawing.Point(168, 7); this.grpAudioVACGain.Name = "grpAudioVACGain"; this.grpAudioVACGain.Size = new System.Drawing.Size(96, 70); this.grpAudioVACGain.TabIndex = 72; this.grpAudioVACGain.TabStop = false; this.grpAudioVACGain.Text = "Gain (dB)"; // // lblAudioVACGainTX // this.lblAudioVACGainTX.Image = null; this.lblAudioVACGainTX.Location = new System.Drawing.Point(16, 42); this.lblAudioVACGainTX.Name = "lblAudioVACGainTX"; this.lblAudioVACGainTX.Size = new System.Drawing.Size(32, 16); this.lblAudioVACGainTX.TabIndex = 39; this.lblAudioVACGainTX.Text = "TX:"; // // lblAudioVACGainRX // this.lblAudioVACGainRX.Image = null; this.lblAudioVACGainRX.Location = new System.Drawing.Point(16, 18); this.lblAudioVACGainRX.Name = "lblAudioVACGainRX"; this.lblAudioVACGainRX.Size = new System.Drawing.Size(24, 16); this.lblAudioVACGainRX.TabIndex = 37; this.lblAudioVACGainRX.Text = "RX:"; // // grpAudioDetailsVAC // this.grpAudioDetailsVAC.Controls.Add(this.lblVACchNumber); this.grpAudioDetailsVAC.Controls.Add(this.udVACchNumber); this.grpAudioDetailsVAC.Controls.Add(this.lblAudioOutputVAC); this.grpAudioDetailsVAC.Controls.Add(this.comboAudioOutputVAC); this.grpAudioDetailsVAC.Controls.Add(this.lblAudioInputVAC); this.grpAudioDetailsVAC.Controls.Add(this.lblAudioDriverVAC); this.grpAudioDetailsVAC.Controls.Add(this.comboAudioInputVAC); this.grpAudioDetailsVAC.Controls.Add(this.comboAudioDriverVAC); this.grpAudioDetailsVAC.Location = new System.Drawing.Point(27, 35); this.grpAudioDetailsVAC.Name = "grpAudioDetailsVAC"; this.grpAudioDetailsVAC.Size = new System.Drawing.Size(263, 120); this.grpAudioDetailsVAC.TabIndex = 35; this.grpAudioDetailsVAC.TabStop = false; this.grpAudioDetailsVAC.Text = "Virtual Audio Cable Setup"; // // lblVACchNumber // this.lblVACchNumber.Image = null; this.lblVACchNumber.Location = new System.Drawing.Point(204, 36); this.lblVACchNumber.Name = "lblVACchNumber"; this.lblVACchNumber.Size = new System.Drawing.Size(54, 16); this.lblVACchNumber.TabIndex = 38; this.lblVACchNumber.Text = "Channels"; // // lblAudioOutputVAC // this.lblAudioOutputVAC.Image = null; this.lblAudioOutputVAC.Location = new System.Drawing.Point(5, 90); this.lblAudioOutputVAC.Name = "lblAudioOutputVAC"; this.lblAudioOutputVAC.Size = new System.Drawing.Size(43, 16); this.lblAudioOutputVAC.TabIndex = 35; this.lblAudioOutputVAC.Text = "Output:"; // // lblAudioInputVAC // this.lblAudioInputVAC.Image = null; this.lblAudioInputVAC.Location = new System.Drawing.Point(8, 58); this.lblAudioInputVAC.Name = "lblAudioInputVAC"; this.lblAudioInputVAC.Size = new System.Drawing.Size(40, 16); this.lblAudioInputVAC.TabIndex = 33; this.lblAudioInputVAC.Text = "Input:"; // // lblAudioDriverVAC // this.lblAudioDriverVAC.Image = null; this.lblAudioDriverVAC.Location = new System.Drawing.Point(8, 25); this.lblAudioDriverVAC.Name = "lblAudioDriverVAC"; this.lblAudioDriverVAC.Size = new System.Drawing.Size(40, 16); this.lblAudioDriverVAC.TabIndex = 32; this.lblAudioDriverVAC.Text = "Driver:"; // // tabPage1 // this.tabPage1.BackColor = System.Drawing.SystemColors.Control; this.tabPage1.Controls.Add(this.labelTS11); this.tabPage1.Location = new System.Drawing.Point(4, 22); this.tabPage1.Name = "tabPage1"; this.tabPage1.Padding = new System.Windows.Forms.Padding(3); this.tabPage1.Size = new System.Drawing.Size(592, 318); this.tabPage1.TabIndex = 2; this.tabPage1.Text = "Digital VAC"; // // labelTS11 // this.labelTS11.AutoSize = true; this.labelTS11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.labelTS11.Image = null; this.labelTS11.Location = new System.Drawing.Point(161, 147); this.labelTS11.Name = "labelTS11"; this.labelTS11.Size = new System.Drawing.Size(270, 24); this.labelTS11.TabIndex = 0; this.labelTS11.Text = "This page is intentionally blank."; // // tpGeneral // this.tpGeneral.Controls.Add(this.tcGeneral); this.tpGeneral.Location = new System.Drawing.Point(4, 22); this.tpGeneral.Name = "tpGeneral"; this.tpGeneral.Size = new System.Drawing.Size(584, 331); this.tpGeneral.TabIndex = 3; this.tpGeneral.Text = "General"; // // tcGeneral // this.tcGeneral.Controls.Add(this.tpGeneralHardware); this.tcGeneral.Controls.Add(this.tpGeneralOptions); this.tcGeneral.Controls.Add(this.tpGeneralCalibration); this.tcGeneral.Controls.Add(this.tpFilters); this.tcGeneral.Controls.Add(this.tpGenesisOption); this.tcGeneral.Location = new System.Drawing.Point(0, 0); this.tcGeneral.Name = "tcGeneral"; this.tcGeneral.SelectedIndex = 0; this.tcGeneral.Size = new System.Drawing.Size(600, 344); this.tcGeneral.TabIndex = 0; // // tpGeneralHardware // this.tpGeneralHardware.Controls.Add(this.grpG6); this.tpGeneralHardware.Controls.Add(this.grpG11); this.tpGeneralHardware.Controls.Add(this.grpG59); this.tpGeneralHardware.Controls.Add(this.grpRTL_SDR); this.tpGeneralHardware.Controls.Add(this.grpQRP2000); this.tpGeneralHardware.Controls.Add(this.grpGeneralModel); this.tpGeneralHardware.Controls.Add(this.grpGeneralHardwareSetup); this.tpGeneralHardware.Controls.Add(this.grpNETBox); this.tpGeneralHardware.Controls.Add(this.grpGenesis80); this.tpGeneralHardware.Controls.Add(this.grpGenesis160); this.tpGeneralHardware.Controls.Add(this.grpGenesis137); this.tpGeneralHardware.Controls.Add(this.grpGenesis500); this.tpGeneralHardware.Controls.Add(this.grpGenesis40); this.tpGeneralHardware.Controls.Add(this.grpGenesis3020); this.tpGeneralHardware.Location = new System.Drawing.Point(4, 22); this.tpGeneralHardware.Name = "tpGeneralHardware"; this.tpGeneralHardware.Size = new System.Drawing.Size(592, 318); this.tpGeneralHardware.TabIndex = 0; this.tpGeneralHardware.Text = "Hardware Config"; // // grpG6 // this.grpG6.Controls.Add(this.labelTS75); this.grpG6.Controls.Add(this.labelTS76); this.grpG6.Controls.Add(this.udG6ExtPAoffTime); this.grpG6.Controls.Add(this.chkG6ExtPA); this.grpG6.Controls.Add(this.udG6ExtPAonTime); this.grpG6.Controls.Add(this.labelTS77); this.grpG6.Controls.Add(this.chkG6ExtPAinv); this.grpG6.Controls.Add(this.checkBoxTS4); this.grpG6.Controls.Add(this.chkG6TXDACmute); this.grpG6.Controls.Add(this.chkG6SendAudio); this.grpG6.Controls.Add(this.chkG6RX2input); this.grpG6.Location = new System.Drawing.Point(184, 8); this.grpG6.Name = "grpG6"; this.grpG6.Size = new System.Drawing.Size(198, 292); this.grpG6.TabIndex = 35; this.grpG6.TabStop = false; this.grpG6.Text = "G6"; // // labelTS75 // this.labelTS75.AutoSize = true; this.labelTS75.Image = null; this.labelTS75.Location = new System.Drawing.Point(45, 165); this.labelTS75.Name = "labelTS75"; this.labelTS75.Size = new System.Drawing.Size(27, 13); this.labelTS75.TabIndex = 39; this.labelTS75.Text = "OFF"; // // labelTS76 // this.labelTS76.AutoSize = true; this.labelTS76.Image = null; this.labelTS76.Location = new System.Drawing.Point(45, 143); this.labelTS76.Name = "labelTS76"; this.labelTS76.Size = new System.Drawing.Size(23, 13); this.labelTS76.TabIndex = 38; this.labelTS76.Text = "ON"; // // labelTS77 // this.labelTS77.AutoSize = true; this.labelTS77.Image = null; this.labelTS77.Location = new System.Drawing.Point(37, 123); this.labelTS77.Name = "labelTS77"; this.labelTS77.Size = new System.Drawing.Size(117, 13); this.labelTS77.TabIndex = 34; this.labelTS77.Text = "External PA PTT delay:"; // // checkBoxTS4 // this.checkBoxTS4.AutoSize = true; this.checkBoxTS4.Image = null; this.checkBoxTS4.Location = new System.Drawing.Point(36, 206); this.checkBoxTS4.Name = "checkBoxTS4"; this.checkBoxTS4.Size = new System.Drawing.Size(107, 17); this.checkBoxTS4.TabIndex = 32; this.checkBoxTS4.Text = "Second RX input"; this.checkBoxTS4.UseVisualStyleBackColor = true; // // chkG6RX2input // this.chkG6RX2input.AutoSize = true; this.chkG6RX2input.Image = null; this.chkG6RX2input.Location = new System.Drawing.Point(36, 29); this.chkG6RX2input.Name = "chkG6RX2input"; this.chkG6RX2input.Size = new System.Drawing.Size(73, 17); this.chkG6RX2input.TabIndex = 0; this.chkG6RX2input.Text = "RX2 input"; this.chkG6RX2input.UseVisualStyleBackColor = true; this.chkG6RX2input.CheckedChanged += new System.EventHandler(this.chkG6RX2input_CheckedChanged); // // grpG11 // this.grpG11.Controls.Add(this.grpG11Filters); this.grpG11.Controls.Add(this.udG11extPAOFF); this.grpG11.Controls.Add(this.labelTS73); this.grpG11.Controls.Add(this.labelTS74); this.grpG11.Controls.Add(this.udG11extPAON); this.grpG11.Controls.Add(this.lblG11extPApttDelay); this.grpG11.Controls.Add(this.chkG11extPAinverted); this.grpG11.Controls.Add(this.chkG11ExtPA); this.grpG11.Controls.Add(this.btnG11FiltersShow); this.grpG11.Controls.Add(this.chkG11MicPreamp); this.grpG11.Controls.Add(this.chkG11RX2); this.grpG11.Controls.Add(this.grpG11XTRV); this.grpG11.Controls.Add(this.chkG11MultiBand); this.grpG11.Location = new System.Drawing.Point(184, 8); this.grpG11.Name = "grpG11"; this.grpG11.Size = new System.Drawing.Size(198, 300); this.grpG11.TabIndex = 35; this.grpG11.TabStop = false; this.grpG11.Text = "G11"; // // grpG11Filters // this.grpG11Filters.BackColor = System.Drawing.SystemColors.Control; this.grpG11Filters.Controls.Add(this.chkG11B4030_CH2); this.grpG11Filters.Controls.Add(this.chkG11B4030_CH1); this.grpG11Filters.Controls.Add(this.labelTS49); this.grpG11Filters.Controls.Add(this.chkG11B6_CH2); this.grpG11Filters.Controls.Add(this.chkG11B6_CH1); this.grpG11Filters.Controls.Add(this.labelTS48); this.grpG11Filters.Controls.Add(this.chkG11B2190_CH1); this.grpG11Filters.Controls.Add(this.labelTS45); this.grpG11Filters.Controls.Add(this.chkG11B151210_CH2); this.grpG11Filters.Controls.Add(this.chkG11B1210_CH2); this.grpG11Filters.Controls.Add(this.chkG11B201715_CH2); this.grpG11Filters.Controls.Add(this.chkG11B1715_CH2); this.grpG11Filters.Controls.Add(this.chkG11B2017_CH2); this.grpG11Filters.Controls.Add(this.chkG11B3020_CH2); this.grpG11Filters.Controls.Add(this.chkG11B6040_CH2); this.grpG11Filters.Controls.Add(this.chkG11B80_CH2); this.grpG11Filters.Controls.Add(this.chkG11B160_CH2); this.grpG11Filters.Controls.Add(this.chkG11B600_CH1); this.grpG11Filters.Controls.Add(this.chkG11B151210_CH1); this.grpG11Filters.Controls.Add(this.chkG11B1210_CH1); this.grpG11Filters.Controls.Add(this.chkG11B201715_CH1); this.grpG11Filters.Controls.Add(this.chkG11B1715_CH1); this.grpG11Filters.Controls.Add(this.chkG11B2017_CH1); this.grpG11Filters.Controls.Add(this.chkG11B3020_CH1); this.grpG11Filters.Controls.Add(this.chkG11B6040_CH1); this.grpG11Filters.Controls.Add(this.chkG11B80_CH1); this.grpG11Filters.Controls.Add(this.labelTS43); this.grpG11Filters.Controls.Add(this.labelTS44); this.grpG11Filters.Controls.Add(this.labelTS39); this.grpG11Filters.Controls.Add(this.labelTS40); this.grpG11Filters.Controls.Add(this.labelTS41); this.grpG11Filters.Controls.Add(this.labelTS42); this.grpG11Filters.Controls.Add(this.labelTS37); this.grpG11Filters.Controls.Add(this.labelTS38); this.grpG11Filters.Controls.Add(this.labelTS36); this.grpG11Filters.Controls.Add(this.labelTS35); this.grpG11Filters.Controls.Add(this.labelTS34); this.grpG11Filters.Controls.Add(this.labelTS33); this.grpG11Filters.Location = new System.Drawing.Point(11, 11); this.grpG11Filters.Name = "grpG11Filters"; this.grpG11Filters.Size = new System.Drawing.Size(177, 261); this.grpG11Filters.TabIndex = 10; this.grpG11Filters.TabStop = false; this.grpG11Filters.Text = "Band filters"; this.grpG11Filters.Visible = false; // // chkG11B4030_CH2 // this.chkG11B4030_CH2.AutoSize = true; this.chkG11B4030_CH2.Image = null; this.chkG11B4030_CH2.Location = new System.Drawing.Point(136, 80); this.chkG11B4030_CH2.Name = "chkG11B4030_CH2"; this.chkG11B4030_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B4030_CH2.TabIndex = 38; this.chkG11B4030_CH2.UseVisualStyleBackColor = true; this.chkG11B4030_CH2.CheckedChanged += new System.EventHandler(this.chkG11B4030_CH2_CheckedChanged); // // chkG11B4030_CH1 // this.chkG11B4030_CH1.AutoSize = true; this.chkG11B4030_CH1.Image = null; this.chkG11B4030_CH1.Location = new System.Drawing.Point(103, 80); this.chkG11B4030_CH1.Name = "chkG11B4030_CH1"; this.chkG11B4030_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B4030_CH1.TabIndex = 37; this.chkG11B4030_CH1.UseVisualStyleBackColor = true; this.chkG11B4030_CH1.CheckedChanged += new System.EventHandler(this.chkG11B4030_CH1_CheckedChanged); // // labelTS49 // this.labelTS49.AutoSize = true; this.labelTS49.Image = null; this.labelTS49.Location = new System.Drawing.Point(11, 80); this.labelTS49.Name = "labelTS49"; this.labelTS49.Size = new System.Drawing.Size(42, 13); this.labelTS49.TabIndex = 36; this.labelTS49.Text = "40-30m"; // // chkG11B6_CH2 // this.chkG11B6_CH2.AutoSize = true; this.chkG11B6_CH2.Image = null; this.chkG11B6_CH2.Location = new System.Drawing.Point(136, 206); this.chkG11B6_CH2.Name = "chkG11B6_CH2"; this.chkG11B6_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B6_CH2.TabIndex = 35; this.chkG11B6_CH2.UseVisualStyleBackColor = true; this.chkG11B6_CH2.CheckedChanged += new System.EventHandler(this.chkG11B6_CH2_CheckedChanged); // // chkG11B6_CH1 // this.chkG11B6_CH1.AutoSize = true; this.chkG11B6_CH1.Image = null; this.chkG11B6_CH1.Location = new System.Drawing.Point(103, 206); this.chkG11B6_CH1.Name = "chkG11B6_CH1"; this.chkG11B6_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B6_CH1.TabIndex = 34; this.chkG11B6_CH1.UseVisualStyleBackColor = true; this.chkG11B6_CH1.CheckedChanged += new System.EventHandler(this.chkG11B6_CH1_CheckedChanged); // // labelTS48 // this.labelTS48.AutoSize = true; this.labelTS48.Image = null; this.labelTS48.Location = new System.Drawing.Point(11, 206); this.labelTS48.Name = "labelTS48"; this.labelTS48.Size = new System.Drawing.Size(21, 13); this.labelTS48.TabIndex = 33; this.labelTS48.Text = "6m"; // // chkG11B2190_CH1 // this.chkG11B2190_CH1.AutoSize = true; this.chkG11B2190_CH1.Image = null; this.chkG11B2190_CH1.Location = new System.Drawing.Point(103, 242); this.chkG11B2190_CH1.Name = "chkG11B2190_CH1"; this.chkG11B2190_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B2190_CH1.TabIndex = 32; this.chkG11B2190_CH1.UseVisualStyleBackColor = true; this.chkG11B2190_CH1.CheckedChanged += new System.EventHandler(this.chkG11B2190_CH1_CheckedChanged); // // labelTS45 // this.labelTS45.AutoSize = true; this.labelTS45.Image = null; this.labelTS45.Location = new System.Drawing.Point(11, 242); this.labelTS45.Name = "labelTS45"; this.labelTS45.Size = new System.Drawing.Size(83, 13); this.labelTS45.TabIndex = 31; this.labelTS45.Text = "2190m(137KHz)"; // // chkG11B151210_CH2 // this.chkG11B151210_CH2.AutoSize = true; this.chkG11B151210_CH2.Image = null; this.chkG11B151210_CH2.Location = new System.Drawing.Point(136, 188); this.chkG11B151210_CH2.Name = "chkG11B151210_CH2"; this.chkG11B151210_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B151210_CH2.TabIndex = 30; this.chkG11B151210_CH2.UseVisualStyleBackColor = true; this.chkG11B151210_CH2.CheckedChanged += new System.EventHandler(this.chkG11B151210_CH2_CheckedChanged); // // chkG11B1210_CH2 // this.chkG11B1210_CH2.AutoSize = true; this.chkG11B1210_CH2.Image = null; this.chkG11B1210_CH2.Location = new System.Drawing.Point(136, 170); this.chkG11B1210_CH2.Name = "chkG11B1210_CH2"; this.chkG11B1210_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B1210_CH2.TabIndex = 29; this.chkG11B1210_CH2.UseVisualStyleBackColor = true; this.chkG11B1210_CH2.CheckedChanged += new System.EventHandler(this.chkG11B1210_CH2_CheckedChanged); // // chkG11B201715_CH2 // this.chkG11B201715_CH2.AutoSize = true; this.chkG11B201715_CH2.Image = null; this.chkG11B201715_CH2.Location = new System.Drawing.Point(136, 152); this.chkG11B201715_CH2.Name = "chkG11B201715_CH2"; this.chkG11B201715_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B201715_CH2.TabIndex = 28; this.chkG11B201715_CH2.UseVisualStyleBackColor = true; this.chkG11B201715_CH2.CheckedChanged += new System.EventHandler(this.chkG11B201715_CH2_CheckedChanged); // // chkG11B1715_CH2 // this.chkG11B1715_CH2.AutoSize = true; this.chkG11B1715_CH2.Image = null; this.chkG11B1715_CH2.Location = new System.Drawing.Point(136, 134); this.chkG11B1715_CH2.Name = "chkG11B1715_CH2"; this.chkG11B1715_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B1715_CH2.TabIndex = 27; this.chkG11B1715_CH2.UseVisualStyleBackColor = true; this.chkG11B1715_CH2.CheckedChanged += new System.EventHandler(this.chkG11B1715_CH2_CheckedChanged); // // chkG11B2017_CH2 // this.chkG11B2017_CH2.AutoSize = true; this.chkG11B2017_CH2.Image = null; this.chkG11B2017_CH2.Location = new System.Drawing.Point(136, 116); this.chkG11B2017_CH2.Name = "chkG11B2017_CH2"; this.chkG11B2017_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B2017_CH2.TabIndex = 26; this.chkG11B2017_CH2.UseVisualStyleBackColor = true; this.chkG11B2017_CH2.CheckedChanged += new System.EventHandler(this.chkG11B2017_CH2_CheckedChanged); // // chkG11B3020_CH2 // this.chkG11B3020_CH2.AutoSize = true; this.chkG11B3020_CH2.Image = null; this.chkG11B3020_CH2.Location = new System.Drawing.Point(136, 98); this.chkG11B3020_CH2.Name = "chkG11B3020_CH2"; this.chkG11B3020_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B3020_CH2.TabIndex = 25; this.chkG11B3020_CH2.UseVisualStyleBackColor = true; this.chkG11B3020_CH2.CheckedChanged += new System.EventHandler(this.chkG11B3020_CH2_CheckedChanged); // // chkG11B6040_CH2 // this.chkG11B6040_CH2.AutoSize = true; this.chkG11B6040_CH2.Image = null; this.chkG11B6040_CH2.Location = new System.Drawing.Point(136, 62); this.chkG11B6040_CH2.Name = "chkG11B6040_CH2"; this.chkG11B6040_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B6040_CH2.TabIndex = 24; this.chkG11B6040_CH2.UseVisualStyleBackColor = true; this.chkG11B6040_CH2.CheckedChanged += new System.EventHandler(this.chkG11B6040_CH2_CheckedChanged); // // chkG11B80_CH2 // this.chkG11B80_CH2.AutoSize = true; this.chkG11B80_CH2.Image = null; this.chkG11B80_CH2.Location = new System.Drawing.Point(136, 44); this.chkG11B80_CH2.Name = "chkG11B80_CH2"; this.chkG11B80_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B80_CH2.TabIndex = 23; this.chkG11B80_CH2.UseVisualStyleBackColor = true; this.chkG11B80_CH2.CheckedChanged += new System.EventHandler(this.chkG11B80_CH2_CheckedChanged); // // chkG11B160_CH2 // this.chkG11B160_CH2.AutoSize = true; this.chkG11B160_CH2.Image = null; this.chkG11B160_CH2.Location = new System.Drawing.Point(136, 26); this.chkG11B160_CH2.Name = "chkG11B160_CH2"; this.chkG11B160_CH2.Size = new System.Drawing.Size(15, 14); this.chkG11B160_CH2.TabIndex = 22; this.chkG11B160_CH2.UseVisualStyleBackColor = true; this.chkG11B160_CH2.CheckedChanged += new System.EventHandler(this.chkG11B160_CH2_CheckedChanged); // // chkG11B600_CH1 // this.chkG11B600_CH1.AutoSize = true; this.chkG11B600_CH1.Image = null; this.chkG11B600_CH1.Location = new System.Drawing.Point(103, 224); this.chkG11B600_CH1.Name = "chkG11B600_CH1"; this.chkG11B600_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B600_CH1.TabIndex = 21; this.chkG11B600_CH1.UseVisualStyleBackColor = true; this.chkG11B600_CH1.CheckedChanged += new System.EventHandler(this.chkG11B600_CH1_CheckedChanged); // // chkG11B151210_CH1 // this.chkG11B151210_CH1.AutoSize = true; this.chkG11B151210_CH1.Image = null; this.chkG11B151210_CH1.Location = new System.Drawing.Point(103, 188); this.chkG11B151210_CH1.Name = "chkG11B151210_CH1"; this.chkG11B151210_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B151210_CH1.TabIndex = 20; this.chkG11B151210_CH1.UseVisualStyleBackColor = true; this.chkG11B151210_CH1.CheckedChanged += new System.EventHandler(this.chkG11B151210_CH1_CheckedChanged); // // chkG11B1210_CH1 // this.chkG11B1210_CH1.AutoSize = true; this.chkG11B1210_CH1.Image = null; this.chkG11B1210_CH1.Location = new System.Drawing.Point(103, 170); this.chkG11B1210_CH1.Name = "chkG11B1210_CH1"; this.chkG11B1210_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B1210_CH1.TabIndex = 19; this.chkG11B1210_CH1.UseVisualStyleBackColor = true; this.chkG11B1210_CH1.CheckedChanged += new System.EventHandler(this.chkG11B1210_CH1_CheckedChanged); // // chkG11B201715_CH1 // this.chkG11B201715_CH1.AutoSize = true; this.chkG11B201715_CH1.Image = null; this.chkG11B201715_CH1.Location = new System.Drawing.Point(103, 152); this.chkG11B201715_CH1.Name = "chkG11B201715_CH1"; this.chkG11B201715_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B201715_CH1.TabIndex = 18; this.chkG11B201715_CH1.UseVisualStyleBackColor = true; this.chkG11B201715_CH1.CheckedChanged += new System.EventHandler(this.chkG11B201715_CH1_CheckedChanged); // // chkG11B1715_CH1 // this.chkG11B1715_CH1.AutoSize = true; this.chkG11B1715_CH1.Image = null; this.chkG11B1715_CH1.Location = new System.Drawing.Point(103, 134); this.chkG11B1715_CH1.Name = "chkG11B1715_CH1"; this.chkG11B1715_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B1715_CH1.TabIndex = 17; this.chkG11B1715_CH1.UseVisualStyleBackColor = true; this.chkG11B1715_CH1.CheckedChanged += new System.EventHandler(this.chkG11B1715_CH1_CheckedChanged); // // chkG11B2017_CH1 // this.chkG11B2017_CH1.AutoSize = true; this.chkG11B2017_CH1.Image = null; this.chkG11B2017_CH1.Location = new System.Drawing.Point(103, 116); this.chkG11B2017_CH1.Name = "chkG11B2017_CH1"; this.chkG11B2017_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B2017_CH1.TabIndex = 16; this.chkG11B2017_CH1.UseVisualStyleBackColor = true; this.chkG11B2017_CH1.CheckedChanged += new System.EventHandler(this.chkG11B2017_CH1_CheckedChanged); // // chkG11B3020_CH1 // this.chkG11B3020_CH1.AutoSize = true; this.chkG11B3020_CH1.Image = null; this.chkG11B3020_CH1.Location = new System.Drawing.Point(103, 98); this.chkG11B3020_CH1.Name = "chkG11B3020_CH1"; this.chkG11B3020_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B3020_CH1.TabIndex = 15; this.chkG11B3020_CH1.UseVisualStyleBackColor = true; this.chkG11B3020_CH1.CheckedChanged += new System.EventHandler(this.chkG11B3020_CH1_CheckedChanged); // // chkG11B6040_CH1 // this.chkG11B6040_CH1.AutoSize = true; this.chkG11B6040_CH1.Image = null; this.chkG11B6040_CH1.Location = new System.Drawing.Point(103, 62); this.chkG11B6040_CH1.Name = "chkG11B6040_CH1"; this.chkG11B6040_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B6040_CH1.TabIndex = 14; this.chkG11B6040_CH1.UseVisualStyleBackColor = true; this.chkG11B6040_CH1.CheckedChanged += new System.EventHandler(this.chkG11B6040_CH1_CheckedChanged); // // chkG11B80_CH1 // this.chkG11B80_CH1.AutoSize = true; this.chkG11B80_CH1.Image = null; this.chkG11B80_CH1.Location = new System.Drawing.Point(103, 44); this.chkG11B80_CH1.Name = "chkG11B80_CH1"; this.chkG11B80_CH1.Size = new System.Drawing.Size(15, 14); this.chkG11B80_CH1.TabIndex = 13; this.chkG11B80_CH1.UseVisualStyleBackColor = true; this.chkG11B80_CH1.CheckedChanged += new System.EventHandler(this.chkG11B80_CH1_CheckedChanged); // // labelTS43 // this.labelTS43.AutoSize = true; this.labelTS43.Image = null; this.labelTS43.Location = new System.Drawing.Point(11, 224); this.labelTS43.Name = "labelTS43"; this.labelTS43.Size = new System.Drawing.Size(77, 13); this.labelTS43.TabIndex = 11; this.labelTS43.Text = "600m(500KHz)"; // // labelTS44 // this.labelTS44.AutoSize = true; this.labelTS44.Image = null; this.labelTS44.Location = new System.Drawing.Point(11, 188); this.labelTS44.Name = "labelTS44"; this.labelTS44.Size = new System.Drawing.Size(57, 13); this.labelTS44.TabIndex = 10; this.labelTS44.Text = "15-12-10m"; // // labelTS39 // this.labelTS39.AutoSize = true; this.labelTS39.Image = null; this.labelTS39.Location = new System.Drawing.Point(11, 170); this.labelTS39.Name = "labelTS39"; this.labelTS39.Size = new System.Drawing.Size(42, 13); this.labelTS39.TabIndex = 9; this.labelTS39.Text = "12-10m"; // // labelTS40 // this.labelTS40.AutoSize = true; this.labelTS40.Image = null; this.labelTS40.Location = new System.Drawing.Point(11, 152); this.labelTS40.Name = "labelTS40"; this.labelTS40.Size = new System.Drawing.Size(57, 13); this.labelTS40.TabIndex = 8; this.labelTS40.Text = "20-17-15m"; // // labelTS41 // this.labelTS41.AutoSize = true; this.labelTS41.Image = null; this.labelTS41.Location = new System.Drawing.Point(11, 134); this.labelTS41.Name = "labelTS41"; this.labelTS41.Size = new System.Drawing.Size(42, 13); this.labelTS41.TabIndex = 7; this.labelTS41.Text = "17-15m"; // // labelTS42 // this.labelTS42.AutoSize = true; this.labelTS42.Image = null; this.labelTS42.Location = new System.Drawing.Point(11, 116); this.labelTS42.Name = "labelTS42"; this.labelTS42.Size = new System.Drawing.Size(42, 13); this.labelTS42.TabIndex = 6; this.labelTS42.Text = "20-17m"; // // labelTS37 // this.labelTS37.AutoSize = true; this.labelTS37.Image = null; this.labelTS37.Location = new System.Drawing.Point(11, 98); this.labelTS37.Name = "labelTS37"; this.labelTS37.Size = new System.Drawing.Size(42, 13); this.labelTS37.TabIndex = 5; this.labelTS37.Text = "30-20m"; // // labelTS38 // this.labelTS38.AutoSize = true; this.labelTS38.Image = null; this.labelTS38.Location = new System.Drawing.Point(11, 62); this.labelTS38.Name = "labelTS38"; this.labelTS38.Size = new System.Drawing.Size(42, 13); this.labelTS38.TabIndex = 4; this.labelTS38.Text = "60-40m"; // // labelTS36 // this.labelTS36.AutoSize = true; this.labelTS36.Image = null; this.labelTS36.Location = new System.Drawing.Point(11, 44); this.labelTS36.Name = "labelTS36"; this.labelTS36.Size = new System.Drawing.Size(27, 13); this.labelTS36.TabIndex = 3; this.labelTS36.Text = "80m"; // // labelTS35 // this.labelTS35.AutoSize = true; this.labelTS35.Image = null; this.labelTS35.Location = new System.Drawing.Point(11, 26); this.labelTS35.Name = "labelTS35"; this.labelTS35.Size = new System.Drawing.Size(33, 13); this.labelTS35.TabIndex = 2; this.labelTS35.Text = "160m"; // // labelTS34 // this.labelTS34.AutoSize = true; this.labelTS34.Image = null; this.labelTS34.Location = new System.Drawing.Point(128, 8); this.labelTS34.Name = "labelTS34"; this.labelTS34.Size = new System.Drawing.Size(28, 13); this.labelTS34.TabIndex = 1; this.labelTS34.Text = "CH2"; // // labelTS33 // this.labelTS33.AutoSize = true; this.labelTS33.Image = null; this.labelTS33.Location = new System.Drawing.Point(95, 8); this.labelTS33.Name = "labelTS33"; this.labelTS33.Size = new System.Drawing.Size(28, 13); this.labelTS33.TabIndex = 0; this.labelTS33.Text = "CH1"; // // labelTS73 // this.labelTS73.AutoSize = true; this.labelTS73.Image = null; this.labelTS73.Location = new System.Drawing.Point(36, 107); this.labelTS73.Name = "labelTS73"; this.labelTS73.Size = new System.Drawing.Size(27, 13); this.labelTS73.TabIndex = 36; this.labelTS73.Text = "OFF"; // // labelTS74 // this.labelTS74.AutoSize = true; this.labelTS74.Image = null; this.labelTS74.Location = new System.Drawing.Point(36, 84); this.labelTS74.Name = "labelTS74"; this.labelTS74.Size = new System.Drawing.Size(23, 13); this.labelTS74.TabIndex = 35; this.labelTS74.Text = "ON"; // // lblG11extPApttDelay // this.lblG11extPApttDelay.AutoSize = true; this.lblG11extPApttDelay.Image = null; this.lblG11extPApttDelay.Location = new System.Drawing.Point(36, 61); this.lblG11extPApttDelay.Name = "lblG11extPApttDelay"; this.lblG11extPApttDelay.Size = new System.Drawing.Size(117, 13); this.lblG11extPApttDelay.TabIndex = 33; this.lblG11extPApttDelay.Text = "External PA PTT delay:"; // // btnG11FiltersShow // this.btnG11FiltersShow.AutoSize = true; this.btnG11FiltersShow.Image = null; this.btnG11FiltersShow.Location = new System.Drawing.Point(100, 273); this.btnG11FiltersShow.Name = "btnG11FiltersShow"; this.btnG11FiltersShow.Size = new System.Drawing.Size(89, 23); this.btnG11FiltersShow.TabIndex = 11; this.btnG11FiltersShow.Text = "Band filters"; this.btnG11FiltersShow.UseVisualStyleBackColor = true; this.btnG11FiltersShow.Click += new System.EventHandler(this.btnG11FiltersShow_Click); // // chkG11MicPreamp // this.chkG11MicPreamp.AutoSize = true; this.chkG11MicPreamp.Image = null; this.chkG11MicPreamp.Location = new System.Drawing.Point(36, 174); this.chkG11MicPreamp.Name = "chkG11MicPreamp"; this.chkG11MicPreamp.Size = new System.Drawing.Size(81, 17); this.chkG11MicPreamp.TabIndex = 8; this.chkG11MicPreamp.Text = "Mic preamp"; this.chkG11MicPreamp.UseVisualStyleBackColor = true; this.chkG11MicPreamp.CheckedChanged += new System.EventHandler(this.chkG11MicPreamp_CheckedChanged); // // chkG11RX2 // this.chkG11RX2.AutoSize = true; this.chkG11RX2.Image = null; this.chkG11RX2.Location = new System.Drawing.Point(36, 153); this.chkG11RX2.Name = "chkG11RX2"; this.chkG11RX2.Size = new System.Drawing.Size(107, 17); this.chkG11RX2.TabIndex = 6; this.chkG11RX2.Text = "Second RX input"; this.chkG11RX2.UseVisualStyleBackColor = true; this.chkG11RX2.CheckedChanged += new System.EventHandler(this.chkG11RX2_CheckedChanged); // // grpG11XTRV // this.grpG11XTRV.Controls.Add(this.udG11XTRVLosc); this.grpG11XTRV.Controls.Add(this.lblG11XTRVLosc); this.grpG11XTRV.Controls.Add(this.chkG11RXIndependent); this.grpG11XTRV.Location = new System.Drawing.Point(14, 194); this.grpG11XTRV.Name = "grpG11XTRV"; this.grpG11XTRV.Size = new System.Drawing.Size(171, 72); this.grpG11XTRV.TabIndex = 7; this.grpG11XTRV.TabStop = false; this.grpG11XTRV.Text = "XTRV"; // // lblG11XTRVLosc // this.lblG11XTRVLosc.AutoSize = true; this.lblG11XTRVLosc.Image = null; this.lblG11XTRVLosc.Location = new System.Drawing.Point(7, 48); this.lblG11XTRVLosc.Name = "lblG11XTRVLosc"; this.lblG11XTRVLosc.Size = new System.Drawing.Size(61, 13); this.lblG11XTRVLosc.TabIndex = 24; this.lblG11XTRVLosc.Text = "XTRV OSC"; // // grpG59 // this.grpG59.Controls.Add(this.lblG59PTT_OFF); this.grpG59.Controls.Add(this.lblG59PTT_ON); this.grpG59.Controls.Add(this.udG59PTT_OFF_time); this.grpG59.Controls.Add(this.chkG59ExtPA); this.grpG59.Controls.Add(this.udG59PTT_ON_time); this.grpG59.Controls.Add(this.lblG59PTT); this.grpG59.Controls.Add(this.chkG59_PTT_Inv); this.grpG59.Controls.Add(this.chkG59MicPreamp); this.grpG59.Controls.Add(this.grpXTRV); this.grpG59.Controls.Add(this.chkG59RX2); this.grpG59.Controls.Add(this.chkG59_PA10); this.grpG59.Location = new System.Drawing.Point(184, 8); this.grpG59.Name = "grpG59"; this.grpG59.Size = new System.Drawing.Size(198, 292); this.grpG59.TabIndex = 34; this.grpG59.TabStop = false; this.grpG59.Text = "G59"; // // chkG59MicPreamp // this.chkG59MicPreamp.AutoSize = true; this.chkG59MicPreamp.Image = null; this.chkG59MicPreamp.Location = new System.Drawing.Point(40, 148); this.chkG59MicPreamp.Name = "chkG59MicPreamp"; this.chkG59MicPreamp.Size = new System.Drawing.Size(81, 17); this.chkG59MicPreamp.TabIndex = 8; this.chkG59MicPreamp.Text = "Mic preamp"; this.chkG59MicPreamp.UseVisualStyleBackColor = true; this.chkG59MicPreamp.CheckedChanged += new System.EventHandler(this.chkG59MicPreamp_CheckedChanged); // // grpXTRV // this.grpXTRV.Controls.Add(this.udG59XtrvIF); this.grpXTRV.Controls.Add(this.lblG59XtrvIF); this.grpXTRV.Controls.Add(this.chG59XTRV_separate_RX_TX); this.grpXTRV.Location = new System.Drawing.Point(21, 168); this.grpXTRV.Name = "grpXTRV"; this.grpXTRV.Size = new System.Drawing.Size(157, 121); this.grpXTRV.TabIndex = 7; this.grpXTRV.TabStop = false; this.grpXTRV.Text = "XTRV"; // // lblG59XtrvIF // this.lblG59XtrvIF.AutoSize = true; this.lblG59XtrvIF.Image = null; this.lblG59XtrvIF.Location = new System.Drawing.Point(3, 96); this.lblG59XtrvIF.Name = "lblG59XtrvIF"; this.lblG59XtrvIF.Size = new System.Drawing.Size(61, 13); this.lblG59XtrvIF.TabIndex = 24; this.lblG59XtrvIF.Text = "XTRV OSC"; // // chkG59RX2 // this.chkG59RX2.AutoSize = true; this.chkG59RX2.Image = null; this.chkG59RX2.Location = new System.Drawing.Point(40, 130); this.chkG59RX2.Name = "chkG59RX2"; this.chkG59RX2.Size = new System.Drawing.Size(107, 17); this.chkG59RX2.TabIndex = 6; this.chkG59RX2.Text = "Second RX input"; this.chkG59RX2.UseVisualStyleBackColor = true; this.chkG59RX2.CheckedChanged += new System.EventHandler(this.chkG59RX2_CheckedChanged); // // grpRTL_SDR // this.grpRTL_SDR.Controls.Add(this.labelTS72); this.grpRTL_SDR.Controls.Add(this.udRTL_VACcorr); this.grpRTL_SDR.Controls.Add(this.txtRTL_SDR_Device); this.grpRTL_SDR.Controls.Add(this.labelTS71); this.grpRTL_SDR.Controls.Add(this.chkRTL_SDR_OffsetTuning); this.grpRTL_SDR.Controls.Add(this.chkRTL_SDR_RTL_AGC); this.grpRTL_SDR.Controls.Add(this.chkRTL_SDR_TunerAGC); this.grpRTL_SDR.Controls.Add(this.labelTS70); this.grpRTL_SDR.Controls.Add(this.tbRTL_SDR_AGC_Gain); this.grpRTL_SDR.Controls.Add(this.labelTS69); this.grpRTL_SDR.Controls.Add(this.comboRTL_SDR_BufferSize); this.grpRTL_SDR.Controls.Add(this.labelTS68); this.grpRTL_SDR.Controls.Add(this.udRTL_SDR_correction); this.grpRTL_SDR.Controls.Add(this.labelTS67); this.grpRTL_SDR.Controls.Add(this.comboRTL_SDR_SampleRate); this.grpRTL_SDR.Location = new System.Drawing.Point(184, 8); this.grpRTL_SDR.Name = "grpRTL_SDR"; this.grpRTL_SDR.Size = new System.Drawing.Size(198, 292); this.grpRTL_SDR.TabIndex = 36; this.grpRTL_SDR.TabStop = false; this.grpRTL_SDR.Text = "RTL SDR"; // // labelTS72 // this.labelTS72.AutoSize = true; this.labelTS72.Image = null; this.labelTS72.Location = new System.Drawing.Point(12, 104); this.labelTS72.Name = "labelTS72"; this.labelTS72.Size = new System.Drawing.Size(78, 13); this.labelTS72.TabIndex = 15; this.labelTS72.Text = "VAC correction"; // // udRTL_VACcorr // this.udRTL_VACcorr.Enabled = false; this.udRTL_VACcorr.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udRTL_VACcorr.Location = new System.Drawing.Point(107, 102); this.udRTL_VACcorr.Maximum = new decimal(new int[] { 5000, 0, 0, 0}); this.udRTL_VACcorr.Minimum = new decimal(new int[] { 5000, 0, 0, -2147483648}); this.udRTL_VACcorr.Name = "udRTL_VACcorr"; this.udRTL_VACcorr.Size = new System.Drawing.Size(72, 20); this.udRTL_VACcorr.TabIndex = 14; this.udRTL_VACcorr.Value = new decimal(new int[] { 381, 0, 0, 0}); // // txtRTL_SDR_Device // this.txtRTL_SDR_Device.Location = new System.Drawing.Point(79, 22); this.txtRTL_SDR_Device.MaxLength = 32; this.txtRTL_SDR_Device.Name = "txtRTL_SDR_Device"; this.txtRTL_SDR_Device.Size = new System.Drawing.Size(100, 20); this.txtRTL_SDR_Device.TabIndex = 13; // // labelTS71 // this.labelTS71.AutoSize = true; this.labelTS71.Image = null; this.labelTS71.Location = new System.Drawing.Point(12, 29); this.labelTS71.Name = "labelTS71"; this.labelTS71.Size = new System.Drawing.Size(41, 13); this.labelTS71.TabIndex = 12; this.labelTS71.Text = "Device"; // // chkRTL_SDR_OffsetTuning // this.chkRTL_SDR_OffsetTuning.AutoSize = true; this.chkRTL_SDR_OffsetTuning.Image = null; this.chkRTL_SDR_OffsetTuning.Location = new System.Drawing.Point(52, 263); this.chkRTL_SDR_OffsetTuning.Name = "chkRTL_SDR_OffsetTuning"; this.chkRTL_SDR_OffsetTuning.Size = new System.Drawing.Size(90, 17); this.chkRTL_SDR_OffsetTuning.TabIndex = 10; this.chkRTL_SDR_OffsetTuning.Text = "Offset Tuning"; this.chkRTL_SDR_OffsetTuning.UseVisualStyleBackColor = true; this.chkRTL_SDR_OffsetTuning.CheckedChanged += new System.EventHandler(this.chkRTL_SDR_OffsetTuning_CheckedChanged); // // chkRTL_SDR_RTL_AGC // this.chkRTL_SDR_RTL_AGC.AutoSize = true; this.chkRTL_SDR_RTL_AGC.Image = null; this.chkRTL_SDR_RTL_AGC.Location = new System.Drawing.Point(52, 232); this.chkRTL_SDR_RTL_AGC.Name = "chkRTL_SDR_RTL_AGC"; this.chkRTL_SDR_RTL_AGC.Size = new System.Drawing.Size(72, 17); this.chkRTL_SDR_RTL_AGC.TabIndex = 9; this.chkRTL_SDR_RTL_AGC.Text = "RTL AGC"; this.chkRTL_SDR_RTL_AGC.UseVisualStyleBackColor = true; this.chkRTL_SDR_RTL_AGC.CheckedChanged += new System.EventHandler(this.chkRTL_SDR_RTL_AGC_CheckedChanged); // // chkRTL_SDR_TunerAGC // this.chkRTL_SDR_TunerAGC.AutoSize = true; this.chkRTL_SDR_TunerAGC.Image = null; this.chkRTL_SDR_TunerAGC.Location = new System.Drawing.Point(52, 201); this.chkRTL_SDR_TunerAGC.Name = "chkRTL_SDR_TunerAGC"; this.chkRTL_SDR_TunerAGC.Size = new System.Drawing.Size(79, 17); this.chkRTL_SDR_TunerAGC.TabIndex = 8; this.chkRTL_SDR_TunerAGC.Text = "Tuner AGC"; this.chkRTL_SDR_TunerAGC.UseVisualStyleBackColor = true; this.chkRTL_SDR_TunerAGC.CheckedChanged += new System.EventHandler(this.chkRTL_SDR_TunerAGC_CheckedChanged); // // labelTS70 // this.labelTS70.Image = null; this.labelTS70.Location = new System.Drawing.Point(12, 157); this.labelTS70.Name = "labelTS70"; this.labelTS70.Size = new System.Drawing.Size(63, 40); this.labelTS70.TabIndex = 7; this.labelTS70.Text = "Tuner AGC Gain"; // // tbRTL_SDR_AGC_Gain // this.tbRTL_SDR_AGC_Gain.AutoSize = false; this.tbRTL_SDR_AGC_Gain.LargeChange = 1; this.tbRTL_SDR_AGC_Gain.Location = new System.Drawing.Point(85, 158); this.tbRTL_SDR_AGC_Gain.Maximum = 28; this.tbRTL_SDR_AGC_Gain.Name = "tbRTL_SDR_AGC_Gain"; this.tbRTL_SDR_AGC_Gain.Size = new System.Drawing.Size(94, 25); this.tbRTL_SDR_AGC_Gain.TabIndex = 6; this.tbRTL_SDR_AGC_Gain.TickStyle = System.Windows.Forms.TickStyle.None; this.tbRTL_SDR_AGC_Gain.Scroll += new System.EventHandler(this.tbRTL_SDR_AGC_Gain_Scroll); // // labelTS69 // this.labelTS69.AutoSize = true; this.labelTS69.Image = null; this.labelTS69.Location = new System.Drawing.Point(12, 77); this.labelTS69.Name = "labelTS69"; this.labelTS69.Size = new System.Drawing.Size(58, 13); this.labelTS69.TabIndex = 5; this.labelTS69.Text = "Buffer Size"; // // comboRTL_SDR_BufferSize // this.comboRTL_SDR_BufferSize.FormattingEnabled = true; this.comboRTL_SDR_BufferSize.Items.AddRange(new object[] { "1 KB", "2 KB", "4 KB", "8 KB", "16 KB", "32 KB", "64 KB", "128 KB", "256 KB", "512 KB", "1024 KB"}); this.comboRTL_SDR_BufferSize.Location = new System.Drawing.Point(80, 75); this.comboRTL_SDR_BufferSize.Name = "comboRTL_SDR_BufferSize"; this.comboRTL_SDR_BufferSize.Size = new System.Drawing.Size(99, 21); this.comboRTL_SDR_BufferSize.TabIndex = 4; this.comboRTL_SDR_BufferSize.SelectedIndexChanged += new System.EventHandler(this.comboRTL_SDR_BufferSize_SelectedIndexChanged); // // labelTS68 // this.labelTS68.AutoSize = true; this.labelTS68.Image = null; this.labelTS68.Location = new System.Drawing.Point(12, 130); this.labelTS68.Name = "labelTS68"; this.labelTS68.Size = new System.Drawing.Size(86, 13); this.labelTS68.TabIndex = 3; this.labelTS68.Text = "Frequency offset"; // // labelTS67 // this.labelTS67.AutoSize = true; this.labelTS67.Image = null; this.labelTS67.Location = new System.Drawing.Point(12, 51); this.labelTS67.Name = "labelTS67"; this.labelTS67.Size = new System.Drawing.Size(68, 13); this.labelTS67.TabIndex = 1; this.labelTS67.Text = "Sample Rate"; // // comboRTL_SDR_SampleRate // this.comboRTL_SDR_SampleRate.FormattingEnabled = true; this.comboRTL_SDR_SampleRate.Items.AddRange(new object[] { "0.25 Msps", "0.96 Msps", "1.024 Msps", "1.2 Msps", "1.44 Msps", "1.8 Msps", "2.4 Msps", "2.88 Msps", "3.2 Msps"}); this.comboRTL_SDR_SampleRate.Location = new System.Drawing.Point(80, 48); this.comboRTL_SDR_SampleRate.Name = "comboRTL_SDR_SampleRate"; this.comboRTL_SDR_SampleRate.Size = new System.Drawing.Size(99, 21); this.comboRTL_SDR_SampleRate.TabIndex = 0; this.comboRTL_SDR_SampleRate.SelectedIndexChanged += new System.EventHandler(this.comboRTL_SDR_SampleRate_SelectedIndexChanged); // // grpQRP2000 // this.grpQRP2000.Controls.Add(this.btnQRP2000XtalSet); this.grpQRP2000.Controls.Add(this.btnQRP2000XtalGet); this.grpQRP2000.Controls.Add(this.udQRP2000_Si570Xtal); this.grpQRP2000.Controls.Add(this.labelTS58); this.grpQRP2000.Controls.Add(this.groupBoxTS10); this.grpQRP2000.Controls.Add(this.groupBoxTS9); this.grpQRP2000.Controls.Add(this.radQRP2000CW2); this.grpQRP2000.Controls.Add(this.radQRP2000CW1); this.grpQRP2000.Controls.Add(this.QRP2000VID); this.grpQRP2000.Controls.Add(this.QRP2000PID); this.grpQRP2000.Controls.Add(this.lblQRP2000PID); this.grpQRP2000.Controls.Add(this.lblQRP2000VID); this.grpQRP2000.Controls.Add(this.lblSRSi570Addr); this.grpQRP2000.Controls.Add(this.udSRSi570Addr); this.grpQRP2000.Location = new System.Drawing.Point(184, 8); this.grpQRP2000.Name = "grpQRP2000"; this.grpQRP2000.Size = new System.Drawing.Size(198, 292); this.grpQRP2000.TabIndex = 36; this.grpQRP2000.TabStop = false; this.grpQRP2000.Text = "QRP2000"; // // groupBoxTS10 // this.groupBoxTS10.Controls.Add(this.labelTS57); this.groupBoxTS10.Controls.Add(this.radQRP2000XTRVx4); this.groupBoxTS10.Controls.Add(this.radQRP2000XTRVx2); this.groupBoxTS10.Controls.Add(this.radQRP2000XTRVx1); this.groupBoxTS10.Controls.Add(this.udQRP2000XTRVIF); this.groupBoxTS10.Controls.Add(this.lblSRIFFreq); this.groupBoxTS10.Controls.Add(this.chkQRP2000XTRV); this.groupBoxTS10.Location = new System.Drawing.Point(9, 190); this.groupBoxTS10.Name = "groupBoxTS10"; this.groupBoxTS10.Size = new System.Drawing.Size(180, 97); this.groupBoxTS10.TabIndex = 33; this.groupBoxTS10.TabStop = false; this.groupBoxTS10.Text = "XTRV options"; // // labelTS57 // this.labelTS57.AutoSize = true; this.labelTS57.Image = null; this.labelTS57.Location = new System.Drawing.Point(38, 57); this.labelTS57.Name = "labelTS57"; this.labelTS57.Size = new System.Drawing.Size(100, 13); this.labelTS57.TabIndex = 39; this.labelTS57.Text = "Frequency multiplier"; // // radQRP2000XTRVx4 // this.radQRP2000XTRVx4.AutoSize = true; this.radQRP2000XTRVx4.Image = null; this.radQRP2000XTRVx4.Location = new System.Drawing.Point(124, 75); this.radQRP2000XTRVx4.Name = "radQRP2000XTRVx4"; this.radQRP2000XTRVx4.Size = new System.Drawing.Size(36, 17); this.radQRP2000XTRVx4.TabIndex = 38; this.radQRP2000XTRVx4.Text = "4x"; this.radQRP2000XTRVx4.UseVisualStyleBackColor = true; this.radQRP2000XTRVx4.CheckedChanged += new System.EventHandler(this.radQRP2000XTRVx4_CheckedChanged); // // radQRP2000XTRVx2 // this.radQRP2000XTRVx2.AutoSize = true; this.radQRP2000XTRVx2.Image = null; this.radQRP2000XTRVx2.Location = new System.Drawing.Point(72, 75); this.radQRP2000XTRVx2.Name = "radQRP2000XTRVx2"; this.radQRP2000XTRVx2.Size = new System.Drawing.Size(36, 17); this.radQRP2000XTRVx2.TabIndex = 37; this.radQRP2000XTRVx2.Text = "2x"; this.radQRP2000XTRVx2.UseVisualStyleBackColor = true; this.radQRP2000XTRVx2.CheckedChanged += new System.EventHandler(this.radQRP2000XTRVx2_CheckedChanged); // // radQRP2000XTRVx1 // this.radQRP2000XTRVx1.AutoSize = true; this.radQRP2000XTRVx1.Checked = true; this.radQRP2000XTRVx1.Image = null; this.radQRP2000XTRVx1.Location = new System.Drawing.Point(20, 75); this.radQRP2000XTRVx1.Name = "radQRP2000XTRVx1"; this.radQRP2000XTRVx1.Size = new System.Drawing.Size(36, 17); this.radQRP2000XTRVx1.TabIndex = 36; this.radQRP2000XTRVx1.TabStop = true; this.radQRP2000XTRVx1.Text = "1x"; this.radQRP2000XTRVx1.UseVisualStyleBackColor = true; this.radQRP2000XTRVx1.CheckedChanged += new System.EventHandler(this.radQRP2000XTRVx1_CheckedChanged); // // lblSRIFFreq // this.lblSRIFFreq.AutoSize = true; this.lblSRIFFreq.Image = null; this.lblSRIFFreq.Location = new System.Drawing.Point(7, 39); this.lblSRIFFreq.Name = "lblSRIFFreq"; this.lblSRIFFreq.Size = new System.Drawing.Size(62, 13); this.lblSRIFFreq.TabIndex = 22; this.lblSRIFFreq.Text = "XTRV Losc"; // // groupBoxTS9 // this.groupBoxTS9.Controls.Add(this.radQRP2000x4); this.groupBoxTS9.Controls.Add(this.radQRP2000x2); this.groupBoxTS9.Controls.Add(this.radQRP2000x1); this.groupBoxTS9.Location = new System.Drawing.Point(9, 145); this.groupBoxTS9.Name = "groupBoxTS9"; this.groupBoxTS9.Size = new System.Drawing.Size(180, 45); this.groupBoxTS9.TabIndex = 32; this.groupBoxTS9.TabStop = false; this.groupBoxTS9.Text = "Frequency multiplier"; // // radQRP2000x4 // this.radQRP2000x4.AutoSize = true; this.radQRP2000x4.Checked = true; this.radQRP2000x4.Image = null; this.radQRP2000x4.Location = new System.Drawing.Point(122, 17); this.radQRP2000x4.Name = "radQRP2000x4"; this.radQRP2000x4.Size = new System.Drawing.Size(36, 17); this.radQRP2000x4.TabIndex = 35; this.radQRP2000x4.TabStop = true; this.radQRP2000x4.Text = "4x"; this.radQRP2000x4.UseVisualStyleBackColor = true; this.radQRP2000x4.CheckedChanged += new System.EventHandler(this.radQRP2000x4_CheckedChanged); // // radQRP2000x2 // this.radQRP2000x2.AutoSize = true; this.radQRP2000x2.Image = null; this.radQRP2000x2.Location = new System.Drawing.Point(66, 18); this.radQRP2000x2.Name = "radQRP2000x2"; this.radQRP2000x2.Size = new System.Drawing.Size(36, 17); this.radQRP2000x2.TabIndex = 34; this.radQRP2000x2.Text = "2x"; this.radQRP2000x2.UseVisualStyleBackColor = true; this.radQRP2000x2.CheckedChanged += new System.EventHandler(this.radQRP2000x2_CheckedChanged); // // radQRP2000x1 // this.radQRP2000x1.AutoSize = true; this.radQRP2000x1.Image = null; this.radQRP2000x1.Location = new System.Drawing.Point(10, 18); this.radQRP2000x1.Name = "radQRP2000x1"; this.radQRP2000x1.Size = new System.Drawing.Size(36, 17); this.radQRP2000x1.TabIndex = 33; this.radQRP2000x1.Text = "1x"; this.radQRP2000x1.UseVisualStyleBackColor = true; this.radQRP2000x1.CheckedChanged += new System.EventHandler(this.radQRP2000x1_CheckedChanged); // // lblQRP2000PID // this.lblQRP2000PID.AutoSize = true; this.lblQRP2000PID.Location = new System.Drawing.Point(103, 69); this.lblQRP2000PID.Name = "lblQRP2000PID"; this.lblQRP2000PID.Size = new System.Drawing.Size(25, 13); this.lblQRP2000PID.TabIndex = 27; this.lblQRP2000PID.Text = "PID"; // // lblQRP2000VID // this.lblQRP2000VID.AutoSize = true; this.lblQRP2000VID.Location = new System.Drawing.Point(23, 69); this.lblQRP2000VID.Name = "lblQRP2000VID"; this.lblQRP2000VID.Size = new System.Drawing.Size(25, 13); this.lblQRP2000VID.TabIndex = 26; this.lblQRP2000VID.Text = "VID"; // // lblSRSi570Addr // this.lblSRSi570Addr.AutoSize = true; this.lblSRSi570Addr.Image = null; this.lblSRSi570Addr.Location = new System.Drawing.Point(25, 43); this.lblSRSi570Addr.Name = "lblSRSi570Addr"; this.lblSRSi570Addr.Size = new System.Drawing.Size(74, 13); this.lblSRSi570Addr.TabIndex = 25; this.lblSRSi570Addr.Text = "Si570 address"; // // grpGeneralModel // this.grpGeneralModel.Controls.Add(this.radGenModel_RTL_SDR); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG11); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG500); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG6); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG137); this.grpGeneralModel.Controls.Add(this.radGenModelQRP2000); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisNET); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG160); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG80); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG40); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG3020); this.grpGeneralModel.Controls.Add(this.radGenModelGenesisG59); this.grpGeneralModel.Location = new System.Drawing.Point(23, 8); this.grpGeneralModel.Name = "grpGeneralModel"; this.grpGeneralModel.Size = new System.Drawing.Size(150, 292); this.grpGeneralModel.TabIndex = 25; this.grpGeneralModel.TabStop = false; this.grpGeneralModel.Text = "Radio Model"; // // radGenModel_RTL_SDR // this.radGenModel_RTL_SDR.Image = null; this.radGenModel_RTL_SDR.Location = new System.Drawing.Point(22, 260); this.radGenModel_RTL_SDR.Name = "radGenModel_RTL_SDR"; this.radGenModel_RTL_SDR.Size = new System.Drawing.Size(120, 20); this.radGenModel_RTL_SDR.TabIndex = 13; this.radGenModel_RTL_SDR.Text = "RTL SDR"; this.radGenModel_RTL_SDR.UseVisualStyleBackColor = true; this.radGenModel_RTL_SDR.CheckedChanged += new System.EventHandler(this.radGenModel_RTL_SDR_CheckedChanged); // // radGenModelGenesisG6 // this.radGenModelGenesisG6.Image = null; this.radGenModelGenesisG6.Location = new System.Drawing.Point(22, 236); this.radGenModelGenesisG6.Name = "radGenModelGenesisG6"; this.radGenModelGenesisG6.Size = new System.Drawing.Size(120, 20); this.radGenModelGenesisG6.TabIndex = 9; this.radGenModelGenesisG6.Text = "Genesis G6"; this.radGenModelGenesisG6.UseVisualStyleBackColor = true; this.radGenModelGenesisG6.CheckedChanged += new System.EventHandler(this.radGenModelGenesisG6_CheckedChanged); // // grpGeneralHardwareSetup // this.grpGeneralHardwareSetup.Controls.Add(this.chkDragSpectrum); this.grpGeneralHardwareSetup.Controls.Add(this.chkButtonZoom); this.grpGeneralHardwareSetup.Controls.Add(this.chkContinuousTuning); this.grpGeneralHardwareSetup.Controls.Add(this.chkOSD); this.grpGeneralHardwareSetup.Controls.Add(this.chkVFOnew); this.grpGeneralHardwareSetup.Controls.Add(this.lblShowHideGui); this.grpGeneralHardwareSetup.Controls.Add(this.comboSi570GUI); this.grpGeneralHardwareSetup.Controls.Add(this.chkDragVFOA); this.grpGeneralHardwareSetup.Controls.Add(this.chkAlwaysOnTop); this.grpGeneralHardwareSetup.Controls.Add(this.chkGeneralRXOnly); this.grpGeneralHardwareSetup.Controls.Add(this.chkGeneralUSBPresent); this.grpGeneralHardwareSetup.Location = new System.Drawing.Point(393, 8); this.grpGeneralHardwareSetup.Name = "grpGeneralHardwareSetup"; this.grpGeneralHardwareSetup.Size = new System.Drawing.Size(160, 292); this.grpGeneralHardwareSetup.TabIndex = 1; this.grpGeneralHardwareSetup.TabStop = false; this.grpGeneralHardwareSetup.Text = "Misc Setup"; // // chkVFOnew // this.chkVFOnew.AutoSize = true; this.chkVFOnew.Image = null; this.chkVFOnew.Location = new System.Drawing.Point(16, 185); this.chkVFOnew.Name = "chkVFOnew"; this.chkVFOnew.Size = new System.Drawing.Size(95, 17); this.chkVFOnew.TabIndex = 16; this.chkVFOnew.Text = "New VFO look"; this.chkVFOnew.UseVisualStyleBackColor = true; this.chkVFOnew.CheckedChanged += new System.EventHandler(this.chkVFOnew_CheckedChanged); // // grpNETBox // this.grpNETBox.Controls.Add(this.udLocalNETBoxPort); this.grpNETBox.Controls.Add(this.btnNETBoxTest); this.grpNETBox.Controls.Add(this.lblLocalNETBoxPort); this.grpNETBox.Controls.Add(this.udNETBoxPort); this.grpNETBox.Controls.Add(this.lblNETBoxPort); this.grpNETBox.Controls.Add(this.txtNETBoxIPAddress); this.grpNETBox.Controls.Add(this.txtLocalNETBoxIPAddress); this.grpNETBox.Controls.Add(this.lblLocalNETBoxAddress); this.grpNETBox.Controls.Add(this.lblNETBoxIPAddress); this.grpNETBox.Location = new System.Drawing.Point(184, 8); this.grpNETBox.Name = "grpNETBox"; this.grpNETBox.Size = new System.Drawing.Size(198, 292); this.grpNETBox.TabIndex = 35; this.grpNETBox.TabStop = false; this.grpNETBox.Text = "NET Box"; // // udLocalNETBoxPort // this.udLocalNETBoxPort.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udLocalNETBoxPort.Location = new System.Drawing.Point(126, 57); this.udLocalNETBoxPort.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udLocalNETBoxPort.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udLocalNETBoxPort.Name = "udLocalNETBoxPort"; this.udLocalNETBoxPort.Size = new System.Drawing.Size(55, 20); this.udLocalNETBoxPort.TabIndex = 8; this.udLocalNETBoxPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udLocalNETBoxPort.Value = new decimal(new int[] { 10000, 0, 0, 0}); // // btnNETBoxTest // this.btnNETBoxTest.Image = null; this.btnNETBoxTest.Location = new System.Drawing.Point(62, 263); this.btnNETBoxTest.Name = "btnNETBoxTest"; this.btnNETBoxTest.Size = new System.Drawing.Size(75, 23); this.btnNETBoxTest.TabIndex = 4; this.btnNETBoxTest.Text = "Test"; this.btnNETBoxTest.UseVisualStyleBackColor = true; // // lblLocalNETBoxPort // this.lblLocalNETBoxPort.AutoSize = true; this.lblLocalNETBoxPort.Image = null; this.lblLocalNETBoxPort.Location = new System.Drawing.Point(17, 60); this.lblLocalNETBoxPort.Name = "lblLocalNETBoxPort"; this.lblLocalNETBoxPort.Size = new System.Drawing.Size(57, 13); this.lblLocalNETBoxPort.TabIndex = 7; this.lblLocalNETBoxPort.Text = "Local port:"; // // udNETBoxPort // this.udNETBoxPort.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udNETBoxPort.Location = new System.Drawing.Point(126, 123); this.udNETBoxPort.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udNETBoxPort.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udNETBoxPort.Name = "udNETBoxPort"; this.udNETBoxPort.Size = new System.Drawing.Size(55, 20); this.udNETBoxPort.TabIndex = 3; this.udNETBoxPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udNETBoxPort.Value = new decimal(new int[] { 10001, 0, 0, 0}); // // lblNETBoxPort // this.lblNETBoxPort.AutoSize = true; this.lblNETBoxPort.Image = null; this.lblNETBoxPort.Location = new System.Drawing.Point(17, 126); this.lblNETBoxPort.Name = "lblNETBoxPort"; this.lblNETBoxPort.Size = new System.Drawing.Size(68, 13); this.lblNETBoxPort.TabIndex = 2; this.lblNETBoxPort.Text = "Remote port:"; // // txtNETBoxIPAddress // this.txtNETBoxIPAddress.Location = new System.Drawing.Point(92, 90); this.txtNETBoxIPAddress.Name = "txtNETBoxIPAddress"; this.txtNETBoxIPAddress.Size = new System.Drawing.Size(89, 20); this.txtNETBoxIPAddress.TabIndex = 1; this.txtNETBoxIPAddress.Text = "192.168.1.100"; this.txtNETBoxIPAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // txtLocalNETBoxIPAddress // this.txtLocalNETBoxIPAddress.Location = new System.Drawing.Point(92, 24); this.txtLocalNETBoxIPAddress.Name = "txtLocalNETBoxIPAddress"; this.txtLocalNETBoxIPAddress.Size = new System.Drawing.Size(89, 20); this.txtLocalNETBoxIPAddress.TabIndex = 6; this.txtLocalNETBoxIPAddress.Text = "192.168.1.1"; this.txtLocalNETBoxIPAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblLocalNETBoxAddress // this.lblLocalNETBoxAddress.AutoSize = true; this.lblLocalNETBoxAddress.Image = null; this.lblLocalNETBoxAddress.Location = new System.Drawing.Point(17, 27); this.lblLocalNETBoxAddress.Name = "lblLocalNETBoxAddress"; this.lblLocalNETBoxAddress.Size = new System.Drawing.Size(77, 13); this.lblLocalNETBoxAddress.TabIndex = 5; this.lblLocalNETBoxAddress.Text = "Local Address:"; // // lblNETBoxIPAddress // this.lblNETBoxIPAddress.AutoSize = true; this.lblNETBoxIPAddress.Image = null; this.lblNETBoxIPAddress.Location = new System.Drawing.Point(17, 93); this.lblNETBoxIPAddress.Name = "lblNETBoxIPAddress"; this.lblNETBoxIPAddress.Size = new System.Drawing.Size(69, 13); this.lblNETBoxIPAddress.TabIndex = 0; this.lblNETBoxIPAddress.Text = "Box Address:"; // // grpGenesis80 // this.grpGenesis80.Controls.Add(this.udG80Xtal4); this.grpGenesis80.Controls.Add(this.udG80Xtal3); this.grpGenesis80.Controls.Add(this.udG80Xtal2); this.grpGenesis80.Controls.Add(this.udG80Xtal1); this.grpGenesis80.Location = new System.Drawing.Point(203, 14); this.grpGenesis80.Name = "grpGenesis80"; this.grpGenesis80.Size = new System.Drawing.Size(170, 162); this.grpGenesis80.TabIndex = 32; this.grpGenesis80.TabStop = false; this.grpGenesis80.Text = "Genesis G80"; this.grpGenesis80.Visible = false; // // udG80Xtal4 // this.udG80Xtal4.DecimalPlaces = 6; this.udG80Xtal4.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG80Xtal4.Location = new System.Drawing.Point(33, 116); this.udG80Xtal4.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG80Xtal4.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG80Xtal4.Name = "udG80Xtal4"; this.udG80Xtal4.Size = new System.Drawing.Size(105, 20); this.udG80Xtal4.TabIndex = 31; this.udG80Xtal4.Value = new decimal(new int[] { 3835, 0, 0, 196608}); this.udG80Xtal4.ValueChanged += new System.EventHandler(this.udG80Xtal4_ValueChanged); // // udG80Xtal3 // this.udG80Xtal3.DecimalPlaces = 6; this.udG80Xtal3.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG80Xtal3.Location = new System.Drawing.Point(33, 86); this.udG80Xtal3.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG80Xtal3.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG80Xtal3.Name = "udG80Xtal3"; this.udG80Xtal3.Size = new System.Drawing.Size(105, 20); this.udG80Xtal3.TabIndex = 30; this.udG80Xtal3.Value = new decimal(new int[] { 3732, 0, 0, 196608}); this.udG80Xtal3.ValueChanged += new System.EventHandler(this.udG80Xtal3_ValueChanged); // // udG80Xtal2 // this.udG80Xtal2.DecimalPlaces = 6; this.udG80Xtal2.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG80Xtal2.Location = new System.Drawing.Point(33, 56); this.udG80Xtal2.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG80Xtal2.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG80Xtal2.Name = "udG80Xtal2"; this.udG80Xtal2.Size = new System.Drawing.Size(105, 20); this.udG80Xtal2.TabIndex = 29; this.udG80Xtal2.Value = new decimal(new int[] { 3638, 0, 0, 196608}); this.udG80Xtal2.ValueChanged += new System.EventHandler(this.udG80Xtal2_ValueChanged); // // udG80Xtal1 // this.udG80Xtal1.DecimalPlaces = 6; this.udG80Xtal1.Increment = new decimal(new int[] { 1, 0, 0, 393216}); this.udG80Xtal1.Location = new System.Drawing.Point(33, 26); this.udG80Xtal1.Maximum = new decimal(new int[] { 59999999, 0, 0, 393216}); this.udG80Xtal1.Minimum = new decimal(new int[] { 10, 0, 0, 65536}); this.udG80Xtal1.Name = "udG80Xtal1"; this.udG80Xtal1.Size = new System.Drawing.Size(105, 20); this.udG80Xtal1.TabIndex = 28; this.udG80Xtal1.Value = new decimal(new int[] { 3545, 0, 0, 196608}); this.udG80Xtal1.ValueChanged += new System.EventHandler(this.udG80Xtal1_ValueChanged); // // grpGenesis160 // this.grpGenesis160.Controls.Add(this.udG160Xtal2); this.grpGenesis160.Controls.Add(this.udG160Xtal1); this.grpGenesis160.Location = new System.Drawing.Point(203, 14); this.grpGenesis160.Name = "grpGenesis160"; this.grpGenesis160.Size = new System.Drawing.Size(170, 162); this.grpGenesis160.TabIndex = 33; this.grpGenesis160.TabStop = false; this.grpGenesis160.Text = "Genesis G160"; this.grpGenesis160.Visible = false; // // grpGenesis137 // this.grpGenesis137.Controls.Add(this.udG137Xtal1); this.grpGenesis137.Location = new System.Drawing.Point(203, 14); this.grpGenesis137.Name = "grpGenesis137"; this.grpGenesis137.Size = new System.Drawing.Size(170, 162); this.grpGenesis137.TabIndex = 33; this.grpGenesis137.TabStop = false; this.grpGenesis137.Text = "Genesis G137"; this.grpGenesis137.Visible = false; // // grpGenesis500 // this.grpGenesis500.Controls.Add(this.udG500Xtal1); this.grpGenesis500.Location = new System.Drawing.Point(203, 14); this.grpGenesis500.Name = "grpGenesis500"; this.grpGenesis500.Size = new System.Drawing.Size(170, 162); this.grpGenesis500.TabIndex = 34; this.grpGenesis500.TabStop = false; this.grpGenesis500.Text = "Genesis G500"; this.grpGenesis500.Visible = false; // // grpGenesis40 // this.grpGenesis40.Controls.Add(this.udG40Xtal1); this.grpGenesis40.Location = new System.Drawing.Point(203, 14); this.grpGenesis40.Name = "grpGenesis40"; this.grpGenesis40.Size = new System.Drawing.Size(170, 162); this.grpGenesis40.TabIndex = 32; this.grpGenesis40.TabStop = false; this.grpGenesis40.Text = "Genesis G40"; this.grpGenesis40.Visible = false; // // grpGenesis3020 // this.grpGenesis3020.Controls.Add(this.udG3020Xtal4); this.grpGenesis3020.Controls.Add(this.udG3020Xtal3); this.grpGenesis3020.Controls.Add(this.udG3020Xtal2); this.grpGenesis3020.Controls.Add(this.udG3020Xtal1); this.grpGenesis3020.Location = new System.Drawing.Point(203, 14); this.grpGenesis3020.Name = "grpGenesis3020"; this.grpGenesis3020.Size = new System.Drawing.Size(170, 162); this.grpGenesis3020.TabIndex = 29; this.grpGenesis3020.TabStop = false; this.grpGenesis3020.Text = "Genesis G3020"; this.grpGenesis3020.Visible = false; // // tpGeneralOptions // this.tpGeneralOptions.Controls.Add(this.grpIRRemote); this.tpGeneralOptions.Controls.Add(this.grpAutoPWR); this.tpGeneralOptions.Controls.Add(this.grpMemoryZap); this.tpGeneralOptions.Controls.Add(this.grpOptMainConsole); this.tpGeneralOptions.Controls.Add(this.grpOptQuickQSY); this.tpGeneralOptions.Controls.Add(this.grpGenTuningOptions); this.tpGeneralOptions.Controls.Add(this.grpGeneralOptions); this.tpGeneralOptions.Controls.Add(this.grpGeneralProcessPriority); this.tpGeneralOptions.Location = new System.Drawing.Point(4, 22); this.tpGeneralOptions.Name = "tpGeneralOptions"; this.tpGeneralOptions.Size = new System.Drawing.Size(592, 318); this.tpGeneralOptions.TabIndex = 1; this.tpGeneralOptions.Text = "Options"; // // grpIRRemote // this.grpIRRemote.Controls.Add(this.chkWinLIRCenable); this.grpIRRemote.Controls.Add(this.udWinLIRCport); this.grpIRRemote.Controls.Add(this.labelTS63); this.grpIRRemote.Controls.Add(this.labelTS62); this.grpIRRemote.Controls.Add(this.txtWinLIRCaddress); this.grpIRRemote.Location = new System.Drawing.Point(378, 190); this.grpIRRemote.Name = "grpIRRemote"; this.grpIRRemote.Size = new System.Drawing.Size(187, 114); this.grpIRRemote.TabIndex = 31; this.grpIRRemote.TabStop = false; this.grpIRRemote.Text = "IR remote"; // // chkWinLIRCenable // this.chkWinLIRCenable.AutoSize = true; this.chkWinLIRCenable.Image = null; this.chkWinLIRCenable.Location = new System.Drawing.Point(24, 27); this.chkWinLIRCenable.Name = "chkWinLIRCenable"; this.chkWinLIRCenable.Size = new System.Drawing.Size(133, 17); this.chkWinLIRCenable.TabIndex = 5; this.chkWinLIRCenable.Text = "Enable WinLIRC client"; this.chkWinLIRCenable.UseVisualStyleBackColor = true; this.chkWinLIRCenable.CheckedChanged += new System.EventHandler(this.chkWinLIRCenable_CheckedChanged); // // udWinLIRCport // this.udWinLIRCport.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udWinLIRCport.Location = new System.Drawing.Point(119, 81); this.udWinLIRCport.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udWinLIRCport.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udWinLIRCport.Name = "udWinLIRCport"; this.udWinLIRCport.Size = new System.Drawing.Size(57, 20); this.udWinLIRCport.TabIndex = 4; this.udWinLIRCport.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udWinLIRCport.Value = new decimal(new int[] { 8765, 0, 0, 0}); // // labelTS63 // this.labelTS63.AutoSize = true; this.labelTS63.Image = null; this.labelTS63.Location = new System.Drawing.Point(20, 83); this.labelTS63.Name = "labelTS63"; this.labelTS63.Size = new System.Drawing.Size(59, 13); this.labelTS63.TabIndex = 3; this.labelTS63.Text = "Server port"; // // labelTS62 // this.labelTS62.AutoSize = true; this.labelTS62.Image = null; this.labelTS62.Location = new System.Drawing.Point(20, 54); this.labelTS62.Name = "labelTS62"; this.labelTS62.Size = new System.Drawing.Size(65, 13); this.labelTS62.TabIndex = 1; this.labelTS62.Text = "Server addr."; // // txtWinLIRCaddress // this.txtWinLIRCaddress.Location = new System.Drawing.Point(86, 51); this.txtWinLIRCaddress.MaxLength = 32; this.txtWinLIRCaddress.Name = "txtWinLIRCaddress"; this.txtWinLIRCaddress.Size = new System.Drawing.Size(90, 20); this.txtWinLIRCaddress.TabIndex = 0; this.txtWinLIRCaddress.Text = "127.0.0.1"; this.txtWinLIRCaddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // grpAutoPWR // this.grpAutoPWR.Controls.Add(this.chkAutoPowerUp); this.grpAutoPWR.Location = new System.Drawing.Point(378, 86); this.grpAutoPWR.Name = "grpAutoPWR"; this.grpAutoPWR.Size = new System.Drawing.Size(144, 49); this.grpAutoPWR.TabIndex = 30; this.grpAutoPWR.TabStop = false; this.grpAutoPWR.Text = "Auto power"; // // grpMemoryZap // this.grpMemoryZap.Controls.Add(this.radMemoryZapDOWN); this.grpMemoryZap.Controls.Add(this.radMemoryZapUP); this.grpMemoryZap.Controls.Add(this.lblMemoryZapping); this.grpMemoryZap.Controls.Add(this.udMemoryZapping); this.grpMemoryZap.Location = new System.Drawing.Point(193, 86); this.grpMemoryZap.Name = "grpMemoryZap"; this.grpMemoryZap.Size = new System.Drawing.Size(144, 98); this.grpMemoryZap.TabIndex = 29; this.grpMemoryZap.TabStop = false; this.grpMemoryZap.Text = "Memory Zapping"; // // lblMemoryZapping // this.lblMemoryZapping.AutoSize = true; this.lblMemoryZapping.Image = null; this.lblMemoryZapping.Location = new System.Drawing.Point(13, 74); this.lblMemoryZapping.Name = "lblMemoryZapping"; this.lblMemoryZapping.Size = new System.Drawing.Size(51, 13); this.lblMemoryZapping.TabIndex = 1; this.lblMemoryZapping.Text = "Zap time:"; // // grpOptMainConsole // this.grpOptMainConsole.Controls.Add(this.chkOptAlwaysOnTop); this.grpOptMainConsole.Location = new System.Drawing.Point(378, 22); this.grpOptMainConsole.Name = "grpOptMainConsole"; this.grpOptMainConsole.Size = new System.Drawing.Size(144, 56); this.grpOptMainConsole.TabIndex = 28; this.grpOptMainConsole.TabStop = false; this.grpOptMainConsole.Text = "Main Console"; // // grpOptQuickQSY // this.grpOptQuickQSY.Controls.Add(this.chkOptEnableKBShortcuts); this.grpOptQuickQSY.Controls.Add(this.chkOptQuickQSY); this.grpOptQuickQSY.Location = new System.Drawing.Point(193, 225); this.grpOptQuickQSY.Name = "grpOptQuickQSY"; this.grpOptQuickQSY.Size = new System.Drawing.Size(144, 80); this.grpOptQuickQSY.TabIndex = 27; this.grpOptQuickQSY.TabStop = false; this.grpOptQuickQSY.Text = "Keyboard"; // // grpGenTuningOptions // this.grpGenTuningOptions.Controls.Add(this.lblOptClickTuneDIGL); this.grpGenTuningOptions.Controls.Add(this.udOptClickTuneOffsetDIGL); this.grpGenTuningOptions.Controls.Add(this.lblOptClickTuneDIGU); this.grpGenTuningOptions.Controls.Add(this.udOptClickTuneOffsetDIGU); this.grpGenTuningOptions.Location = new System.Drawing.Point(10, 225); this.grpGenTuningOptions.Name = "grpGenTuningOptions"; this.grpGenTuningOptions.Size = new System.Drawing.Size(144, 80); this.grpGenTuningOptions.TabIndex = 25; this.grpGenTuningOptions.TabStop = false; this.grpGenTuningOptions.Text = "Click Tune Offsets (Hz)"; // // lblOptClickTuneDIGL // this.lblOptClickTuneDIGL.Image = null; this.lblOptClickTuneDIGL.Location = new System.Drawing.Point(16, 48); this.lblOptClickTuneDIGL.Name = "lblOptClickTuneDIGL"; this.lblOptClickTuneDIGL.Size = new System.Drawing.Size(40, 23); this.lblOptClickTuneDIGL.TabIndex = 12; this.lblOptClickTuneDIGL.Text = "DIGL:"; // // udOptClickTuneOffsetDIGL // this.udOptClickTuneOffsetDIGL.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Location = new System.Drawing.Point(56, 48); this.udOptClickTuneOffsetDIGL.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Name = "udOptClickTuneOffsetDIGL"; this.udOptClickTuneOffsetDIGL.Size = new System.Drawing.Size(56, 20); this.udOptClickTuneOffsetDIGL.TabIndex = 11; this.udOptClickTuneOffsetDIGL.Value = new decimal(new int[] { 2210, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.ValueChanged += new System.EventHandler(this.udOptClickTuneOffsetDIGL_ValueChanged); this.udOptClickTuneOffsetDIGL.LostFocus += new System.EventHandler(this.udOptClickTuneOffsetDIGL_LostFocus); // // lblOptClickTuneDIGU // this.lblOptClickTuneDIGU.Image = null; this.lblOptClickTuneDIGU.Location = new System.Drawing.Point(16, 24); this.lblOptClickTuneDIGU.Name = "lblOptClickTuneDIGU"; this.lblOptClickTuneDIGU.Size = new System.Drawing.Size(40, 23); this.lblOptClickTuneDIGU.TabIndex = 10; this.lblOptClickTuneDIGU.Text = "DIGU:"; // // udOptClickTuneOffsetDIGU // this.udOptClickTuneOffsetDIGU.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Location = new System.Drawing.Point(56, 24); this.udOptClickTuneOffsetDIGU.Maximum = new decimal(new int[] { 9999, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Name = "udOptClickTuneOffsetDIGU"; this.udOptClickTuneOffsetDIGU.Size = new System.Drawing.Size(56, 20); this.udOptClickTuneOffsetDIGU.TabIndex = 0; this.udOptClickTuneOffsetDIGU.Value = new decimal(new int[] { 1200, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.ValueChanged += new System.EventHandler(this.udOptClickTuneOffsetDIGU_ValueChanged); this.udOptClickTuneOffsetDIGU.LostFocus += new System.EventHandler(this.udOptClickTuneOffsetDIGU_LostFocus); // // grpGeneralOptions // this.grpGeneralOptions.Controls.Add(this.labelTS64); this.grpGeneralOptions.Controls.Add(this.comboBandPlan); this.grpGeneralOptions.Controls.Add(this.chkVFOB_extend); this.grpGeneralOptions.Controls.Add(this.chkIARU); this.grpGeneralOptions.Controls.Add(this.chkGeneralDisablePTT); this.grpGeneralOptions.Location = new System.Drawing.Point(10, 22); this.grpGeneralOptions.Name = "grpGeneralOptions"; this.grpGeneralOptions.Size = new System.Drawing.Size(166, 151); this.grpGeneralOptions.TabIndex = 6; this.grpGeneralOptions.TabStop = false; this.grpGeneralOptions.Text = "Options"; // // labelTS64 // this.labelTS64.Image = null; this.labelTS64.Location = new System.Drawing.Point(95, 113); this.labelTS64.Name = "labelTS64"; this.labelTS64.Size = new System.Drawing.Size(55, 24); this.labelTS64.TabIndex = 7; this.labelTS64.Text = "Band plan"; // // grpGeneralProcessPriority // this.grpGeneralProcessPriority.Controls.Add(this.comboGeneralProcessPriority); this.grpGeneralProcessPriority.Location = new System.Drawing.Point(193, 22); this.grpGeneralProcessPriority.Name = "grpGeneralProcessPriority"; this.grpGeneralProcessPriority.Size = new System.Drawing.Size(144, 56); this.grpGeneralProcessPriority.TabIndex = 23; this.grpGeneralProcessPriority.TabStop = false; this.grpGeneralProcessPriority.Text = "Process Priority"; // // tpGeneralCalibration // this.tpGeneralCalibration.Controls.Add(this.grpWBIR); this.tpGeneralCalibration.Controls.Add(this.btnAbortCalibration); this.tpGeneralCalibration.Controls.Add(this.lblProgress); this.tpGeneralCalibration.Controls.Add(this.progressCalibration); this.tpGeneralCalibration.Controls.Add(this.grpGenCalRXImage); this.tpGeneralCalibration.Controls.Add(this.grpGenCalLevel); this.tpGeneralCalibration.Location = new System.Drawing.Point(4, 22); this.tpGeneralCalibration.Name = "tpGeneralCalibration"; this.tpGeneralCalibration.Size = new System.Drawing.Size(592, 318); this.tpGeneralCalibration.TabIndex = 2; this.tpGeneralCalibration.Text = "Calibration"; // // grpWBIR // this.grpWBIR.Controls.Add(this.btnRXEraseAll); this.grpWBIR.Controls.Add(this.btnRXSaveAll); this.grpWBIR.Controls.Add(this.btnRXEraseBand); this.grpWBIR.Controls.Add(this.btnRXSaveBand); this.grpWBIR.Controls.Add(this.labelTS56); this.grpWBIR.Controls.Add(this.udRXGain); this.grpWBIR.Controls.Add(this.tbRXGain); this.grpWBIR.Controls.Add(this.labelTS55); this.grpWBIR.Controls.Add(this.tbRXPhase); this.grpWBIR.Controls.Add(this.udRXPhase); this.grpWBIR.Controls.Add(this.chkWBIRfixed); this.grpWBIR.Controls.Add(this.lblWBIRTime); this.grpWBIR.Controls.Add(this.udWBIRTime); this.grpWBIR.Controls.Add(this.btnWBIRStart); this.grpWBIR.Controls.Add(this.btnWBIRStop); this.grpWBIR.Location = new System.Drawing.Point(325, 72); this.grpWBIR.Name = "grpWBIR"; this.grpWBIR.Size = new System.Drawing.Size(203, 231); this.grpWBIR.TabIndex = 13; this.grpWBIR.TabStop = false; this.grpWBIR.Text = "WBIR"; // // btnRXEraseAll // this.btnRXEraseAll.Image = null; this.btnRXEraseAll.Location = new System.Drawing.Point(102, 202); this.btnRXEraseAll.Name = "btnRXEraseAll"; this.btnRXEraseAll.Size = new System.Drawing.Size(80, 23); this.btnRXEraseAll.TabIndex = 56; this.btnRXEraseAll.Text = "Reset all"; this.btnRXEraseAll.UseVisualStyleBackColor = true; this.btnRXEraseAll.Click += new System.EventHandler(this.btnRXEraseAll_Click); // // btnRXSaveAll // this.btnRXSaveAll.Image = null; this.btnRXSaveAll.Location = new System.Drawing.Point(20, 202); this.btnRXSaveAll.Name = "btnRXSaveAll"; this.btnRXSaveAll.Size = new System.Drawing.Size(80, 23); this.btnRXSaveAll.TabIndex = 55; this.btnRXSaveAll.Text = "Save all"; this.btnRXSaveAll.UseVisualStyleBackColor = true; this.btnRXSaveAll.Click += new System.EventHandler(this.btnRXSaveAll_Click); // // btnRXEraseBand // this.btnRXEraseBand.Image = null; this.btnRXEraseBand.Location = new System.Drawing.Point(102, 176); this.btnRXEraseBand.Name = "btnRXEraseBand"; this.btnRXEraseBand.Size = new System.Drawing.Size(80, 23); this.btnRXEraseBand.TabIndex = 54; this.btnRXEraseBand.Text = "Reset band"; this.btnRXEraseBand.UseVisualStyleBackColor = true; this.btnRXEraseBand.Click += new System.EventHandler(this.btnRXEraseBand_Click); // // btnRXSaveBand // this.btnRXSaveBand.Image = null; this.btnRXSaveBand.Location = new System.Drawing.Point(20, 176); this.btnRXSaveBand.Name = "btnRXSaveBand"; this.btnRXSaveBand.Size = new System.Drawing.Size(80, 23); this.btnRXSaveBand.TabIndex = 53; this.btnRXSaveBand.Text = "Save band"; this.btnRXSaveBand.UseVisualStyleBackColor = true; this.btnRXSaveBand.Click += new System.EventHandler(this.btnRXSaveBand_Click); // // labelTS56 // this.labelTS56.AutoSize = true; this.labelTS56.Image = null; this.labelTS56.Location = new System.Drawing.Point(26, 131); this.labelTS56.Name = "labelTS56"; this.labelTS56.Size = new System.Drawing.Size(29, 13); this.labelTS56.TabIndex = 52; this.labelTS56.Text = "Gain"; // // udRXGain // this.udRXGain.DecimalPlaces = 2; this.udRXGain.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udRXGain.Location = new System.Drawing.Point(21, 148); this.udRXGain.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udRXGain.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udRXGain.Name = "udRXGain"; this.udRXGain.Size = new System.Drawing.Size(60, 20); this.udRXGain.TabIndex = 51; this.udRXGain.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udRXGain.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udRXGain.ValueChanged += new System.EventHandler(this.udRXGain_ValueChanged); // // tbRXGain // this.tbRXGain.AutoSize = false; this.tbRXGain.Location = new System.Drawing.Point(92, 145); this.tbRXGain.Maximum = 200; this.tbRXGain.Minimum = -200; this.tbRXGain.Name = "tbRXGain"; this.tbRXGain.Size = new System.Drawing.Size(105, 25); this.tbRXGain.TabIndex = 50; this.tbRXGain.TickFrequency = 50; this.tbRXGain.Scroll += new System.EventHandler(this.tbRXGain_Scroll); // // labelTS55 // this.labelTS55.AutoSize = true; this.labelTS55.Image = null; this.labelTS55.Location = new System.Drawing.Point(26, 90); this.labelTS55.Name = "labelTS55"; this.labelTS55.Size = new System.Drawing.Size(37, 13); this.labelTS55.TabIndex = 49; this.labelTS55.Text = "Phase"; // // tbRXPhase // this.tbRXPhase.AutoSize = false; this.tbRXPhase.Location = new System.Drawing.Point(92, 106); this.tbRXPhase.Maximum = 200; this.tbRXPhase.Minimum = -200; this.tbRXPhase.Name = "tbRXPhase"; this.tbRXPhase.Size = new System.Drawing.Size(105, 25); this.tbRXPhase.TabIndex = 48; this.tbRXPhase.TickFrequency = 50; this.tbRXPhase.Scroll += new System.EventHandler(this.tbRXPhase_Scroll); // // udRXPhase // this.udRXPhase.DecimalPlaces = 2; this.udRXPhase.Increment = new decimal(new int[] { 1, 0, 0, 131072}); this.udRXPhase.Location = new System.Drawing.Point(21, 107); this.udRXPhase.Maximum = new decimal(new int[] { 200, 0, 0, 0}); this.udRXPhase.Minimum = new decimal(new int[] { 200, 0, 0, -2147483648}); this.udRXPhase.Name = "udRXPhase"; this.udRXPhase.Size = new System.Drawing.Size(60, 20); this.udRXPhase.TabIndex = 47; this.udRXPhase.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udRXPhase.Value = new decimal(new int[] { 0, 0, 0, 0}); this.udRXPhase.ValueChanged += new System.EventHandler(this.udRXPhase_ValueChanged); // // chkWBIRfixed // this.chkWBIRfixed.AutoSize = true; this.chkWBIRfixed.Image = null; this.chkWBIRfixed.Location = new System.Drawing.Point(21, 71); this.chkWBIRfixed.Name = "chkWBIRfixed"; this.chkWBIRfixed.Size = new System.Drawing.Size(83, 17); this.chkWBIRfixed.TabIndex = 44; this.chkWBIRfixed.Text = "WBIR Fixed"; this.chkWBIRfixed.UseVisualStyleBackColor = true; this.chkWBIRfixed.CheckedChanged += new System.EventHandler(this.chkWBIRfixed_CheckedChanged); // // lblWBIRTime // this.lblWBIRTime.AutoSize = true; this.lblWBIRTime.Image = null; this.lblWBIRTime.Location = new System.Drawing.Point(20, 50); this.lblWBIRTime.Name = "lblWBIRTime"; this.lblWBIRTime.Size = new System.Drawing.Size(67, 13); this.lblWBIRTime.TabIndex = 43; this.lblWBIRTime.Text = "TX/RX Time"; // // lblProgress // this.lblProgress.AutoSize = true; this.lblProgress.Image = null; this.lblProgress.Location = new System.Drawing.Point(117, 207); this.lblProgress.Name = "lblProgress"; this.lblProgress.Size = new System.Drawing.Size(99, 13); this.lblProgress.TabIndex = 11; this.lblProgress.Text = "Calibration progress"; // // progressCalibration // this.progressCalibration.Location = new System.Drawing.Point(52, 235); this.progressCalibration.Name = "progressCalibration"; this.progressCalibration.Size = new System.Drawing.Size(234, 23); this.progressCalibration.Step = 1; this.progressCalibration.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.progressCalibration.TabIndex = 10; // // grpGenCalRXImage // this.grpGenCalRXImage.Controls.Add(this.btnGeneralCalImageSave); this.grpGenCalRXImage.Controls.Add(this.btnGeneralCalImageReset); this.grpGenCalRXImage.Location = new System.Drawing.Point(323, 13); this.grpGenCalRXImage.Name = "grpGenCalRXImage"; this.grpGenCalRXImage.Size = new System.Drawing.Size(205, 56); this.grpGenCalRXImage.TabIndex = 9; this.grpGenCalRXImage.TabStop = false; this.grpGenCalRXImage.Text = "RX Image Reject Cal"; // // grpGenCalLevel // this.grpGenCalLevel.Controls.Add(this.udDisplayCalValue); this.grpGenCalLevel.Controls.Add(this.lblDisplayCalValue); this.grpGenCalLevel.Controls.Add(this.udMultimeterCalValue); this.grpGenCalLevel.Controls.Add(this.lblLevelCalValue); this.grpGenCalLevel.Controls.Add(this.udGeneralCalLevel); this.grpGenCalLevel.Controls.Add(this.udGeneralCalFreq2); this.grpGenCalLevel.Controls.Add(this.lblGenCalLevelFreq); this.grpGenCalLevel.Controls.Add(this.lblGeneralCalLevel); this.grpGenCalLevel.Controls.Add(this.btnGeneralCalLevelStart); this.grpGenCalLevel.Location = new System.Drawing.Point(78, 22); this.grpGenCalLevel.Name = "grpGenCalLevel"; this.grpGenCalLevel.Size = new System.Drawing.Size(168, 170); this.grpGenCalLevel.TabIndex = 8; this.grpGenCalLevel.TabStop = false; this.grpGenCalLevel.Text = "Level Cal"; // // lblDisplayCalValue // this.lblDisplayCalValue.Image = null; this.lblDisplayCalValue.Location = new System.Drawing.Point(11, 105); this.lblDisplayCalValue.Name = "lblDisplayCalValue"; this.lblDisplayCalValue.Size = new System.Drawing.Size(68, 19); this.lblDisplayCalValue.TabIndex = 7; this.lblDisplayCalValue.Text = "Display val."; this.lblDisplayCalValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblLevelCalValue // this.lblLevelCalValue.Image = null; this.lblLevelCalValue.Location = new System.Drawing.Point(10, 80); this.lblLevelCalValue.Name = "lblLevelCalValue"; this.lblLevelCalValue.Size = new System.Drawing.Size(68, 19); this.lblLevelCalValue.TabIndex = 5; this.lblLevelCalValue.Text = "SMeter val."; this.lblLevelCalValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblGenCalLevelFreq // this.lblGenCalLevelFreq.Image = null; this.lblGenCalLevelFreq.Location = new System.Drawing.Point(12, 24); this.lblGenCalLevelFreq.Name = "lblGenCalLevelFreq"; this.lblGenCalLevelFreq.Size = new System.Drawing.Size(64, 23); this.lblGenCalLevelFreq.TabIndex = 0; this.lblGenCalLevelFreq.Text = "Frequency:"; // // lblGeneralCalLevel // this.lblGeneralCalLevel.Image = null; this.lblGeneralCalLevel.Location = new System.Drawing.Point(12, 52); this.lblGeneralCalLevel.Name = "lblGeneralCalLevel"; this.lblGeneralCalLevel.Size = new System.Drawing.Size(68, 19); this.lblGeneralCalLevel.TabIndex = 2; this.lblGeneralCalLevel.Text = "Level (dBm):"; // // tpFilters // this.tpFilters.Controls.Add(this.grpOptFilterControls); this.tpFilters.Location = new System.Drawing.Point(4, 22); this.tpFilters.Name = "tpFilters"; this.tpFilters.Size = new System.Drawing.Size(592, 318); this.tpFilters.TabIndex = 3; this.tpFilters.Text = "Filters"; // // grpOptFilterControls // this.grpOptFilterControls.Controls.Add(this.udFilterDefaultLowCut); this.grpOptFilterControls.Controls.Add(this.lblDefaultLowCut); this.grpOptFilterControls.Controls.Add(this.udOptMaxFilterShift); this.grpOptFilterControls.Controls.Add(this.lblOptMaxFilterShift); this.grpOptFilterControls.Controls.Add(this.comboOptFilterWidthMode); this.grpOptFilterControls.Controls.Add(this.lblOptWidthSliderMode); this.grpOptFilterControls.Controls.Add(this.udOptMaxFilterWidth); this.grpOptFilterControls.Controls.Add(this.lblOptMaxFilter); this.grpOptFilterControls.Controls.Add(this.chkOptFilterSaveChanges); this.grpOptFilterControls.Location = new System.Drawing.Point(8, 8); this.grpOptFilterControls.Name = "grpOptFilterControls"; this.grpOptFilterControls.Size = new System.Drawing.Size(200, 152); this.grpOptFilterControls.TabIndex = 29; this.grpOptFilterControls.TabStop = false; this.grpOptFilterControls.Text = "Filter Controls"; // // lblDefaultLowCut // this.lblDefaultLowCut.Image = null; this.lblDefaultLowCut.Location = new System.Drawing.Point(16, 120); this.lblDefaultLowCut.Name = "lblDefaultLowCut"; this.lblDefaultLowCut.Size = new System.Drawing.Size(120, 23); this.lblDefaultLowCut.TabIndex = 16; this.lblDefaultLowCut.Text = "Default Low Cut (Hz):"; // // lblOptMaxFilterShift // this.lblOptMaxFilterShift.Image = null; this.lblOptMaxFilterShift.Location = new System.Drawing.Point(16, 72); this.lblOptMaxFilterShift.Name = "lblOptMaxFilterShift"; this.lblOptMaxFilterShift.Size = new System.Drawing.Size(120, 23); this.lblOptMaxFilterShift.TabIndex = 14; this.lblOptMaxFilterShift.Text = "Max Filter Shift (Hz):"; // // lblOptWidthSliderMode // this.lblOptWidthSliderMode.Image = null; this.lblOptWidthSliderMode.Location = new System.Drawing.Point(16, 48); this.lblOptWidthSliderMode.Name = "lblOptWidthSliderMode"; this.lblOptWidthSliderMode.Size = new System.Drawing.Size(104, 16); this.lblOptWidthSliderMode.TabIndex = 11; this.lblOptWidthSliderMode.Text = "Width Slider Mode:"; // // lblOptMaxFilter // this.lblOptMaxFilter.Image = null; this.lblOptMaxFilter.Location = new System.Drawing.Point(16, 24); this.lblOptMaxFilter.Name = "lblOptMaxFilter"; this.lblOptMaxFilter.Size = new System.Drawing.Size(120, 23); this.lblOptMaxFilter.TabIndex = 10; this.lblOptMaxFilter.Text = "Max Filter Width (Hz):"; // // tpGenesisOption // this.tpGenesisOption.BackColor = System.Drawing.SystemColors.Control; this.tpGenesisOption.Controls.Add(this.grpG59Keyer); this.tpGenesisOption.Controls.Add(this.grpSi570); this.tpGenesisOption.Controls.Add(this.grpGenesisConnection); this.tpGenesisOption.Controls.Add(this.grpGenesisUSB); this.tpGenesisOption.Location = new System.Drawing.Point(4, 22); this.tpGenesisOption.Name = "tpGenesisOption"; this.tpGenesisOption.Padding = new System.Windows.Forms.Padding(3); this.tpGenesisOption.Size = new System.Drawing.Size(592, 318); this.tpGenesisOption.TabIndex = 4; this.tpGenesisOption.Text = "Genesis config"; // // grpG59Keyer // this.grpG59Keyer.Controls.Add(this.chkIambicBMode); this.grpG59Keyer.Controls.Add(this.lblG59CWCorrection); this.grpG59Keyer.Controls.Add(this.udG59CWSpeedCorr); this.grpG59Keyer.Controls.Add(this.chkG59KeyerAutoCorrection); this.grpG59Keyer.Controls.Add(this.lblG59_DASH_DOT_ratio); this.grpG59Keyer.Controls.Add(this.udG59DASH_DOT_ratio); this.grpG59Keyer.Controls.Add(this.lblG59CWSPEED); this.grpG59Keyer.Controls.Add(this.chkIambicReverse); this.grpG59Keyer.Controls.Add(this.udG59CWSpeed); this.grpG59Keyer.Controls.Add(this.chkGenesisIambic); this.grpG59Keyer.Location = new System.Drawing.Point(395, 26); this.grpG59Keyer.Name = "grpG59Keyer"; this.grpG59Keyer.Size = new System.Drawing.Size(163, 245); this.grpG59Keyer.TabIndex = 44; this.grpG59Keyer.TabStop = false; this.grpG59Keyer.Text = "Keyer option"; // // lblG59CWCorrection // this.lblG59CWCorrection.AutoSize = true; this.lblG59CWCorrection.Image = null; this.lblG59CWCorrection.Location = new System.Drawing.Point(23, 183); this.lblG59CWCorrection.Name = "lblG59CWCorrection"; this.lblG59CWCorrection.Size = new System.Drawing.Size(55, 13); this.lblG59CWCorrection.TabIndex = 8; this.lblG59CWCorrection.Text = "Correction"; // // lblG59CWSPEED // this.lblG59CWSPEED.AutoSize = true; this.lblG59CWSPEED.Image = null; this.lblG59CWSPEED.Location = new System.Drawing.Point(23, 153); this.lblG59CWSPEED.Name = "lblG59CWSPEED"; this.lblG59CWSPEED.Size = new System.Drawing.Size(59, 13); this.lblG59CWSPEED.TabIndex = 3; this.lblG59CWSPEED.Text = "CW Speed"; // // chkGenesisIambic // this.chkGenesisIambic.AutoSize = true; this.chkGenesisIambic.Image = null; this.chkGenesisIambic.Location = new System.Drawing.Point(25, 31); this.chkGenesisIambic.Name = "chkGenesisIambic"; this.chkGenesisIambic.Size = new System.Drawing.Size(57, 17); this.chkGenesisIambic.TabIndex = 0; this.chkGenesisIambic.Text = "Iambic"; this.chkGenesisIambic.UseVisualStyleBackColor = true; this.chkGenesisIambic.CheckedChanged += new System.EventHandler(this.chkG59Iambic_CheckedChanged); // // grpSi570 // this.grpSi570.Controls.Add(this.lblFDCmax); this.grpSi570.Controls.Add(this.udFDCOmax); this.grpSi570.Controls.Add(this.lblFDCOmin); this.grpSi570.Controls.Add(this.udFDCOmin); this.grpSi570.Controls.Add(this.chkG59SmoothTuning); this.grpSi570.Controls.Add(this.lblSi570_ref_osc3); this.grpSi570.Controls.Add(this.udSi570_xtal3); this.grpSi570.Controls.Add(this.lblSi570_ref_osc2); this.grpSi570.Controls.Add(this.udSi570_xtal2); this.grpSi570.Controls.Add(this.btnSi570Test); this.grpSi570.Controls.Add(this.labelTS5); this.grpSi570.Controls.Add(this.udSi570_divisor); this.grpSi570.Controls.Add(this.labelTS4); this.grpSi570.Controls.Add(this.udSi570_address); this.grpSi570.Controls.Add(this.lblSi570_ref_osc1); this.grpSi570.Controls.Add(this.udSi570_xtal1); this.grpSi570.Location = new System.Drawing.Point(178, 26); this.grpSi570.Name = "grpSi570"; this.grpSi570.Size = new System.Drawing.Size(206, 245); this.grpSi570.TabIndex = 43; this.grpSi570.TabStop = false; this.grpSi570.Text = "Genesis Si570 settings"; // // lblFDCmax // this.lblFDCmax.AutoSize = true; this.lblFDCmax.Image = null; this.lblFDCmax.Location = new System.Drawing.Point(18, 165); this.lblFDCmax.Name = "lblFDCmax"; this.lblFDCmax.Size = new System.Drawing.Size(55, 13); this.lblFDCmax.TabIndex = 16; this.lblFDCmax.Text = "FDCOmax"; // // lblFDCOmin // this.lblFDCOmin.AutoSize = true; this.lblFDCOmin.Image = null; this.lblFDCOmin.Location = new System.Drawing.Point(18, 141); this.lblFDCOmin.Name = "lblFDCOmin"; this.lblFDCOmin.Size = new System.Drawing.Size(52, 13); this.lblFDCOmin.TabIndex = 14; this.lblFDCOmin.Text = "FDCOmin"; // // chkG59SmoothTuning // this.chkG59SmoothTuning.AutoSize = true; this.chkG59SmoothTuning.Image = null; this.chkG59SmoothTuning.Location = new System.Drawing.Point(19, 187); this.chkG59SmoothTuning.Name = "chkG59SmoothTuning"; this.chkG59SmoothTuning.Size = new System.Drawing.Size(94, 17); this.chkG59SmoothTuning.TabIndex = 12; this.chkG59SmoothTuning.Text = "Smooth tuning"; this.chkG59SmoothTuning.UseVisualStyleBackColor = true; this.chkG59SmoothTuning.CheckedChanged += new System.EventHandler(this.chkG59SmoothTuning_CheckedChanged); // // labelTS5 // this.labelTS5.AutoSize = true; this.labelTS5.Image = null; this.labelTS5.Location = new System.Drawing.Point(21, 93); this.labelTS5.Name = "labelTS5"; this.labelTS5.Size = new System.Drawing.Size(39, 13); this.labelTS5.TabIndex = 5; this.labelTS5.Text = "Divisor"; // // labelTS4 // this.labelTS4.AutoSize = true; this.labelTS4.Image = null; this.labelTS4.Location = new System.Drawing.Point(18, 117); this.labelTS4.Name = "labelTS4"; this.labelTS4.Size = new System.Drawing.Size(74, 13); this.labelTS4.TabIndex = 3; this.labelTS4.Text = "Si570 address"; // // grpGenesisConnection // this.grpGenesisConnection.Controls.Add(this.chkDTR_CWMonitor); this.grpGenesisConnection.Controls.Add(this.comboKeyerConnPrimary); this.grpGenesisConnection.Controls.Add(this.lblKeyerConnPrimary); this.grpGenesisConnection.Location = new System.Drawing.Point(23, 26); this.grpGenesisConnection.Name = "grpGenesisConnection"; this.grpGenesisConnection.Size = new System.Drawing.Size(145, 95); this.grpGenesisConnection.TabIndex = 42; this.grpGenesisConnection.TabStop = false; this.grpGenesisConnection.Text = "Port connection"; // // grpGenesisUSB // this.grpGenesisUSB.Controls.Add(this.chkUSBSerialNo); this.grpGenesisUSB.Controls.Add(this.lblUSBSerialNo); this.grpGenesisUSB.Controls.Add(this.udUSBSerialNo); this.grpGenesisUSB.Controls.Add(this.VID_TextBox); this.grpGenesisUSB.Controls.Add(this.PID_TextBox); this.grpGenesisUSB.Controls.Add(this.label4); this.grpGenesisUSB.Controls.Add(this.label2); this.grpGenesisUSB.Location = new System.Drawing.Point(23, 127); this.grpGenesisUSB.Name = "grpGenesisUSB"; this.grpGenesisUSB.Size = new System.Drawing.Size(145, 145); this.grpGenesisUSB.TabIndex = 27; this.grpGenesisUSB.TabStop = false; this.grpGenesisUSB.Text = "USB option"; // // lblUSBSerialNo // this.lblUSBSerialNo.AutoSize = true; this.lblUSBSerialNo.Location = new System.Drawing.Point(83, 119); this.lblUSBSerialNo.Name = "lblUSBSerialNo"; this.lblUSBSerialNo.Size = new System.Drawing.Size(53, 13); this.lblUSBSerialNo.TabIndex = 18; this.lblUSBSerialNo.Text = "Serial No."; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(97, 86); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(25, 13); this.label4.TabIndex = 3; this.label4.Text = "PID"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(97, 55); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(25, 13); this.label2.TabIndex = 2; this.label2.Text = "VID"; // // radExtATUBypass // this.radExtATUBypass.AutoSize = true; this.radExtATUBypass.Image = null; this.radExtATUBypass.Location = new System.Drawing.Point(25, 76); this.radExtATUBypass.Name = "radExtATUBypass"; this.radExtATUBypass.Size = new System.Drawing.Size(59, 17); this.radExtATUBypass.TabIndex = 12; this.radExtATUBypass.Text = "Bypass"; this.radExtATUBypass.UseVisualStyleBackColor = true; this.radExtATUBypass.CheckedChanged += new System.EventHandler(this.radExtATUBypass_CheckedChanged); // // radExtATUMemTune // this.radExtATUMemTune.AutoSize = true; this.radExtATUMemTune.Image = null; this.radExtATUMemTune.Location = new System.Drawing.Point(25, 49); this.radExtATUMemTune.Name = "radExtATUMemTune"; this.radExtATUMemTune.Size = new System.Drawing.Size(95, 17); this.radExtATUMemTune.TabIndex = 11; this.radExtATUMemTune.Text = "Memory TUNE"; this.radExtATUMemTune.UseVisualStyleBackColor = true; this.radExtATUMemTune.CheckedChanged += new System.EventHandler(this.radExtATUMemTune_CheckedChanged); // // radExtATUFullTune // this.radExtATUFullTune.AutoSize = true; this.radExtATUFullTune.Checked = true; this.radExtATUFullTune.Image = null; this.radExtATUFullTune.Location = new System.Drawing.Point(25, 22); this.radExtATUFullTune.Name = "radExtATUFullTune"; this.radExtATUFullTune.Size = new System.Drawing.Size(74, 17); this.radExtATUFullTune.TabIndex = 10; this.radExtATUFullTune.TabStop = true; this.radExtATUFullTune.Text = "Full TUNE"; this.radExtATUFullTune.UseVisualStyleBackColor = true; this.radExtATUFullTune.CheckedChanged += new System.EventHandler(this.radExtATUFullTune_CheckedChanged); // // tcSetup // this.tcSetup.Controls.Add(this.tpGeneral); this.tcSetup.Controls.Add(this.tpAudio); this.tcSetup.Controls.Add(this.tpDisplay); this.tcSetup.Controls.Add(this.tpDSP); this.tcSetup.Controls.Add(this.tpTransmit); this.tcSetup.Controls.Add(this.tpPowerAmplifier); this.tcSetup.Controls.Add(this.tpATU); this.tcSetup.Controls.Add(this.tpAppearance); this.tcSetup.Controls.Add(this.tpKeyboard); this.tcSetup.Controls.Add(this.tpTests); this.tcSetup.Controls.Add(this.tpCAT); this.tcSetup.Controls.Add(this.tabPage2); this.tcSetup.Location = new System.Drawing.Point(8, 8); this.tcSetup.Name = "tcSetup"; this.tcSetup.SelectedIndex = 0; this.tcSetup.Size = new System.Drawing.Size(592, 357); this.tcSetup.TabIndex = 16; // // tpATU // this.tpATU.BackColor = System.Drawing.SystemColors.Control; this.tpATU.Controls.Add(this.chkExtATU); this.tpATU.Controls.Add(this.grpExtATU); this.tpATU.Location = new System.Drawing.Point(4, 22); this.tpATU.Name = "tpATU"; this.tpATU.Padding = new System.Windows.Forms.Padding(3); this.tpATU.Size = new System.Drawing.Size(584, 331); this.tpATU.TabIndex = 9; this.tpATU.Text = "ATU settings"; // // grpExtATU // this.grpExtATU.Controls.Add(this.chkATUquickTUN); this.grpExtATU.Controls.Add(this.grpATUTiming); this.grpExtATU.Controls.Add(this.grpATUMode); this.grpExtATU.Enabled = false; this.grpExtATU.Location = new System.Drawing.Point(134, 21); this.grpExtATU.Name = "grpExtATU"; this.grpExtATU.Size = new System.Drawing.Size(433, 289); this.grpExtATU.TabIndex = 1; this.grpExtATU.TabStop = false; this.grpExtATU.Text = "ATU settings"; // // grpATUTiming // this.grpATUTiming.Controls.Add(this.labelTS16); this.grpATUTiming.Controls.Add(this.udATUCarrierTime); this.grpATUTiming.Controls.Add(this.lblATUBypass); this.grpATUTiming.Controls.Add(this.lblATUMemoryTune); this.grpATUTiming.Controls.Add(this.lblATUFullTune); this.grpATUTiming.Controls.Add(this.udATUBypass); this.grpATUTiming.Controls.Add(this.udATUMemoryTune); this.grpATUTiming.Controls.Add(this.udATUFullTune); this.grpATUTiming.Location = new System.Drawing.Point(197, 25); this.grpATUTiming.Name = "grpATUTiming"; this.grpATUTiming.Size = new System.Drawing.Size(200, 170); this.grpATUTiming.TabIndex = 14; this.grpATUTiming.TabStop = false; this.grpATUTiming.Text = "ATU timing"; // // labelTS16 // this.labelTS16.AutoSize = true; this.labelTS16.Image = null; this.labelTS16.Location = new System.Drawing.Point(32, 139); this.labelTS16.Name = "labelTS16"; this.labelTS16.Size = new System.Drawing.Size(65, 13); this.labelTS16.TabIndex = 7; this.labelTS16.Text = "Carrier delay"; // // lblATUBypass // this.lblATUBypass.AutoSize = true; this.lblATUBypass.Image = null; this.lblATUBypass.Location = new System.Drawing.Point(32, 102); this.lblATUBypass.Name = "lblATUBypass"; this.lblATUBypass.Size = new System.Drawing.Size(41, 13); this.lblATUBypass.TabIndex = 5; this.lblATUBypass.Text = "Bypass"; // // lblATUMemoryTune // this.lblATUMemoryTune.AutoSize = true; this.lblATUMemoryTune.Image = null; this.lblATUMemoryTune.Location = new System.Drawing.Point(32, 65); this.lblATUMemoryTune.Name = "lblATUMemoryTune"; this.lblATUMemoryTune.Size = new System.Drawing.Size(77, 13); this.lblATUMemoryTune.TabIndex = 4; this.lblATUMemoryTune.Text = "Memory TUNE"; // // grpATUMode // this.grpATUMode.Controls.Add(this.radExtATUMemTune); this.grpATUMode.Controls.Add(this.radExtATUBypass); this.grpATUMode.Controls.Add(this.radExtATUFullTune); this.grpATUMode.Location = new System.Drawing.Point(35, 25); this.grpATUMode.Name = "grpATUMode"; this.grpATUMode.Size = new System.Drawing.Size(135, 114); this.grpATUMode.TabIndex = 13; this.grpATUMode.TabStop = false; this.grpATUMode.Text = "ATU mode"; // // tpCAT // this.tpCAT.Controls.Add(this.tcCAT); this.tpCAT.Location = new System.Drawing.Point(4, 22); this.tpCAT.Name = "tpCAT"; this.tpCAT.Size = new System.Drawing.Size(584, 331); this.tpCAT.TabIndex = 0; this.tpCAT.Text = "CAT"; // // tcCAT // this.tcCAT.Controls.Add(this.tpCATCOM); this.tcCAT.Controls.Add(this.tpServerClient); this.tcCAT.Controls.Add(this.tpMultiPSK); this.tcCAT.Location = new System.Drawing.Point(0, 0); this.tcCAT.Name = "tcCAT"; this.tcCAT.SelectedIndex = 0; this.tcCAT.Size = new System.Drawing.Size(600, 344); this.tcCAT.TabIndex = 0; // // tpCATCOM // this.tpCATCOM.BackColor = System.Drawing.SystemColors.Control; this.tpCATCOM.Controls.Add(this.grpCATIcom); this.tpCATCOM.Controls.Add(this.grpCATOverEthernet); this.tpCATCOM.Controls.Add(this.lblCATRigType); this.tpCATCOM.Controls.Add(this.comboCATRigType); this.tpCATCOM.Controls.Add(this.grpPTTBitBang); this.tpCATCOM.Controls.Add(this.grpCatControlBox); this.tpCATCOM.Location = new System.Drawing.Point(4, 22); this.tpCATCOM.Name = "tpCATCOM"; this.tpCATCOM.Size = new System.Drawing.Size(592, 318); this.tpCATCOM.TabIndex = 0; this.tpCATCOM.Text = "CAT COM Control"; // // grpCATIcom // this.grpCATIcom.Controls.Add(this.chkCATEcho); this.grpCATIcom.Controls.Add(this.udCATCI_V); this.grpCATIcom.Controls.Add(this.labelTS59); this.grpCATIcom.Location = new System.Drawing.Point(218, 223); this.grpCATIcom.Name = "grpCATIcom"; this.grpCATIcom.Size = new System.Drawing.Size(127, 77); this.grpCATIcom.TabIndex = 97; this.grpCATIcom.TabStop = false; this.grpCATIcom.Text = "Icom"; // // chkCATEcho // this.chkCATEcho.AutoSize = true; this.chkCATEcho.Image = null; this.chkCATEcho.Location = new System.Drawing.Point(20, 41); this.chkCATEcho.Name = "chkCATEcho"; this.chkCATEcho.Size = new System.Drawing.Size(75, 17); this.chkCATEcho.TabIndex = 125; this.chkCATEcho.Text = "Echo data"; this.chkCATEcho.CheckedChanged += new System.EventHandler(this.chkCATEcho_CheckedChanged); // // grpCATOverEthernet // this.grpCATOverEthernet.Controls.Add(this.chkCAT_HRDserver); this.grpCATOverEthernet.Controls.Add(this.lblCATEthServerWatchdogTime); this.grpCATOverEthernet.Controls.Add(this.udCATEthServerWatchdogTime); this.grpCATOverEthernet.Controls.Add(this.lblCATEthCollTime); this.grpCATOverEthernet.Controls.Add(this.udCATEthCollTime); this.grpCATOverEthernet.Controls.Add(this.chkCATEthIPv6); this.grpCATOverEthernet.Controls.Add(this.txtCATServerIPAddress); this.grpCATOverEthernet.Controls.Add(this.lblCATServerAddress); this.grpCATOverEthernet.Controls.Add(this.lblCATServerPort); this.grpCATOverEthernet.Controls.Add(this.udCATServerPort); this.grpCATOverEthernet.Controls.Add(this.chkCATClient); this.grpCATOverEthernet.Controls.Add(this.txtCATLocalIPAddress); this.grpCATOverEthernet.Controls.Add(this.lblCATIPAddress); this.grpCATOverEthernet.Controls.Add(this.txtCATpassword); this.grpCATOverEthernet.Controls.Add(this.labelTS12); this.grpCATOverEthernet.Controls.Add(this.chkCATServer); this.grpCATOverEthernet.Location = new System.Drawing.Point(367, 22); this.grpCATOverEthernet.Name = "grpCATOverEthernet"; this.grpCATOverEthernet.Size = new System.Drawing.Size(199, 284); this.grpCATOverEthernet.TabIndex = 96; this.grpCATOverEthernet.TabStop = false; this.grpCATOverEthernet.Text = "CAT over Ethernet"; // // lblCATEthCollTime // this.lblCATEthCollTime.AutoSize = true; this.lblCATEthCollTime.Image = null; this.lblCATEthCollTime.Location = new System.Drawing.Point(12, 138); this.lblCATEthCollTime.Name = "lblCATEthCollTime"; this.lblCATEthCollTime.Size = new System.Drawing.Size(99, 13); this.lblCATEthCollTime.TabIndex = 120; this.lblCATEthCollTime.Text = "Collection time(mS):"; // // chkCATEthIPv6 // this.chkCATEthIPv6.AutoSize = true; this.chkCATEthIPv6.Image = null; this.chkCATEthIPv6.Location = new System.Drawing.Point(60, 66); this.chkCATEthIPv6.Name = "chkCATEthIPv6"; this.chkCATEthIPv6.Size = new System.Drawing.Size(48, 17); this.chkCATEthIPv6.TabIndex = 118; this.chkCATEthIPv6.Text = "IPv6"; this.chkCATEthIPv6.UseVisualStyleBackColor = true; this.chkCATEthIPv6.CheckedChanged += new System.EventHandler(this.chkCATEthIPv6_CheckedChanged); // // txtCATServerIPAddress // this.txtCATServerIPAddress.Location = new System.Drawing.Point(64, 188); this.txtCATServerIPAddress.MaxLength = 24; this.txtCATServerIPAddress.Name = "txtCATServerIPAddress"; this.txtCATServerIPAddress.Size = new System.Drawing.Size(129, 20); this.txtCATServerIPAddress.TabIndex = 117; this.txtCATServerIPAddress.Text = "192.168.168.255"; this.txtCATServerIPAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblCATServerAddress // this.lblCATServerAddress.Image = null; this.lblCATServerAddress.Location = new System.Drawing.Point(12, 182); this.lblCATServerAddress.Name = "lblCATServerAddress"; this.lblCATServerAddress.Size = new System.Drawing.Size(60, 31); this.lblCATServerAddress.TabIndex = 116; this.lblCATServerAddress.Text = "Server address:"; // // lblCATServerPort // this.lblCATServerPort.AutoSize = true; this.lblCATServerPort.Image = null; this.lblCATServerPort.Location = new System.Drawing.Point(12, 219); this.lblCATServerPort.Name = "lblCATServerPort"; this.lblCATServerPort.Size = new System.Drawing.Size(62, 13); this.lblCATServerPort.TabIndex = 115; this.lblCATServerPort.Text = "Server port:"; // // chkCATClient // this.chkCATClient.AutoSize = true; this.chkCATClient.Image = null; this.chkCATClient.Location = new System.Drawing.Point(60, 43); this.chkCATClient.Name = "chkCATClient"; this.chkCATClient.Size = new System.Drawing.Size(75, 17); this.chkCATClient.TabIndex = 113; this.chkCATClient.Text = "CAT client"; this.chkCATClient.UseVisualStyleBackColor = true; this.chkCATClient.CheckedChanged += new System.EventHandler(this.chkCATClient_CheckedChanged); // // txtCATLocalIPAddress // this.txtCATLocalIPAddress.Location = new System.Drawing.Point(64, 161); this.txtCATLocalIPAddress.MaxLength = 24; this.txtCATLocalIPAddress.Name = "txtCATLocalIPAddress"; this.txtCATLocalIPAddress.Size = new System.Drawing.Size(129, 20); this.txtCATLocalIPAddress.TabIndex = 112; this.txtCATLocalIPAddress.Text = "192.168.168.255"; this.txtCATLocalIPAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblCATIPAddress // this.lblCATIPAddress.Image = null; this.lblCATIPAddress.Location = new System.Drawing.Point(14, 154); this.lblCATIPAddress.Name = "lblCATIPAddress"; this.lblCATIPAddress.Size = new System.Drawing.Size(60, 31); this.lblCATIPAddress.TabIndex = 111; this.lblCATIPAddress.Text = "Local address:"; // // txtCATpassword // this.txtCATpassword.Location = new System.Drawing.Point(59, 259); this.txtCATpassword.MaxLength = 8; this.txtCATpassword.Name = "txtCATpassword"; this.txtCATpassword.PasswordChar = '*'; this.txtCATpassword.Size = new System.Drawing.Size(80, 20); this.txtCATpassword.TabIndex = 110; this.txtCATpassword.Text = "12345678"; this.txtCATpassword.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // labelTS12 // this.labelTS12.AutoSize = true; this.labelTS12.Image = null; this.labelTS12.Location = new System.Drawing.Point(73, 238); this.labelTS12.Name = "labelTS12"; this.labelTS12.Size = new System.Drawing.Size(53, 13); this.labelTS12.TabIndex = 109; this.labelTS12.Text = "Password"; // // chkCATServer // this.chkCATServer.AutoSize = true; this.chkCATServer.Image = null; this.chkCATServer.Location = new System.Drawing.Point(60, 20); this.chkCATServer.Name = "chkCATServer"; this.chkCATServer.Size = new System.Drawing.Size(79, 17); this.chkCATServer.TabIndex = 106; this.chkCATServer.Text = "CAT server"; this.chkCATServer.UseVisualStyleBackColor = true; this.chkCATServer.CheckedChanged += new System.EventHandler(this.chkCATServer_CheckedChanged); // // lblCATRigType // this.lblCATRigType.Image = null; this.lblCATRigType.Location = new System.Drawing.Point(210, 196); this.lblCATRigType.Name = "lblCATRigType"; this.lblCATRigType.Size = new System.Drawing.Size(40, 23); this.lblCATRigType.TabIndex = 95; this.lblCATRigType.Text = "ID as:"; // // grpPTTBitBang // this.grpPTTBitBang.Controls.Add(this.comboCATPTTPort); this.grpPTTBitBang.Controls.Add(this.lblCATPTTPort); this.grpPTTBitBang.Controls.Add(this.chkCATPTT_RTS); this.grpPTTBitBang.Controls.Add(this.chkCATPTT_DTR); this.grpPTTBitBang.Controls.Add(this.chkCATPTTEnabled); this.grpPTTBitBang.Location = new System.Drawing.Point(218, 22); this.grpPTTBitBang.Name = "grpPTTBitBang"; this.grpPTTBitBang.Size = new System.Drawing.Size(128, 152); this.grpPTTBitBang.TabIndex = 91; this.grpPTTBitBang.TabStop = false; this.grpPTTBitBang.Text = "PTT Control"; // // lblCATPTTPort // this.lblCATPTTPort.Image = null; this.lblCATPTTPort.Location = new System.Drawing.Point(8, 56); this.lblCATPTTPort.Name = "lblCATPTTPort"; this.lblCATPTTPort.Size = new System.Drawing.Size(40, 23); this.lblCATPTTPort.TabIndex = 6; this.lblCATPTTPort.Text = "Port:"; // // chkCATPTT_RTS // this.chkCATPTT_RTS.Image = null; this.chkCATPTT_RTS.Location = new System.Drawing.Point(40, 88); this.chkCATPTT_RTS.Name = "chkCATPTT_RTS"; this.chkCATPTT_RTS.Size = new System.Drawing.Size(48, 24); this.chkCATPTT_RTS.TabIndex = 0; this.chkCATPTT_RTS.Text = "RTS"; this.chkCATPTT_RTS.CheckedChanged += new System.EventHandler(this.chkCATPTT_RTS_CheckedChanged); // // chkCATPTT_DTR // this.chkCATPTT_DTR.Image = null; this.chkCATPTT_DTR.Location = new System.Drawing.Point(40, 120); this.chkCATPTT_DTR.Name = "chkCATPTT_DTR"; this.chkCATPTT_DTR.Size = new System.Drawing.Size(59, 16); this.chkCATPTT_DTR.TabIndex = 1; this.chkCATPTT_DTR.Text = "DTR"; this.chkCATPTT_DTR.CheckedChanged += new System.EventHandler(this.chkCATPTT_DTR_CheckedChanged); // // chkCATPTTEnabled // this.chkCATPTTEnabled.Image = null; this.chkCATPTTEnabled.Location = new System.Drawing.Point(12, 20); this.chkCATPTTEnabled.Name = "chkCATPTTEnabled"; this.chkCATPTTEnabled.Size = new System.Drawing.Size(104, 24); this.chkCATPTTEnabled.TabIndex = 4; this.chkCATPTTEnabled.Text = "Enable PTT"; this.chkCATPTTEnabled.CheckedChanged += new System.EventHandler(this.chkCATPTTEnabled_CheckedChanged); // // grpCatControlBox // this.grpCatControlBox.Controls.Add(this.chkCATPushData); this.grpCatControlBox.Controls.Add(this.comboCATstopbits); this.grpCatControlBox.Controls.Add(this.label3); this.grpCatControlBox.Controls.Add(this.lblCATData); this.grpCatControlBox.Controls.Add(this.comboCATdatabits); this.grpCatControlBox.Controls.Add(this.lblCATParity); this.grpCatControlBox.Controls.Add(this.comboCATparity); this.grpCatControlBox.Controls.Add(this.lblCATBaud); this.grpCatControlBox.Controls.Add(this.comboCATbaud); this.grpCatControlBox.Controls.Add(this.lblCATPort); this.grpCatControlBox.Controls.Add(this.comboCATPort); this.grpCatControlBox.Controls.Add(this.chkCATEnable); this.grpCatControlBox.Location = new System.Drawing.Point(18, 22); this.grpCatControlBox.Name = "grpCatControlBox"; this.grpCatControlBox.Size = new System.Drawing.Size(175, 260); this.grpCatControlBox.TabIndex = 0; this.grpCatControlBox.TabStop = false; this.grpCatControlBox.Text = "CAT Control"; // // chkCATPushData // this.chkCATPushData.AutoSize = true; this.chkCATPushData.Image = null; this.chkCATPushData.Location = new System.Drawing.Point(50, 216); this.chkCATPushData.Name = "chkCATPushData"; this.chkCATPushData.Size = new System.Drawing.Size(74, 17); this.chkCATPushData.TabIndex = 106; this.chkCATPushData.Text = "Push data"; this.chkCATPushData.CheckedChanged += new System.EventHandler(this.chkCATPushData_CheckedChanged); // // comboCATstopbits // this.comboCATstopbits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATstopbits.DropDownWidth = 56; this.comboCATstopbits.Items.AddRange(new object[] { "1", "1.5", "2"}); this.comboCATstopbits.Location = new System.Drawing.Point(72, 180); this.comboCATstopbits.Name = "comboCATstopbits"; this.comboCATstopbits.Size = new System.Drawing.Size(72, 21); this.comboCATstopbits.TabIndex = 94; this.comboCATstopbits.SelectedIndexChanged += new System.EventHandler(this.comboCATstopbits_SelectedIndexChanged); // // lblCATData // this.lblCATData.AutoSize = true; this.lblCATData.Image = null; this.lblCATData.Location = new System.Drawing.Point(17, 151); this.lblCATData.Name = "lblCATData"; this.lblCATData.Size = new System.Drawing.Size(30, 13); this.lblCATData.TabIndex = 0; this.lblCATData.Text = "Data"; // // comboCATdatabits // this.comboCATdatabits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATdatabits.DropDownWidth = 56; this.comboCATdatabits.Items.AddRange(new object[] { "8", "7", "6"}); this.comboCATdatabits.Location = new System.Drawing.Point(72, 148); this.comboCATdatabits.Name = "comboCATdatabits"; this.comboCATdatabits.Size = new System.Drawing.Size(72, 21); this.comboCATdatabits.TabIndex = 93; this.comboCATdatabits.SelectedIndexChanged += new System.EventHandler(this.comboCATdatabits_SelectedIndexChanged); // // lblCATParity // this.lblCATParity.AutoSize = true; this.lblCATParity.Image = null; this.lblCATParity.Location = new System.Drawing.Point(17, 119); this.lblCATParity.Name = "lblCATParity"; this.lblCATParity.Size = new System.Drawing.Size(33, 13); this.lblCATParity.TabIndex = 0; this.lblCATParity.Text = "Parity"; // // comboCATparity // this.comboCATparity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATparity.DropDownWidth = 56; this.comboCATparity.Items.AddRange(new object[] { "none", "odd ", "even", "mark", "space"}); this.comboCATparity.Location = new System.Drawing.Point(72, 116); this.comboCATparity.Name = "comboCATparity"; this.comboCATparity.Size = new System.Drawing.Size(72, 21); this.comboCATparity.TabIndex = 92; this.comboCATparity.SelectedIndexChanged += new System.EventHandler(this.comboCATparity_SelectedIndexChanged); // // lblCATBaud // this.lblCATBaud.AutoSize = true; this.lblCATBaud.Image = null; this.lblCATBaud.Location = new System.Drawing.Point(18, 87); this.lblCATBaud.Name = "lblCATBaud"; this.lblCATBaud.Size = new System.Drawing.Size(32, 13); this.lblCATBaud.TabIndex = 0; this.lblCATBaud.Text = "Baud"; // // comboCATbaud // this.comboCATbaud.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATbaud.DropDownWidth = 56; this.comboCATbaud.Items.AddRange(new object[] { "300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "115200", "230400", "460800", "576000"}); this.comboCATbaud.Location = new System.Drawing.Point(72, 84); this.comboCATbaud.Name = "comboCATbaud"; this.comboCATbaud.Size = new System.Drawing.Size(72, 21); this.comboCATbaud.TabIndex = 93; this.comboCATbaud.SelectedIndexChanged += new System.EventHandler(this.comboCATbaud_SelectedIndexChanged); // // lblCATPort // this.lblCATPort.AutoSize = true; this.lblCATPort.Image = null; this.lblCATPort.Location = new System.Drawing.Point(18, 55); this.lblCATPort.Name = "lblCATPort"; this.lblCATPort.Size = new System.Drawing.Size(26, 13); this.lblCATPort.TabIndex = 0; this.lblCATPort.Text = "Port"; // // chkCATEnable // this.chkCATEnable.AutoSize = true; this.chkCATEnable.Image = null; this.chkCATEnable.Location = new System.Drawing.Point(21, 22); this.chkCATEnable.Name = "chkCATEnable"; this.chkCATEnable.Size = new System.Drawing.Size(131, 17); this.chkCATEnable.TabIndex = 0; this.chkCATEnable.Text = "Enable COM port CAT"; this.chkCATEnable.UseVisualStyleBackColor = true; this.chkCATEnable.CheckedChanged += new System.EventHandler(this.chkCATEnable_CheckedChanged); // // tpServerClient // this.tpServerClient.Controls.Add(this.grpNetClient); this.tpServerClient.Controls.Add(this.grpNetServer); this.tpServerClient.Location = new System.Drawing.Point(4, 22); this.tpServerClient.Name = "tpServerClient"; this.tpServerClient.Size = new System.Drawing.Size(592, 318); this.tpServerClient.TabIndex = 2; this.tpServerClient.Text = "Network Server/Client"; // // grpNetClient // this.grpNetClient.Controls.Add(this.chkClientCompression); this.grpNetClient.Controls.Add(this.udClientMulticastPort); this.grpNetClient.Controls.Add(this.lblClientMulticastPort); this.grpNetClient.Controls.Add(this.txtClientMulticastAddress); this.grpNetClient.Controls.Add(this.lblMulticastIPAddress); this.grpNetClient.Controls.Add(this.lblClientIPAddress); this.grpNetClient.Controls.Add(this.txtClientIPAddress); this.grpNetClient.Controls.Add(this.chkNetworkClient); this.grpNetClient.Location = new System.Drawing.Point(329, 27); this.grpNetClient.Name = "grpNetClient"; this.grpNetClient.Size = new System.Drawing.Size(212, 237); this.grpNetClient.TabIndex = 111; this.grpNetClient.TabStop = false; this.grpNetClient.Text = "Client"; // // chkClientCompression // this.chkClientCompression.AutoSize = true; this.chkClientCompression.Image = null; this.chkClientCompression.Location = new System.Drawing.Point(39, 60); this.chkClientCompression.Name = "chkClientCompression"; this.chkClientCompression.Size = new System.Drawing.Size(86, 17); this.chkClientCompression.TabIndex = 123; this.chkClientCompression.Text = "Compression"; this.chkClientCompression.UseVisualStyleBackColor = true; this.chkClientCompression.CheckedChanged += new System.EventHandler(this.chkClientCompression_CheckedChanged); // // udClientMulticastPort // this.udClientMulticastPort.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udClientMulticastPort.Location = new System.Drawing.Point(151, 207); this.udClientMulticastPort.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udClientMulticastPort.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udClientMulticastPort.Name = "udClientMulticastPort"; this.udClientMulticastPort.Size = new System.Drawing.Size(55, 20); this.udClientMulticastPort.TabIndex = 119; this.udClientMulticastPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udClientMulticastPort.Value = new decimal(new int[] { 5000, 0, 0, 0}); // // lblClientMulticastPort // this.lblClientMulticastPort.AutoSize = true; this.lblClientMulticastPort.Image = null; this.lblClientMulticastPort.Location = new System.Drawing.Point(19, 209); this.lblClientMulticastPort.Name = "lblClientMulticastPort"; this.lblClientMulticastPort.Size = new System.Drawing.Size(73, 13); this.lblClientMulticastPort.TabIndex = 118; this.lblClientMulticastPort.Text = "Multicast port:"; // // txtClientMulticastAddress // this.txtClientMulticastAddress.Location = new System.Drawing.Point(116, 149); this.txtClientMulticastAddress.MaxLength = 16; this.txtClientMulticastAddress.Name = "txtClientMulticastAddress"; this.txtClientMulticastAddress.Size = new System.Drawing.Size(90, 20); this.txtClientMulticastAddress.TabIndex = 117; this.txtClientMulticastAddress.Text = "224.0.0.0"; this.txtClientMulticastAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblMulticastIPAddress // this.lblMulticastIPAddress.Image = null; this.lblMulticastIPAddress.Location = new System.Drawing.Point(19, 141); this.lblMulticastIPAddress.Name = "lblMulticastIPAddress"; this.lblMulticastIPAddress.Size = new System.Drawing.Size(76, 28); this.lblMulticastIPAddress.TabIndex = 116; this.lblMulticastIPAddress.Text = "Multicast address:"; // // lblClientIPAddress // this.lblClientIPAddress.AutoSize = true; this.lblClientIPAddress.Image = null; this.lblClientIPAddress.Location = new System.Drawing.Point(19, 98); this.lblClientIPAddress.Name = "lblClientIPAddress"; this.lblClientIPAddress.Size = new System.Drawing.Size(60, 13); this.lblClientIPAddress.TabIndex = 113; this.lblClientIPAddress.Text = "IP address:"; // // txtClientIPAddress // this.txtClientIPAddress.Location = new System.Drawing.Point(81, 95); this.txtClientIPAddress.MaxLength = 24; this.txtClientIPAddress.Name = "txtClientIPAddress"; this.txtClientIPAddress.Size = new System.Drawing.Size(125, 20); this.txtClientIPAddress.TabIndex = 112; this.txtClientIPAddress.Text = "192.168.168.100"; this.txtClientIPAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // chkNetworkClient // this.chkNetworkClient.AutoSize = true; this.chkNetworkClient.Image = null; this.chkNetworkClient.Location = new System.Drawing.Point(39, 23); this.chkNetworkClient.Name = "chkNetworkClient"; this.chkNetworkClient.Size = new System.Drawing.Size(130, 17); this.chkNetworkClient.TabIndex = 111; this.chkNetworkClient.Text = "Network Client enable"; this.chkNetworkClient.UseVisualStyleBackColor = true; this.chkNetworkClient.CheckedChanged += new System.EventHandler(this.chkNetworkClient_CheckedChanged); // // grpNetServer // this.grpNetServer.Controls.Add(this.udServerPort); this.grpNetServer.Controls.Add(this.lblServerLocalPort); this.grpNetServer.Controls.Add(this.chkServerCompression); this.grpNetServer.Controls.Add(this.lblServerTTL); this.grpNetServer.Controls.Add(this.udTTL); this.grpNetServer.Controls.Add(this.udMulticastPort); this.grpNetServer.Controls.Add(this.lblServerMulticastPort); this.grpNetServer.Controls.Add(this.txtMulticastIPAddress); this.grpNetServer.Controls.Add(this.lblServerMulticastAddress); this.grpNetServer.Controls.Add(this.lblServerIPAddress); this.grpNetServer.Controls.Add(this.txtServerIPAddress); this.grpNetServer.Controls.Add(this.chkNetworkServer); this.grpNetServer.Location = new System.Drawing.Point(51, 27); this.grpNetServer.Name = "grpNetServer"; this.grpNetServer.Size = new System.Drawing.Size(212, 237); this.grpNetServer.TabIndex = 0; this.grpNetServer.TabStop = false; this.grpNetServer.Text = "Server"; // // udServerPort // this.udServerPort.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udServerPort.Location = new System.Drawing.Point(138, 123); this.udServerPort.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udServerPort.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udServerPort.Name = "udServerPort"; this.udServerPort.Size = new System.Drawing.Size(55, 20); this.udServerPort.TabIndex = 124; this.udServerPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udServerPort.Value = new decimal(new int[] { 5000, 0, 0, 0}); // // lblServerLocalPort // this.lblServerLocalPort.AutoSize = true; this.lblServerLocalPort.Image = null; this.lblServerLocalPort.Location = new System.Drawing.Point(23, 125); this.lblServerLocalPort.Name = "lblServerLocalPort"; this.lblServerLocalPort.Size = new System.Drawing.Size(57, 13); this.lblServerLocalPort.TabIndex = 123; this.lblServerLocalPort.Text = "Local port:"; // // chkServerCompression // this.chkServerCompression.AutoSize = true; this.chkServerCompression.Image = null; this.chkServerCompression.Location = new System.Drawing.Point(39, 60); this.chkServerCompression.Name = "chkServerCompression"; this.chkServerCompression.Size = new System.Drawing.Size(86, 17); this.chkServerCompression.TabIndex = 122; this.chkServerCompression.Text = "Compression"; this.chkServerCompression.UseVisualStyleBackColor = true; this.chkServerCompression.CheckedChanged += new System.EventHandler(this.chkServerCompression_CheckedChanged); // // lblServerTTL // this.lblServerTTL.AutoSize = true; this.lblServerTTL.Image = null; this.lblServerTTL.Location = new System.Drawing.Point(23, 153); this.lblServerTTL.Name = "lblServerTTL"; this.lblServerTTL.Size = new System.Drawing.Size(89, 13); this.lblServerTTL.TabIndex = 120; this.lblServerTTL.Text = "TTL (time to live):"; // // udTTL // this.udTTL.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udTTL.Location = new System.Drawing.Point(138, 151); this.udTTL.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udTTL.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.udTTL.Name = "udTTL"; this.udTTL.Size = new System.Drawing.Size(55, 20); this.udTTL.TabIndex = 119; this.udTTL.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udTTL.Value = new decimal(new int[] { 1, 0, 0, 0}); // // udMulticastPort // this.udMulticastPort.Increment = new decimal(new int[] { 1, 0, 0, 0}); this.udMulticastPort.Location = new System.Drawing.Point(138, 209); this.udMulticastPort.Maximum = new decimal(new int[] { 65535, 0, 0, 0}); this.udMulticastPort.Minimum = new decimal(new int[] { 0, 0, 0, 0}); this.udMulticastPort.Name = "udMulticastPort"; this.udMulticastPort.Size = new System.Drawing.Size(55, 20); this.udMulticastPort.TabIndex = 118; this.udMulticastPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.udMulticastPort.Value = new decimal(new int[] { 5000, 0, 0, 0}); // // lblServerMulticastPort // this.lblServerMulticastPort.AutoSize = true; this.lblServerMulticastPort.Image = null; this.lblServerMulticastPort.Location = new System.Drawing.Point(23, 211); this.lblServerMulticastPort.Name = "lblServerMulticastPort"; this.lblServerMulticastPort.Size = new System.Drawing.Size(73, 13); this.lblServerMulticastPort.TabIndex = 117; this.lblServerMulticastPort.Text = "Multicast port:"; // // txtMulticastIPAddress // this.txtMulticastIPAddress.Location = new System.Drawing.Point(103, 181); this.txtMulticastIPAddress.MaxLength = 16; this.txtMulticastIPAddress.Name = "txtMulticastIPAddress"; this.txtMulticastIPAddress.Size = new System.Drawing.Size(90, 20); this.txtMulticastIPAddress.TabIndex = 116; this.txtMulticastIPAddress.Text = "224.0.0.0"; this.txtMulticastIPAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblServerMulticastAddress // this.lblServerMulticastAddress.Image = null; this.lblServerMulticastAddress.Location = new System.Drawing.Point(23, 177); this.lblServerMulticastAddress.Name = "lblServerMulticastAddress"; this.lblServerMulticastAddress.Size = new System.Drawing.Size(74, 30); this.lblServerMulticastAddress.TabIndex = 115; this.lblServerMulticastAddress.Text = "Multicast address:"; // // lblServerIPAddress // this.lblServerIPAddress.AutoSize = true; this.lblServerIPAddress.Image = null; this.lblServerIPAddress.Location = new System.Drawing.Point(23, 98); this.lblServerIPAddress.Name = "lblServerIPAddress"; this.lblServerIPAddress.Size = new System.Drawing.Size(60, 13); this.lblServerIPAddress.TabIndex = 112; this.lblServerIPAddress.Text = "IP address:"; // // txtServerIPAddress // this.txtServerIPAddress.Location = new System.Drawing.Point(103, 95); this.txtServerIPAddress.MaxLength = 16; this.txtServerIPAddress.Name = "txtServerIPAddress"; this.txtServerIPAddress.Size = new System.Drawing.Size(90, 20); this.txtServerIPAddress.TabIndex = 111; this.txtServerIPAddress.Text = "192.168.168.255"; this.txtServerIPAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // chkNetworkServer // this.chkNetworkServer.AutoSize = true; this.chkNetworkServer.Image = null; this.chkNetworkServer.Location = new System.Drawing.Point(39, 23); this.chkNetworkServer.Name = "chkNetworkServer"; this.chkNetworkServer.Size = new System.Drawing.Size(135, 17); this.chkNetworkServer.TabIndex = 110; this.chkNetworkServer.Text = "Network Server enable"; this.chkNetworkServer.UseVisualStyleBackColor = true; this.chkNetworkServer.CheckedChanged += new System.EventHandler(this.chkNetworkServer_CheckedChanged); // // tpMultiPSK // this.tpMultiPSK.BackColor = System.Drawing.SystemColors.Control; this.tpMultiPSK.Controls.Add(this.grpMultiPSK); this.tpMultiPSK.Location = new System.Drawing.Point(4, 22); this.tpMultiPSK.Name = "tpMultiPSK"; this.tpMultiPSK.Padding = new System.Windows.Forms.Padding(3); this.tpMultiPSK.Size = new System.Drawing.Size(592, 318); this.tpMultiPSK.TabIndex = 3; this.tpMultiPSK.Text = "MultiPSK"; // // grpMultiPSK // this.grpMultiPSK.Controls.Add(this.txtMultiPSKServerAddress); this.grpMultiPSK.Controls.Add(this.lblServerAddress); this.grpMultiPSK.Controls.Add(this.lblServerPort); this.grpMultiPSK.Controls.Add(this.udMultiPSKServerPort); this.grpMultiPSK.Controls.Add(this.txtMultiPSKLocalAddres); this.grpMultiPSK.Controls.Add(this.lblLocalAddress); this.grpMultiPSK.Controls.Add(this.txtMultiPSKPassword); this.grpMultiPSK.Controls.Add(this.lblMultiPSKPassword); this.grpMultiPSK.Controls.Add(this.chkStartServer); this.grpMultiPSK.Location = new System.Drawing.Point(197, 24); this.grpMultiPSK.Name = "grpMultiPSK"; this.grpMultiPSK.Size = new System.Drawing.Size(199, 249); this.grpMultiPSK.TabIndex = 97; this.grpMultiPSK.TabStop = false; this.grpMultiPSK.Text = "Multi PSK server"; // // txtMultiPSKServerAddress // this.txtMultiPSKServerAddress.Location = new System.Drawing.Point(64, 121); this.txtMultiPSKServerAddress.MaxLength = 24; this.txtMultiPSKServerAddress.Name = "txtMultiPSKServerAddress"; this.txtMultiPSKServerAddress.Size = new System.Drawing.Size(129, 20); this.txtMultiPSKServerAddress.TabIndex = 117; this.txtMultiPSKServerAddress.Text = "127.0.0.1"; this.txtMultiPSKServerAddress.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblServerAddress // this.lblServerAddress.Image = null; this.lblServerAddress.Location = new System.Drawing.Point(12, 115); this.lblServerAddress.Name = "lblServerAddress"; this.lblServerAddress.Size = new System.Drawing.Size(60, 31); this.lblServerAddress.TabIndex = 116; this.lblServerAddress.Text = "Server address:"; // // lblServerPort // this.lblServerPort.AutoSize = true; this.lblServerPort.Image = null; this.lblServerPort.Location = new System.Drawing.Point(12, 171); this.lblServerPort.Name = "lblServerPort"; this.lblServerPort.Size = new System.Drawing.Size(62, 13); this.lblServerPort.TabIndex = 115; this.lblServerPort.Text = "Server port:"; // // txtMultiPSKLocalAddres // this.txtMultiPSKLocalAddres.Location = new System.Drawing.Point(64, 69); this.txtMultiPSKLocalAddres.MaxLength = 24; this.txtMultiPSKLocalAddres.Name = "txtMultiPSKLocalAddres"; this.txtMultiPSKLocalAddres.Size = new System.Drawing.Size(129, 20); this.txtMultiPSKLocalAddres.TabIndex = 112; this.txtMultiPSKLocalAddres.Text = "127.0.0.1"; this.txtMultiPSKLocalAddres.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblLocalAddress // this.lblLocalAddress.Image = null; this.lblLocalAddress.Location = new System.Drawing.Point(12, 63); this.lblLocalAddress.Name = "lblLocalAddress"; this.lblLocalAddress.Size = new System.Drawing.Size(60, 31); this.lblLocalAddress.TabIndex = 111; this.lblLocalAddress.Text = "Local address:"; // // txtMultiPSKPassword // this.txtMultiPSKPassword.Location = new System.Drawing.Point(59, 218); this.txtMultiPSKPassword.MaxLength = 10; this.txtMultiPSKPassword.Name = "txtMultiPSKPassword"; this.txtMultiPSKPassword.PasswordChar = '*'; this.txtMultiPSKPassword.Size = new System.Drawing.Size(80, 20); this.txtMultiPSKPassword.TabIndex = 110; this.txtMultiPSKPassword.Text = "1234567890"; this.txtMultiPSKPassword.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // lblMultiPSKPassword // this.lblMultiPSKPassword.AutoSize = true; this.lblMultiPSKPassword.Image = null; this.lblMultiPSKPassword.Location = new System.Drawing.Point(73, 197); this.lblMultiPSKPassword.Name = "lblMultiPSKPassword"; this.lblMultiPSKPassword.Size = new System.Drawing.Size(53, 13); this.lblMultiPSKPassword.TabIndex = 109; this.lblMultiPSKPassword.Text = "Password"; // // chkStartServer // this.chkStartServer.AutoSize = true; this.chkStartServer.Image = null; this.chkStartServer.Location = new System.Drawing.Point(60, 28); this.chkStartServer.Name = "chkStartServer"; this.chkStartServer.Size = new System.Drawing.Size(80, 17); this.chkStartServer.TabIndex = 106; this.chkStartServer.Text = "Start server"; this.chkStartServer.UseVisualStyleBackColor = true; this.chkStartServer.CheckedChanged += new System.EventHandler(this.chkStartServer_CheckedChanged); // // tabPage2 // this.tabPage2.BackColor = System.Drawing.SystemColors.Control; this.tabPage2.Controls.Add(this.groupBoxTS8); this.tabPage2.Location = new System.Drawing.Point(4, 22); this.tabPage2.Name = "tabPage2"; this.tabPage2.Padding = new System.Windows.Forms.Padding(3); this.tabPage2.Size = new System.Drawing.Size(584, 331); this.tabPage2.TabIndex = 10; this.tabPage2.Text = "DX Cluster Client"; // // groupBoxTS8 // this.groupBoxTS8.Controls.Add(this.txtStnLOC); this.groupBoxTS8.Controls.Add(this.lblStnLOC); this.groupBoxTS8.Controls.Add(this.txtStnQTH); this.groupBoxTS8.Controls.Add(this.lblStnQTH); this.groupBoxTS8.Controls.Add(this.txtStnName); this.groupBoxTS8.Controls.Add(this.lblStnName); this.groupBoxTS8.Controls.Add(this.txtStnCALL); this.groupBoxTS8.Controls.Add(this.labelTS17); this.groupBoxTS8.Location = new System.Drawing.Point(181, 46); this.groupBoxTS8.Name = "groupBoxTS8"; this.groupBoxTS8.Size = new System.Drawing.Size(223, 222); this.groupBoxTS8.TabIndex = 2; this.groupBoxTS8.TabStop = false; this.groupBoxTS8.Text = "Station data"; // // txtStnLOC // this.txtStnLOC.Location = new System.Drawing.Point(81, 134); this.txtStnLOC.MaxLength = 16; this.txtStnLOC.Name = "txtStnLOC"; this.txtStnLOC.Size = new System.Drawing.Size(100, 20); this.txtStnLOC.TabIndex = 6; // // lblStnLOC // this.lblStnLOC.AutoSize = true; this.lblStnLOC.Image = null; this.lblStnLOC.Location = new System.Drawing.Point(42, 137); this.lblStnLOC.Name = "lblStnLOC"; this.lblStnLOC.Size = new System.Drawing.Size(28, 13); this.lblStnLOC.TabIndex = 7; this.lblStnLOC.Text = "LOC"; // // txtStnQTH // this.txtStnQTH.Location = new System.Drawing.Point(81, 101); this.txtStnQTH.MaxLength = 16; this.txtStnQTH.Name = "txtStnQTH"; this.txtStnQTH.Size = new System.Drawing.Size(100, 20); this.txtStnQTH.TabIndex = 4; // // lblStnQTH // this.lblStnQTH.AutoSize = true; this.lblStnQTH.Image = null; this.lblStnQTH.Location = new System.Drawing.Point(42, 104); this.lblStnQTH.Name = "lblStnQTH"; this.lblStnQTH.Size = new System.Drawing.Size(30, 13); this.lblStnQTH.TabIndex = 5; this.lblStnQTH.Text = "QTH"; // // txtStnName // this.txtStnName.Location = new System.Drawing.Point(81, 68); this.txtStnName.MaxLength = 16; this.txtStnName.Name = "txtStnName"; this.txtStnName.Size = new System.Drawing.Size(100, 20); this.txtStnName.TabIndex = 2; // // lblStnName // this.lblStnName.AutoSize = true; this.lblStnName.Image = null; this.lblStnName.Location = new System.Drawing.Point(42, 71); this.lblStnName.Name = "lblStnName"; this.lblStnName.Size = new System.Drawing.Size(35, 13); this.lblStnName.TabIndex = 3; this.lblStnName.Text = "Name"; // // txtStnCALL // this.txtStnCALL.Location = new System.Drawing.Point(81, 35); this.txtStnCALL.MaxLength = 16; this.txtStnCALL.Name = "txtStnCALL"; this.txtStnCALL.Size = new System.Drawing.Size(100, 20); this.txtStnCALL.TabIndex = 0; // // labelTS17 // this.labelTS17.AutoSize = true; this.labelTS17.Image = null; this.labelTS17.Location = new System.Drawing.Point(42, 38); this.labelTS17.Name = "labelTS17"; this.labelTS17.Size = new System.Drawing.Size(33, 13); this.labelTS17.TabIndex = 1; this.labelTS17.Text = "CALL"; // // lblKBModeUp // this.lblKBModeUp.Image = null; this.lblKBModeUp.Location = new System.Drawing.Point(8, 16); this.lblKBModeUp.Name = "lblKBModeUp"; this.lblKBModeUp.Size = new System.Drawing.Size(40, 16); this.lblKBModeUp.TabIndex = 10; this.lblKBModeUp.Text = "Up:"; this.lblKBModeUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBModeDown // this.lblKBModeDown.Image = null; this.lblKBModeDown.Location = new System.Drawing.Point(8, 40); this.lblKBModeDown.Name = "lblKBModeDown"; this.lblKBModeDown.Size = new System.Drawing.Size(40, 16); this.lblKBModeDown.TabIndex = 9; this.lblKBModeDown.Text = "Down:"; this.lblKBModeDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // labelTS3 // this.labelTS3.Image = null; this.labelTS3.Location = new System.Drawing.Point(13, 65); this.labelTS3.Name = "labelTS3"; this.labelTS3.Size = new System.Drawing.Size(40, 23); this.labelTS3.TabIndex = 6; this.labelTS3.Text = "Port:"; // // lblCATStop // this.lblCATStop.Image = null; this.lblCATStop.Location = new System.Drawing.Point(0, 0); this.lblCATStop.Name = "lblCATStop"; this.lblCATStop.Size = new System.Drawing.Size(100, 23); this.lblCATStop.TabIndex = 0; // // lblCATRigType1 // this.lblCATRigType1.Image = null; this.lblCATRigType1.Location = new System.Drawing.Point(0, 0); this.lblCATRigType1.Name = "lblCATRigType1"; this.lblCATRigType1.Size = new System.Drawing.Size(100, 23); this.lblCATRigType1.TabIndex = 0; // // groupBoxTS1 // this.groupBoxTS1.Controls.Add(this.checkBoxTS2); this.groupBoxTS1.Controls.Add(this.numericUpDownTS1); this.groupBoxTS1.Controls.Add(this.labelTS7); this.groupBoxTS1.Controls.Add(this.buttonTS1); this.groupBoxTS1.Location = new System.Drawing.Point(360, 8); this.groupBoxTS1.Name = "groupBoxTS1"; this.groupBoxTS1.Size = new System.Drawing.Size(189, 282); this.groupBoxTS1.TabIndex = 9; this.groupBoxTS1.TabStop = false; this.groupBoxTS1.Text = "RX Image Reject Cal"; // // checkBoxTS2 // this.checkBoxTS2.AutoSize = true; this.checkBoxTS2.Image = null; this.checkBoxTS2.Location = new System.Drawing.Point(63, 22); this.checkBoxTS2.Name = "checkBoxTS2"; this.checkBoxTS2.Size = new System.Drawing.Size(15, 14); this.checkBoxTS2.TabIndex = 8; this.checkBoxTS2.UseVisualStyleBackColor = true; // // labelTS7 // this.labelTS7.Image = null; this.labelTS7.Location = new System.Drawing.Point(16, 22); this.labelTS7.Name = "labelTS7"; this.labelTS7.Size = new System.Drawing.Size(41, 14); this.labelTS7.TabIndex = 0; this.labelTS7.Text = "30m"; // // groupBoxTS2 // this.groupBoxTS2.Controls.Add(this.numericUpDownTS2); this.groupBoxTS2.Controls.Add(this.numericUpDownTS3); this.groupBoxTS2.Controls.Add(this.labelTS8); this.groupBoxTS2.Controls.Add(this.labelTS9); this.groupBoxTS2.Controls.Add(this.buttonTS2); this.groupBoxTS2.Location = new System.Drawing.Point(184, 8); this.groupBoxTS2.Name = "groupBoxTS2"; this.groupBoxTS2.Size = new System.Drawing.Size(168, 112); this.groupBoxTS2.TabIndex = 8; this.groupBoxTS2.TabStop = false; this.groupBoxTS2.Text = "Level Cal"; // // labelTS8 // this.labelTS8.Image = null; this.labelTS8.Location = new System.Drawing.Point(16, 24); this.labelTS8.Name = "labelTS8"; this.labelTS8.Size = new System.Drawing.Size(64, 23); this.labelTS8.TabIndex = 0; this.labelTS8.Text = "Frequency:"; // // labelTS9 // this.labelTS9.Image = null; this.labelTS9.Location = new System.Drawing.Point(16, 48); this.labelTS9.Name = "labelTS9"; this.labelTS9.Size = new System.Drawing.Size(68, 23); this.labelTS9.TabIndex = 2; this.labelTS9.Text = "Level (dBm):"; // // groupBoxTS3 // this.groupBoxTS3.Controls.Add(this.buttonTS3); this.groupBoxTS3.Controls.Add(this.numericUpDownTS4); this.groupBoxTS3.Controls.Add(this.labelTS10); this.groupBoxTS3.Location = new System.Drawing.Point(8, 8); this.groupBoxTS3.Name = "groupBoxTS3"; this.groupBoxTS3.Size = new System.Drawing.Size(168, 112); this.groupBoxTS3.TabIndex = 5; this.groupBoxTS3.TabStop = false; this.groupBoxTS3.Text = "Freq Cal"; // // labelTS10 // this.labelTS10.Image = null; this.labelTS10.Location = new System.Drawing.Point(16, 24); this.labelTS10.Name = "labelTS10"; this.labelTS10.Size = new System.Drawing.Size(64, 23); this.labelTS10.TabIndex = 0; this.labelTS10.Text = "Frequency:"; // // groupBoxTS4 // this.groupBoxTS4.Location = new System.Drawing.Point(142, 73); this.groupBoxTS4.Name = "groupBoxTS4"; this.groupBoxTS4.Size = new System.Drawing.Size(309, 173); this.groupBoxTS4.TabIndex = 0; this.groupBoxTS4.TabStop = false; this.groupBoxTS4.Text = "groupBoxTS4"; // // Setup // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.AutoSize = true; this.ClientSize = new System.Drawing.Size(624, 418); this.Controls.Add(this.btnSave); this.Controls.Add(this.tcSetup); this.Controls.Add(this.btnApply); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MaximumSize = new System.Drawing.Size(630, 451); this.MinimizeBox = false; this.Name = "Setup"; this.Text = "PowerSDR Setup by GenesisRadio"; this.Closing += new System.ComponentModel.CancelEventHandler(this.Setup_Closing); ((System.ComponentModel.ISupportInitialize)(this.udG40Xtal1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG3020Xtal1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG160Xtal2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG160Xtal1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udFilterDefaultLowCut)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterShift)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterWidth)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59DASH_DOT_ratio)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59CWSpeed)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_divisor)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_address)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_xtal1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udIQCorrection)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioMicGain1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLineIn1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVoltage1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainRX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayScopeTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterAvg)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiTextHoldTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiPeakHoldTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallAvgTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallLowLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallHighLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCPUMeter)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPeakText)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterDelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayFPS)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayAVGTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPhasePts)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridStep)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMin)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMax)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRgain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRdelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRtaps)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFgain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFdelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFtaps)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWPitch)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerWeight)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerRise)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerSemiBreakInDelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCMaxGaindB)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCFixedGaindB)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXAMCarrierLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXAF)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGate)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXTunePower)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbTXCompander)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXCompander)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFFCompression)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbTXFFCompression)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterLow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterHigh)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPACalPower)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenScale)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tkbarTestGenFreq)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHzSec)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHigh)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenLow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTS4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_xtal2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udSi570_xtal3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udMemoryZapping)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRleak)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFleak)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATServerPort)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udQRP2000XTRVIF)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udSRSi570Addr)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59CWSpeedCorr)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udMultiPSKServerPort)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udWBIRTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG137Xtal1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG500Xtal1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udFDCOmin)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udFDCOmax)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59XtrvIF)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATEthCollTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATEthServerWatchdogTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59TXSwitchTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udtTX_IF_SHIFT)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUFullTune)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUMemoryTune)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUBypass)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udATUCarrierTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG11XTRVLosc)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udMultimeterCalValue)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCalValue)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerFall)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udRXShift)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udVACPhase)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udVACGain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59PTT_ON_time)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG59PTT_OFF_time)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPrimaryGain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPrimaryPhase)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPrimaryRXshift)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udUSBSerialNo)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatencyVAC)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbPrimaryGain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbPrimaryPhase)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbVACGain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbVACPhase)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udQRP2000_Si570Xtal)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCATCI_V)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udVACchNumber)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udRTL_SDR_correction)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG11extPAON)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG11extPAOFF)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG6ExtPAoffTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG6ExtPAonTime)).EndInit(); this.tpTests.ResumeLayout(false); this.grpAudioTests.ResumeLayout(false); this.grpAudioTests.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udWBIRindex)).EndInit(); this.grpBoxTS1.ResumeLayout(false); this.grpBoxTS1.PerformLayout(); this.groupBoxTS5.ResumeLayout(false); this.grpTestAudioBalance.ResumeLayout(false); this.grpTestTXIMD.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDPower)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq1)).EndInit(); this.grpImpulseTest.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udImpulseNum)).EndInit(); this.tpKeyboard.ResumeLayout(false); this.grpCWXKeys.ResumeLayout(false); this.grpCWXKeys.PerformLayout(); this.grpVoiceMsgSetup.ResumeLayout(false); this.grpVoiceMsgSetup.PerformLayout(); this.grpKBCWSpeed.ResumeLayout(false); this.grpKBXIT.ResumeLayout(false); this.grpKBRIT.ResumeLayout(false); this.grpKBBand.ResumeLayout(false); this.grpKBTune.ResumeLayout(false); this.grpKBFilter.ResumeLayout(false); this.grpKBCW.ResumeLayout(false); this.tpAppearance.ResumeLayout(false); this.tcAppearance.ResumeLayout(false); this.tpAppearanceDisplay.ResumeLayout(false); this.grpSubRX.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbSubRXAlpha)).EndInit(); this.grpMainRX.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbMainRXAlpha)).EndInit(); this.grpDisplay.ResumeLayout(false); this.grpDisplay.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbGridLineAlpha)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDataLineAlpha)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDisplayTxtAlpha)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayLineWidth)).EndInit(); this.grpDisplayPeakCursor.ResumeLayout(false); this.tpAppearanceGeneral.ResumeLayout(false); this.grpAppearanceNewVFO.ResumeLayout(false); this.grpAppearanceBand.ResumeLayout(false); this.grpAppearanceVFO.ResumeLayout(false); this.tpAppearanceMeter.ResumeLayout(false); this.grpNewVFOSMeter.ResumeLayout(false); this.grpNewVFOSMeter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbSmeterAlpha)).EndInit(); this.groupBoxTS11.ResumeLayout(false); this.grpMeterEdge.ResumeLayout(false); this.grpAppearanceMeter.ResumeLayout(false); this.tcSkins.ResumeLayout(false); this.grpSMeter.ResumeLayout(false); this.grpSkin.ResumeLayout(false); this.tpPowerAmplifier.ResumeLayout(false); this.grpPABandOffset.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udPAADC2190)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC600)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC160)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC80)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC60)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC40)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC30)).EndInit(); this.grpPAGainByBand.ResumeLayout(false); this.grpPAGainByBand.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain2190)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain600)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain30)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain40)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain60)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain80)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain160)).EndInit(); this.tpTransmit.ResumeLayout(false); this.groupBoxTS12.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXFMDeviation)).EndInit(); this.grpGenesis.ResumeLayout(false); this.grpGenesis.PerformLayout(); this.grpTXAM.ResumeLayout(false); this.grpTXMonitor.ResumeLayout(false); this.grpTXVOX.ResumeLayout(false); this.grpTXNoiseGate.ResumeLayout(false); this.grpTXProfile.ResumeLayout(false); this.grpPATune.ResumeLayout(false); this.grpPATune.PerformLayout(); this.grpTXCompression.ResumeLayout(false); this.grpTXCompression.PerformLayout(); this.grpTXFilter.ResumeLayout(false); this.tpDSP.ResumeLayout(false); this.tcDSP.ResumeLayout(false); this.tpDSPOptions.ResumeLayout(false); this.grpDSPBufferSize.ResumeLayout(false); this.grpDSPBufferSize.PerformLayout(); this.grpDSPNB.ResumeLayout(false); this.grpDSPLMSNR.ResumeLayout(false); this.grpDSPLMSANF.ResumeLayout(false); this.grpDSPWindow.ResumeLayout(false); this.grpDSPNB2.ResumeLayout(false); this.tpDSPImageReject.ResumeLayout(false); this.grpDSPImageRejectTX.ResumeLayout(false); this.grpDSPImageRejectTX.PerformLayout(); this.tpDSPKeyer.ResumeLayout(false); this.grpExteCWKeyer.ResumeLayout(false); this.grpDSPKeyerOptions.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWMonFreq)).EndInit(); this.grpKeyerConnections.ResumeLayout(false); this.grpDSPCWPitch.ResumeLayout(false); this.grpDSPKeyerSignalShaping.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerDeBounce)).EndInit(); this.grpDSPKeyerSemiBreakIn.ResumeLayout(false); this.tpDSPAGCALC.ResumeLayout(false); this.grpDSPLeveler.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerAttack)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPLevelerHangThreshold)).EndInit(); this.grpDSPALC.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbDSPALCHangThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCAttack)).EndInit(); this.grpDSPAGC.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbDSPAGCHangThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCAttack)).EndInit(); this.tpDisplay.ResumeLayout(false); this.grpDisplayDriverEngine.ResumeLayout(false); this.grpDisplayDriverEngine.PerformLayout(); this.grpDisplayPolyPhase.ResumeLayout(false); this.grpDisplayScopeMode.ResumeLayout(false); this.grpDisplayMultimeter.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDecayTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAtackTime)).EndInit(); this.grpDisplayWaterfall.ResumeLayout(false); this.grpDisplayWaterfall.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbWaterfallAlpha)).EndInit(); this.grpDisplayRefreshRates.ResumeLayout(false); this.grpDisplayAverage.ResumeLayout(false); this.grpDisplayPhase.ResumeLayout(false); this.grpDisplaySpectrumGrid.ResumeLayout(false); this.grpDisplaySpectrumGrid.PerformLayout(); this.tpAudio.ResumeLayout(false); this.tcAudio.ResumeLayout(false); this.tpAudioCard1.ResumeLayout(false); this.tpAudioCard1.PerformLayout(); this.grpAudioDetails1.ResumeLayout(false); this.grpAudioDetails1.PerformLayout(); this.grpPrimaryDirectI_Q.ResumeLayout(false); this.grpPrimaryDirectI_Q.PerformLayout(); this.grpSampleCorrection.ResumeLayout(false); this.grpAudioChannels.ResumeLayout(false); this.grpAudioChannels.PerformLayout(); this.groupBoxTS7.ResumeLayout(false); this.groupBoxTS7.PerformLayout(); this.groupBoxTS6.ResumeLayout(false); this.groupBoxTS6.PerformLayout(); this.grpAudioLatency1.ResumeLayout(false); this.tpVAC.ResumeLayout(false); this.grpVACDirectIQ.ResumeLayout(false); this.grpVACDirectIQ.PerformLayout(); this.grpLoopDll.ResumeLayout(false); this.grpLoopDll.PerformLayout(); this.grpAudioVACAutoEnable.ResumeLayout(false); this.grpAudioVAC.ResumeLayout(false); this.grpAudioVAC.PerformLayout(); this.grpAudioLatencyVAC.ResumeLayout(false); this.grpAudioVACGain.ResumeLayout(false); this.grpAudioDetailsVAC.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.tabPage1.PerformLayout(); this.tpGeneral.ResumeLayout(false); this.tcGeneral.ResumeLayout(false); this.tpGeneralHardware.ResumeLayout(false); this.grpG6.ResumeLayout(false); this.grpG6.PerformLayout(); this.grpG11.ResumeLayout(false); this.grpG11.PerformLayout(); this.grpG11Filters.ResumeLayout(false); this.grpG11Filters.PerformLayout(); this.grpG11XTRV.ResumeLayout(false); this.grpG11XTRV.PerformLayout(); this.grpG59.ResumeLayout(false); this.grpG59.PerformLayout(); this.grpXTRV.ResumeLayout(false); this.grpXTRV.PerformLayout(); this.grpRTL_SDR.ResumeLayout(false); this.grpRTL_SDR.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udRTL_VACcorr)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRTL_SDR_AGC_Gain)).EndInit(); this.grpQRP2000.ResumeLayout(false); this.grpQRP2000.PerformLayout(); this.groupBoxTS10.ResumeLayout(false); this.groupBoxTS10.PerformLayout(); this.groupBoxTS9.ResumeLayout(false); this.groupBoxTS9.PerformLayout(); this.grpGeneralModel.ResumeLayout(false); this.grpGeneralModel.PerformLayout(); this.grpGeneralHardwareSetup.ResumeLayout(false); this.grpGeneralHardwareSetup.PerformLayout(); this.grpNETBox.ResumeLayout(false); this.grpNETBox.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udLocalNETBoxPort)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udNETBoxPort)).EndInit(); this.grpGenesis80.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udG80Xtal1)).EndInit(); this.grpGenesis160.ResumeLayout(false); this.grpGenesis137.ResumeLayout(false); this.grpGenesis500.ResumeLayout(false); this.grpGenesis40.ResumeLayout(false); this.grpGenesis3020.ResumeLayout(false); this.tpGeneralOptions.ResumeLayout(false); this.grpIRRemote.ResumeLayout(false); this.grpIRRemote.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udWinLIRCport)).EndInit(); this.grpAutoPWR.ResumeLayout(false); this.grpAutoPWR.PerformLayout(); this.grpMemoryZap.ResumeLayout(false); this.grpMemoryZap.PerformLayout(); this.grpOptMainConsole.ResumeLayout(false); this.grpOptQuickQSY.ResumeLayout(false); this.grpGenTuningOptions.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGU)).EndInit(); this.grpGeneralOptions.ResumeLayout(false); this.grpGeneralProcessPriority.ResumeLayout(false); this.tpGeneralCalibration.ResumeLayout(false); this.tpGeneralCalibration.PerformLayout(); this.grpWBIR.ResumeLayout(false); this.grpWBIR.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udRXGain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRXGain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbRXPhase)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udRXPhase)).EndInit(); this.grpGenCalRXImage.ResumeLayout(false); this.grpGenCalLevel.ResumeLayout(false); this.tpFilters.ResumeLayout(false); this.grpOptFilterControls.ResumeLayout(false); this.tpGenesisOption.ResumeLayout(false); this.grpG59Keyer.ResumeLayout(false); this.grpG59Keyer.PerformLayout(); this.grpSi570.ResumeLayout(false); this.grpSi570.PerformLayout(); this.grpGenesisConnection.ResumeLayout(false); this.grpGenesisConnection.PerformLayout(); this.grpGenesisUSB.ResumeLayout(false); this.grpGenesisUSB.PerformLayout(); this.tcSetup.ResumeLayout(false); this.tpATU.ResumeLayout(false); this.tpATU.PerformLayout(); this.grpExtATU.ResumeLayout(false); this.grpExtATU.PerformLayout(); this.grpATUTiming.ResumeLayout(false); this.grpATUTiming.PerformLayout(); this.grpATUMode.ResumeLayout(false); this.grpATUMode.PerformLayout(); this.tpCAT.ResumeLayout(false); this.tcCAT.ResumeLayout(false); this.tpCATCOM.ResumeLayout(false); this.grpCATIcom.ResumeLayout(false); this.grpCATIcom.PerformLayout(); this.grpCATOverEthernet.ResumeLayout(false); this.grpCATOverEthernet.PerformLayout(); this.grpPTTBitBang.ResumeLayout(false); this.grpCatControlBox.ResumeLayout(false); this.grpCatControlBox.PerformLayout(); this.tpServerClient.ResumeLayout(false); this.grpNetClient.ResumeLayout(false); this.grpNetClient.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udClientMulticastPort)).EndInit(); this.grpNetServer.ResumeLayout(false); this.grpNetServer.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.udServerPort)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTTL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udMulticastPort)).EndInit(); this.tpMultiPSK.ResumeLayout(false); this.grpMultiPSK.ResumeLayout(false); this.grpMultiPSK.PerformLayout(); this.tabPage2.ResumeLayout(false); this.groupBoxTS8.ResumeLayout(false); this.groupBoxTS8.PerformLayout(); this.groupBoxTS1.ResumeLayout(false); this.groupBoxTS1.PerformLayout(); this.groupBoxTS2.ResumeLayout(false); this.groupBoxTS3.ResumeLayout(false); this.ResumeLayout(false); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Setup)); this.tcSetup = new System.Windows.Forms.TabControl(); this.tpGeneral = new System.Windows.Forms.TabPage(); this.tcGeneral = new System.Windows.Forms.TabControl(); this.tpGeneralHardware = new System.Windows.Forms.TabPage(); this.checkBoxTS1 = new System.Windows.Forms.CheckBoxTS(); this.grpHWSoftRock = new System.Windows.Forms.GroupBoxTS(); this.lblGenSoftRockCenterFreq = new System.Windows.Forms.LabelTS(); this.udSoftRockCenterFreq = new System.Windows.Forms.NumericUpDownTS(); this.grpGeneralDDS = new System.Windows.Forms.GroupBoxTS(); this.udSi570Addr = new System.Windows.Forms.NumericUpDownTS(); this.lblSi570Addr = new System.Windows.Forms.LabelTS(); this.lblMaxFreq = new System.Windows.Forms.LabelTS(); this.udMaxFreq = new System.Windows.Forms.NumericUpDownTS(); this.lblFreqMult = new System.Windows.Forms.LabelTS(); this.udFreqMult = new System.Windows.Forms.NumericUpDownTS(); this.udDDSCorrection = new System.Windows.Forms.NumericUpDownTS(); this.lblClockCorrection = new System.Windows.Forms.LabelTS(); this.udDDSIFFreq = new System.Windows.Forms.NumericUpDownTS(); this.lblIFFrequency = new System.Windows.Forms.LabelTS(); this.udDDSPLLMult = new System.Windows.Forms.NumericUpDownTS(); this.lblPLLMult = new System.Windows.Forms.LabelTS(); this.chkGenDDSExpert = new System.Windows.Forms.CheckBox(); this.grpGeneralModel = new System.Windows.Forms.GroupBoxTS(); this.radGenModelDemoNone = new System.Windows.Forms.RadioButtonTS(); this.radGenModelSoftRock40 = new System.Windows.Forms.RadioButtonTS(); this.radGenModelSDR1000 = new System.Windows.Forms.RadioButtonTS(); this.btnWizard = new System.Windows.Forms.ButtonTS(); this.chkGeneralRXOnly = new System.Windows.Forms.CheckBoxTS(); this.grpGeneralHardwareSDR1000 = new System.Windows.Forms.GroupBoxTS(); this.chkBoxJanusOzyControl = new System.Windows.Forms.CheckBoxTS(); this.lblGeneralLPTDelay = new System.Windows.Forms.LabelTS(); this.udGeneralLPTDelay = new System.Windows.Forms.NumericUpDownTS(); this.lblGeneralLPTAddr = new System.Windows.Forms.LabelTS(); this.comboGeneralLPTAddr = new System.Windows.Forms.ComboBoxTS(); this.grpGeneralHardwareFLEX5000 = new System.Windows.Forms.GroupBoxTS(); this.chkGenFLEX5000ExtRef = new System.Windows.Forms.CheckBoxTS(); this.lblFirmwareRev = new System.Windows.Forms.LabelTS(); this.lblRX2Rev = new System.Windows.Forms.LabelTS(); this.lblATURev = new System.Windows.Forms.LabelTS(); this.lblRFIORev = new System.Windows.Forms.LabelTS(); this.lblPARev = new System.Windows.Forms.LabelTS(); this.lblTRXRev = new System.Windows.Forms.LabelTS(); this.lblSerialNum = new System.Windows.Forms.LabelTS(); this.lblModel = new System.Windows.Forms.LabelTS(); this.tpUSB = new System.Windows.Forms.TabPage(); this.chkGeneralUSBPresent = new System.Windows.Forms.CheckBoxTS(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.labelTS47 = new System.Windows.Forms.LabelTS(); this.udAD995xAtt = new System.Windows.Forms.NumericUpDownTS(); this.chkGeneral995xBPF = new System.Windows.Forms.CheckBoxTS(); this.labelTS46 = new System.Windows.Forms.LabelTS(); this.udAD995xCalibration = new System.Windows.Forms.NumericUpDownTS(); this.labelTS45 = new System.Windows.Forms.LabelTS(); this.udAD995xSDRMult = new System.Windows.Forms.NumericUpDownTS(); this.labelTS44 = new System.Windows.Forms.LabelTS(); this.udAD995xClockPLL = new System.Windows.Forms.NumericUpDownTS(); this.labelTS43 = new System.Windows.Forms.LabelTS(); this.udAD995xClock = new System.Windows.Forms.NumericUpDownTS(); this.labelTS42 = new System.Windows.Forms.LabelTS(); this.comboSerial995x = new System.Windows.Forms.ComboBoxTS(); this.chkGeneral995x = new System.Windows.Forms.CheckBoxTS(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.chkGeneralUSBtoI2CPresent = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralUSBtoI2CBPF = new System.Windows.Forms.CheckBoxTS(); this.tpGeneralCalibration = new System.Windows.Forms.TabPage(); this.chkCalExpert = new System.Windows.Forms.CheckBox(); this.grpGenCalRXImage = new System.Windows.Forms.GroupBoxTS(); this.btnAIRStore = new System.Windows.Forms.ButtonTS(); this.btnAIRClearAll = new System.Windows.Forms.ButtonTS(); this.btnAIREditAdd = new System.Windows.Forms.ButtonTS(); this.labelTS22 = new System.Windows.Forms.LabelTS(); this.udAIRPosition = new System.Windows.Forms.NumericUpDownTS(); this.labelTS21 = new System.Windows.Forms.LabelTS(); this.udAIRPoints = new System.Windows.Forms.NumericUpDownTS(); this.labelTS19 = new System.Windows.Forms.LabelTS(); this.labelTS18 = new System.Windows.Forms.LabelTS(); this.labelTS17 = new System.Windows.Forms.LabelTS(); this.cbAIREnableEdit = new System.Windows.Forms.CheckBox(); this.udAIRGain = new System.Windows.Forms.NumericUpDownTS(); this.udAIRPhase = new System.Windows.Forms.NumericUpDownTS(); this.udAIRBin = new System.Windows.Forms.NumericUpDownTS(); this.btnAIRCalImageStart = new System.Windows.Forms.ButtonTS(); this.udGeneralCalFreq3 = new System.Windows.Forms.NumericUpDownTS(); this.lblGenCalRXImageFreq = new System.Windows.Forms.LabelTS(); this.btnGeneralCalImageStart = new System.Windows.Forms.ButtonTS(); this.grpGenCalLevel = new System.Windows.Forms.GroupBoxTS(); this.udGeneralCalLevel = new System.Windows.Forms.NumericUpDownTS(); this.udGeneralCalFreq2 = new System.Windows.Forms.NumericUpDownTS(); this.lblGenCalLevelFreq = new System.Windows.Forms.LabelTS(); this.lblGeneralCalLevel = new System.Windows.Forms.LabelTS(); this.btnGeneralCalLevelStart = new System.Windows.Forms.ButtonTS(); this.grpGeneralCalibration = new System.Windows.Forms.GroupBoxTS(); this.btnGeneralCalFreqStart = new System.Windows.Forms.ButtonTS(); this.udGeneralCalFreq1 = new System.Windows.Forms.NumericUpDownTS(); this.lblGeneralCalFrequency = new System.Windows.Forms.LabelTS(); this.tpFilters = new System.Windows.Forms.TabPage(); this.grpOptFilterControls = new System.Windows.Forms.GroupBoxTS(); this.udFilterDefaultLowCut = new System.Windows.Forms.NumericUpDownTS(); this.lblDefaultLowCut = new System.Windows.Forms.LabelTS(); this.udOptMaxFilterShift = new System.Windows.Forms.NumericUpDownTS(); this.lblOptMaxFilterShift = new System.Windows.Forms.LabelTS(); this.comboOptFilterWidthMode = new System.Windows.Forms.ComboBoxTS(); this.lblOptWidthSliderMode = new System.Windows.Forms.LabelTS(); this.udOptMaxFilterWidth = new System.Windows.Forms.NumericUpDownTS(); this.lblOptMaxFilter = new System.Windows.Forms.LabelTS(); this.chkOptFilterSaveChanges = new System.Windows.Forms.CheckBoxTS(); this.tpRX2 = new System.Windows.Forms.TabPage(); this.chkRX2AutoMuteTX = new System.Windows.Forms.CheckBox(); this.tpGeneralOptions = new System.Windows.Forms.TabPage(); this.grpGenCustomTitleText = new System.Windows.Forms.GroupBoxTS(); this.txtGenCustomTitle = new System.Windows.Forms.TextBoxTS(); this.grpOptMisc = new System.Windows.Forms.GroupBoxTS(); this.chkMouseTuneStep = new System.Windows.Forms.CheckBoxTS(); this.chkZeroBeatRIT = new System.Windows.Forms.CheckBoxTS(); this.chkSnapClickTune = new System.Windows.Forms.CheckBoxTS(); this.chkDisableToolTips = new System.Windows.Forms.CheckBoxTS(); this.chkOptAlwaysOnTop = new System.Windows.Forms.CheckBoxTS(); this.grpOptQuickQSY = new System.Windows.Forms.GroupBoxTS(); this.chkOptEnableKBShortcuts = new System.Windows.Forms.CheckBoxTS(); this.chkOptQuickQSY = new System.Windows.Forms.CheckBoxTS(); this.grpGenAutoMute = new System.Windows.Forms.GroupBoxTS(); this.chkGenAutoMute = new System.Windows.Forms.CheckBoxTS(); this.grpGenTuningOptions = new System.Windows.Forms.GroupBoxTS(); this.lblOptClickTuneDIGL = new System.Windows.Forms.LabelTS(); this.udOptClickTuneOffsetDIGL = new System.Windows.Forms.NumericUpDownTS(); this.lblOptClickTuneDIGU = new System.Windows.Forms.LabelTS(); this.udOptClickTuneOffsetDIGU = new System.Windows.Forms.NumericUpDownTS(); this.grpGeneralOptions = new System.Windows.Forms.GroupBoxTS(); this.chkSplitOff = new System.Windows.Forms.CheckBoxTS(); this.chkGenAllModeMicPTT = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralCustomFilter = new System.Windows.Forms.CheckBoxTS(); this.lblGeneralX2Delay = new System.Windows.Forms.LabelTS(); this.udGeneralX2Delay = new System.Windows.Forms.NumericUpDownTS(); this.chkGeneralEnableX2 = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralSoftwareGainCorr = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralDisablePTT = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralSpurRed = new System.Windows.Forms.CheckBoxTS(); this.grpGeneralProcessPriority = new System.Windows.Forms.GroupBoxTS(); this.comboGeneralProcessPriority = new System.Windows.Forms.ComboBoxTS(); this.grpGeneralUpdates = new System.Windows.Forms.GroupBoxTS(); this.chkGeneralUpdateBeta = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralUpdateRelease = new System.Windows.Forms.CheckBoxTS(); this.tpExtIO = new System.Windows.Forms.TabPage(); this.grpExtIOPMSDR = new System.Windows.Forms.GroupBox(); this.chkGeneralPMSDREnable = new System.Windows.Forms.CheckBoxTS(); this.btnPMSDRToolBox = new System.Windows.Forms.ButtonTS(); this.tpBPFLPF = new System.Windows.Forms.TabPage(); this.labelTS38 = new System.Windows.Forms.LabelTS(); this.ud6mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud6mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS39 = new System.Windows.Forms.LabelTS(); this.ud10mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud10mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS40 = new System.Windows.Forms.LabelTS(); this.ud12mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud12mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS34 = new System.Windows.Forms.LabelTS(); this.ud15mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud15mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS35 = new System.Windows.Forms.LabelTS(); this.ud17mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud17mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS36 = new System.Windows.Forms.LabelTS(); this.ud20mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud20mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS37 = new System.Windows.Forms.LabelTS(); this.ud30mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud30mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS32 = new System.Windows.Forms.LabelTS(); this.ud40mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud40mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS33 = new System.Windows.Forms.LabelTS(); this.ud60mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud60mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS31 = new System.Windows.Forms.LabelTS(); this.ud80mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.ud80mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS30 = new System.Windows.Forms.LabelTS(); this.ud160mLPFEnd = new System.Windows.Forms.NumericUpDownTS(); this.labelTS29 = new System.Windows.Forms.LabelTS(); this.labelTS28 = new System.Windows.Forms.LabelTS(); this.ud160mLPFStart = new System.Windows.Forms.NumericUpDownTS(); this.labelTS27 = new System.Windows.Forms.LabelTS(); this.labelTS16 = new System.Windows.Forms.LabelTS(); this.ud6m = new System.Windows.Forms.NumericUpDownTS(); this.ud10m = new System.Windows.Forms.NumericUpDownTS(); this.ud12m = new System.Windows.Forms.NumericUpDownTS(); this.ud15m = new System.Windows.Forms.NumericUpDownTS(); this.ud17m = new System.Windows.Forms.NumericUpDownTS(); this.ud20m = new System.Windows.Forms.NumericUpDownTS(); this.ud30m = new System.Windows.Forms.NumericUpDownTS(); this.ud40m = new System.Windows.Forms.NumericUpDownTS(); this.ud60m = new System.Windows.Forms.NumericUpDownTS(); this.ud80m = new System.Windows.Forms.NumericUpDownTS(); this.ud160m = new System.Windows.Forms.NumericUpDownTS(); this.labelTS15 = new System.Windows.Forms.LabelTS(); this.labelTS14 = new System.Windows.Forms.LabelTS(); this.labelTS13 = new System.Windows.Forms.LabelTS(); this.labelTS12 = new System.Windows.Forms.LabelTS(); this.labelTS11 = new System.Windows.Forms.LabelTS(); this.labelTS10 = new System.Windows.Forms.LabelTS(); this.labelTS9 = new System.Windows.Forms.LabelTS(); this.labelTS8 = new System.Windows.Forms.LabelTS(); this.labelTS7 = new System.Windows.Forms.LabelTS(); this.labelTS6 = new System.Windows.Forms.LabelTS(); this.labelTS5 = new System.Windows.Forms.LabelTS(); this.tpSerial = new System.Windows.Forms.TabPage(); this.grpGeneralSerial = new System.Windows.Forms.GroupBox(); this.labelTS48 = new System.Windows.Forms.LabelTS(); this.udSerialDelay = new System.Windows.Forms.NumericUpDownTS(); this.comboBoxTS1 = new System.Windows.Forms.ComboBoxTS(); this.chkGeneralSerialBPFLPF = new System.Windows.Forms.CheckBoxTS(); this.labelTS41 = new System.Windows.Forms.LabelTS(); this.chkGeneralSerialVFO = new System.Windows.Forms.CheckBoxTS(); this.comboSerialRgstrsChar = new System.Windows.Forms.ComboBoxTS(); this.comboSerialLOChar = new System.Windows.Forms.ComboBoxTS(); this.comboSerialVFOChar = new System.Windows.Forms.ComboBoxTS(); this.chkGeneralSerialRgstrs = new System.Windows.Forms.CheckBoxTS(); this.chkGeneralSerialLO = new System.Windows.Forms.CheckBoxTS(); this.comboKeyerSerial_Si570 = new System.Windows.Forms.ComboBoxTS(); this.labelTS26 = new System.Windows.Forms.LabelTS(); this.tpExtCtrl = new System.Windows.Forms.TabPage(); this.chkExtEnable = new System.Windows.Forms.CheckBoxTS(); this.grpExtTX = new System.Windows.Forms.GroupBoxTS(); this.lblExtTXX26 = new System.Windows.Forms.LabelTS(); this.chkExtTX26 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX66 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX106 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX126 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX156 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX176 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX206 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX306 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX406 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX606 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX806 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1606 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTXX25 = new System.Windows.Forms.LabelTS(); this.lblExtTXX24 = new System.Windows.Forms.LabelTS(); this.lblExtTXX23 = new System.Windows.Forms.LabelTS(); this.lblExtTXX22 = new System.Windows.Forms.LabelTS(); this.lblExtTX2 = new System.Windows.Forms.LabelTS(); this.chkExtTX23 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX22 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX21 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX25 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX24 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX6 = new System.Windows.Forms.LabelTS(); this.chkExtTX63 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX62 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX61 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX65 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX64 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX10 = new System.Windows.Forms.LabelTS(); this.chkExtTX103 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX102 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX101 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX105 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX104 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX12 = new System.Windows.Forms.LabelTS(); this.chkExtTX123 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX122 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX121 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX125 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX124 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX15 = new System.Windows.Forms.LabelTS(); this.chkExtTX153 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX152 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX151 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX155 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX154 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX17 = new System.Windows.Forms.LabelTS(); this.chkExtTX173 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX172 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX171 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX175 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX174 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX20 = new System.Windows.Forms.LabelTS(); this.chkExtTX203 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX202 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX201 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX205 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX204 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX30 = new System.Windows.Forms.LabelTS(); this.chkExtTX303 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX302 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX301 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX305 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX304 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX40 = new System.Windows.Forms.LabelTS(); this.chkExtTX403 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX402 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX401 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX405 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX404 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX60 = new System.Windows.Forms.LabelTS(); this.chkExtTX603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX601 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX604 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTX80 = new System.Windows.Forms.LabelTS(); this.chkExtTX803 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX802 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX801 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX805 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX804 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTXX2Pins = new System.Windows.Forms.LabelTS(); this.lblExtTXBand = new System.Windows.Forms.LabelTS(); this.lblExtTX160 = new System.Windows.Forms.LabelTS(); this.chkExtTX1603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1601 = new System.Windows.Forms.CheckBoxTS(); this.lblExtTXX21 = new System.Windows.Forms.LabelTS(); this.chkExtTX1605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtTX1604 = new System.Windows.Forms.CheckBoxTS(); this.grpExtRX = new System.Windows.Forms.GroupBoxTS(); this.lblExtRXX26 = new System.Windows.Forms.LabelTS(); this.chkExtRX26 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX66 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX106 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX126 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX156 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX176 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX206 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX306 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX406 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX606 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX806 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1606 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRXX25 = new System.Windows.Forms.LabelTS(); this.lblExtRXX24 = new System.Windows.Forms.LabelTS(); this.lblExtRXX23 = new System.Windows.Forms.LabelTS(); this.lblExtRXX22 = new System.Windows.Forms.LabelTS(); this.lblExtRX2 = new System.Windows.Forms.LabelTS(); this.chkExtRX23 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX22 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX21 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX25 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX24 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX6 = new System.Windows.Forms.LabelTS(); this.chkExtRX63 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX62 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX61 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX65 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX64 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX10 = new System.Windows.Forms.LabelTS(); this.chkExtRX103 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX102 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX101 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX105 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX104 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX12 = new System.Windows.Forms.LabelTS(); this.chkExtRX123 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX122 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX121 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX125 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX124 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX15 = new System.Windows.Forms.LabelTS(); this.chkExtRX153 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX152 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX151 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX155 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX154 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX17 = new System.Windows.Forms.LabelTS(); this.chkExtRX173 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX172 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX171 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX175 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX174 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX20 = new System.Windows.Forms.LabelTS(); this.chkExtRX203 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX202 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX201 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX205 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX204 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX30 = new System.Windows.Forms.LabelTS(); this.chkExtRX303 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX302 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX301 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX305 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX304 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX40 = new System.Windows.Forms.LabelTS(); this.chkExtRX403 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX402 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX401 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX405 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX404 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX60 = new System.Windows.Forms.LabelTS(); this.chkExtRX603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX601 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX604 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRX80 = new System.Windows.Forms.LabelTS(); this.chkExtRX803 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX802 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX801 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX805 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX804 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRXX2Pins = new System.Windows.Forms.LabelTS(); this.lblExtRXBand = new System.Windows.Forms.LabelTS(); this.lblExtRX160 = new System.Windows.Forms.LabelTS(); this.chkExtRX1603 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1602 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1601 = new System.Windows.Forms.CheckBoxTS(); this.lblExtRXX21 = new System.Windows.Forms.LabelTS(); this.chkExtRX1605 = new System.Windows.Forms.CheckBoxTS(); this.chkExtRX1604 = new System.Windows.Forms.CheckBoxTS(); this.tpAudio = new System.Windows.Forms.TabPage(); this.tcAudio = new System.Windows.Forms.TabControl(); this.tpAudioCard1 = new System.Windows.Forms.TabPage(); this.groupBoxTS1 = new System.Windows.Forms.GroupBoxTS(); this.udIQCorrection = new System.Windows.Forms.NumericUpDownTS(); this.chkAudioExpert = new System.Windows.Forms.CheckBoxTS(); this.grpAudioMicBoost = new System.Windows.Forms.GroupBoxTS(); this.chkAudioMicBoost = new System.Windows.Forms.CheckBoxTS(); this.grpAudioChannels = new System.Windows.Forms.GroupBoxTS(); this.comboAudioChannels1 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioMicInGain1 = new System.Windows.Forms.GroupBoxTS(); this.udAudioMicGain1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioLineInGain1 = new System.Windows.Forms.GroupBoxTS(); this.udAudioLineIn1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioVolts1 = new System.Windows.Forms.GroupBoxTS(); this.btnAudioVoltTest1 = new System.Windows.Forms.ButtonTS(); this.udAudioVoltage1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioDetails1 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioTransmit1 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioMixer1 = new System.Windows.Forms.LabelTS(); this.lblAudioOutput1 = new System.Windows.Forms.LabelTS(); this.comboAudioOutput1 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioInput1 = new System.Windows.Forms.LabelTS(); this.lblAudioDriver1 = new System.Windows.Forms.LabelTS(); this.comboAudioInput1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioDriver1 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioMixer1 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioTransmit1 = new System.Windows.Forms.LabelTS(); this.lblAudioReceive1 = new System.Windows.Forms.LabelTS(); this.comboAudioReceive1 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioLatency1 = new System.Windows.Forms.GroupBoxTS(); this.chkAudioLatencyManual1 = new System.Windows.Forms.CheckBoxTS(); this.udAudioLatency1 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioCard = new System.Windows.Forms.GroupBoxTS(); this.comboAudioSoundCard = new System.Windows.Forms.ComboBoxTS(); this.grpAudioBufferSize1 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioBuffer1 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioSampleRate1 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioSampleRate1 = new System.Windows.Forms.ComboBoxTS(); this.tpVAC = new System.Windows.Forms.TabPage(); this.chkEnableLoopAudio = new System.Windows.Forms.CheckBoxTS(); this.grpDirectIQOutput = new System.Windows.Forms.GroupBox(); this.chkAudioCorrectIQ = new System.Windows.Forms.CheckBoxTS(); this.chkAudioIQtoVAC = new System.Windows.Forms.CheckBoxTS(); this.chkVACCombine = new System.Windows.Forms.CheckBoxTS(); this.chkVACAllowBypass = new System.Windows.Forms.CheckBoxTS(); this.grpAudioVACAutoEnable = new System.Windows.Forms.GroupBoxTS(); this.chkAudioVACAutoEnable = new System.Windows.Forms.CheckBoxTS(); this.grpAudioVACGain = new System.Windows.Forms.GroupBoxTS(); this.lblAudioVACGainTX = new System.Windows.Forms.LabelTS(); this.udAudioVACGainTX = new System.Windows.Forms.NumericUpDownTS(); this.lblAudioVACGainRX = new System.Windows.Forms.LabelTS(); this.udAudioVACGainRX = new System.Windows.Forms.NumericUpDownTS(); this.grpAudio2Stereo = new System.Windows.Forms.GroupBoxTS(); this.chkAudio2Stereo = new System.Windows.Forms.CheckBoxTS(); this.grpAudioLatency2 = new System.Windows.Forms.GroupBoxTS(); this.chkAudioLatencyManual2 = new System.Windows.Forms.CheckBoxTS(); this.udAudioLatency2 = new System.Windows.Forms.NumericUpDownTS(); this.grpAudioSampleRate2 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioSampleRate2 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioBuffer2 = new System.Windows.Forms.GroupBoxTS(); this.comboAudioBuffer2 = new System.Windows.Forms.ComboBoxTS(); this.grpAudioDetails2 = new System.Windows.Forms.GroupBoxTS(); this.lblAudioOutput2 = new System.Windows.Forms.LabelTS(); this.comboAudioOutput2 = new System.Windows.Forms.ComboBoxTS(); this.lblAudioInput2 = new System.Windows.Forms.LabelTS(); this.lblAudioDriver2 = new System.Windows.Forms.LabelTS(); this.comboAudioInput2 = new System.Windows.Forms.ComboBoxTS(); this.comboAudioDriver2 = new System.Windows.Forms.ComboBoxTS(); this.chkAudioEnableVAC = new System.Windows.Forms.CheckBoxTS(); this.tpDSP = new System.Windows.Forms.TabPage(); this.tcDSP = new System.Windows.Forms.TabControl(); this.tpDSPOptions = new System.Windows.Forms.TabPage(); this.chkDSPTXMeterPeak = new System.Windows.Forms.CheckBox(); this.grpDSPBufferSize = new System.Windows.Forms.GroupBoxTS(); this.grpDSPBufDig = new System.Windows.Forms.GroupBox(); this.comboDSPDigTXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPDigBufferRX = new System.Windows.Forms.LabelTS(); this.comboDSPDigRXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPDigBufferTX = new System.Windows.Forms.LabelTS(); this.grpDSPBufCW = new System.Windows.Forms.GroupBox(); this.comboDSPCWTXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPCWBufferRX = new System.Windows.Forms.LabelTS(); this.comboDSPCWRXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPCWBufferTX = new System.Windows.Forms.LabelTS(); this.grpDSPBufPhone = new System.Windows.Forms.GroupBox(); this.comboDSPPhoneTXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPPhoneBufferRX = new System.Windows.Forms.LabelTS(); this.comboDSPPhoneRXBuf = new System.Windows.Forms.ComboBoxTS(); this.lblDSPPhoneBufferTX = new System.Windows.Forms.LabelTS(); this.grpDSPNB = new System.Windows.Forms.GroupBoxTS(); this.udDSPNB = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPNBThreshold = new System.Windows.Forms.LabelTS(); this.grpDSPLMSNR = new System.Windows.Forms.GroupBoxTS(); this.lblLMSNRLeak = new System.Windows.Forms.LabelTS(); this.udLMSNRLeak = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSNRgain = new System.Windows.Forms.LabelTS(); this.udLMSNRgain = new System.Windows.Forms.NumericUpDownTS(); this.udLMSNRdelay = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSNRdelay = new System.Windows.Forms.LabelTS(); this.udLMSNRtaps = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSNRtaps = new System.Windows.Forms.LabelTS(); this.grpDSPLMSANF = new System.Windows.Forms.GroupBoxTS(); this.lblLMSANFLeak = new System.Windows.Forms.LabelTS(); this.udLMSANFLeak = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSANFgain = new System.Windows.Forms.LabelTS(); this.udLMSANFgain = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSANFdelay = new System.Windows.Forms.LabelTS(); this.udLMSANFdelay = new System.Windows.Forms.NumericUpDownTS(); this.lblLMSANFTaps = new System.Windows.Forms.LabelTS(); this.udLMSANFtaps = new System.Windows.Forms.NumericUpDownTS(); this.grpDSPWindow = new System.Windows.Forms.GroupBoxTS(); this.comboDSPWindow = new System.Windows.Forms.ComboBoxTS(); this.grpDSPNB2 = new System.Windows.Forms.GroupBoxTS(); this.udDSPNB2 = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPNB2Threshold = new System.Windows.Forms.LabelTS(); this.tpDSPImageReject = new System.Windows.Forms.TabPage(); this.chkDSPImageExpert = new System.Windows.Forms.CheckBox(); this.grpDSPImageRejectRX = new System.Windows.Forms.GroupBoxTS(); this.labelTS25 = new System.Windows.Forms.LabelTS(); this.udAIRCalibrationPoint = new System.Windows.Forms.NumericUpDownTS(); this.udAIRCalibrationIF = new System.Windows.Forms.NumericUpDownTS(); this.labelTS24 = new System.Windows.Forms.LabelTS(); this.cbAIRCalibrationEnable = new System.Windows.Forms.CheckBox(); this.labelTS23 = new System.Windows.Forms.LabelTS(); this.udAIRCalibrationPosition = new System.Windows.Forms.NumericUpDownTS(); this.labelTS20 = new System.Windows.Forms.LabelTS(); this.tbAIRCalibrationPosition = new System.Windows.Forms.TrackBarTS(); this.lblDSPGainValRX = new System.Windows.Forms.LabelTS(); this.lblDSPPhaseValRX = new System.Windows.Forms.LabelTS(); this.udDSPImageGainRX = new System.Windows.Forms.NumericUpDownTS(); this.udDSPImagePhaseRX = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPImageGainRX = new System.Windows.Forms.LabelTS(); this.tbDSPImagePhaseRX = new System.Windows.Forms.TrackBarTS(); this.lblDSPImagePhaseRX = new System.Windows.Forms.LabelTS(); this.tbDSPImageGainRX = new System.Windows.Forms.TrackBarTS(); this.grpDSPImageRejectTX = new System.Windows.Forms.GroupBoxTS(); this.checkboxTXImagCal = new System.Windows.Forms.CheckBoxTS(); this.lblDSPGainValTX = new System.Windows.Forms.LabelTS(); this.lblDSPPhaseValTX = new System.Windows.Forms.LabelTS(); this.udDSPImageGainTX = new System.Windows.Forms.NumericUpDownTS(); this.udDSPImagePhaseTX = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPImageGainTX = new System.Windows.Forms.LabelTS(); this.tbDSPImagePhaseTX = new System.Windows.Forms.TrackBarTS(); this.lblDSPImagePhaseTX = new System.Windows.Forms.LabelTS(); this.tbDSPImageGainTX = new System.Windows.Forms.TrackBarTS(); this.tpDSPKeyer = new System.Windows.Forms.TabPage(); this.grpKeyerConnections = new System.Windows.Forms.GroupBoxTS(); this.comboKeyerConnKeyLine = new System.Windows.Forms.ComboBoxTS(); this.comboKeyerConnSecondary = new System.Windows.Forms.ComboBoxTS(); this.lblKeyerConnSecondary = new System.Windows.Forms.LabelTS(); this.lblKeyerConnKeyLine = new System.Windows.Forms.LabelTS(); this.comboKeyerConnPTTLine = new System.Windows.Forms.ComboBoxTS(); this.lblKeyerConnPrimary = new System.Windows.Forms.LabelTS(); this.lblKeyerConnPTTLine = new System.Windows.Forms.LabelTS(); this.comboKeyerConnPrimary = new System.Windows.Forms.ComboBoxTS(); this.grpDSPCWPitch = new System.Windows.Forms.GroupBoxTS(); this.lblDSPCWPitchFreq = new System.Windows.Forms.LabelTS(); this.udDSPCWPitch = new System.Windows.Forms.NumericUpDownTS(); this.grpDSPKeyerOptions = new System.Windows.Forms.GroupBoxTS(); this.chkCWKeyerMode = new System.Windows.Forms.CheckBoxTS(); this.chkHiPerfKeyer = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerRevPdl = new System.Windows.Forms.CheckBoxTS(); this.chkDSPKeyerDisableMonitor = new System.Windows.Forms.CheckBoxTS(); this.chkCWKeyerIambic = new System.Windows.Forms.CheckBoxTS(); this.chkCWAutoSwitchMode = new System.Windows.Forms.CheckBoxTS(); this.grpDSPKeyerSignalShaping = new System.Windows.Forms.GroupBoxTS(); this.udCWKeyerDeBounce = new System.Windows.Forms.NumericUpDownTS(); this.lblKeyerDeBounce = new System.Windows.Forms.LabelTS(); this.udCWKeyerWeight = new System.Windows.Forms.NumericUpDownTS(); this.lblCWWeight = new System.Windows.Forms.LabelTS(); this.udCWKeyerRamp = new System.Windows.Forms.NumericUpDownTS(); this.lblCWRamp = new System.Windows.Forms.LabelTS(); this.grpDSPKeyerSemiBreakIn = new System.Windows.Forms.GroupBoxTS(); this.chkCWBreakInEnabled = new System.Windows.Forms.CheckBoxTS(); this.lblCWBreakInDelay = new System.Windows.Forms.LabelTS(); this.udCWBreakInDelay = new System.Windows.Forms.NumericUpDownTS(); this.tpDSPAGCALC = new System.Windows.Forms.TabPage(); this.grpDSPLeveler = new System.Windows.Forms.GroupBoxTS(); this.chkDSPLevelerEnabled = new System.Windows.Forms.CheckBoxTS(); this.lblDSPLevelerHangThreshold = new System.Windows.Forms.LabelTS(); this.udDSPLevelerHangTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerHangTime = new System.Windows.Forms.LabelTS(); this.udDSPLevelerThreshold = new System.Windows.Forms.NumericUpDownTS(); this.udDSPLevelerSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPLevelerDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerSlope = new System.Windows.Forms.LabelTS(); this.udDSPLevelerAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPLevelerDecay = new System.Windows.Forms.LabelTS(); this.lblDSPLevelerAttack = new System.Windows.Forms.LabelTS(); this.lblDSPLevelerThreshold = new System.Windows.Forms.LabelTS(); this.tbDSPLevelerHangThreshold = new System.Windows.Forms.TrackBarTS(); this.grpDSPALC = new System.Windows.Forms.GroupBoxTS(); this.lblDSPALCHangThreshold = new System.Windows.Forms.LabelTS(); this.tbDSPALCHangThreshold = new System.Windows.Forms.TrackBarTS(); this.udDSPALCHangTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCHangTime = new System.Windows.Forms.LabelTS(); this.udDSPALCThreshold = new System.Windows.Forms.NumericUpDownTS(); this.udDSPALCSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPALCDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCSlope = new System.Windows.Forms.LabelTS(); this.udDSPALCAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPALCDecay = new System.Windows.Forms.LabelTS(); this.lblDSPALCAttack = new System.Windows.Forms.LabelTS(); this.lblDSPALCThreshold = new System.Windows.Forms.LabelTS(); this.grpDSPAGC = new System.Windows.Forms.GroupBoxTS(); this.tbDSPAGCHangThreshold = new System.Windows.Forms.TrackBarTS(); this.lblDSPAGCHangThreshold = new System.Windows.Forms.LabelTS(); this.lblDSPAGCHangTime = new System.Windows.Forms.LabelTS(); this.udDSPAGCHangTime = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCMaxGaindB = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCSlope = new System.Windows.Forms.NumericUpDownTS(); this.udDSPAGCDecay = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCSlope = new System.Windows.Forms.LabelTS(); this.udDSPAGCAttack = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCDecay = new System.Windows.Forms.LabelTS(); this.lblDSPAGCAttack = new System.Windows.Forms.LabelTS(); this.lblDSPAGCMaxGain = new System.Windows.Forms.LabelTS(); this.udDSPAGCFixedGaindB = new System.Windows.Forms.NumericUpDownTS(); this.lblDSPAGCFixed = new System.Windows.Forms.LabelTS(); this.tpDisplay = new System.Windows.Forms.TabPage(); this.grpDisplayMultimeter = new System.Windows.Forms.GroupBoxTS(); this.chkDisplayMeterShowDecimal = new System.Windows.Forms.CheckBoxTS(); this.udMeterDigitalDelay = new System.Windows.Forms.NumericUpDownTS(); this.lblMultimeterDigitalDelay = new System.Windows.Forms.LabelTS(); this.udDisplayMeterAvg = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMeterAvg = new System.Windows.Forms.LabelTS(); this.udDisplayMultiTextHoldTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMeterTextHoldTime = new System.Windows.Forms.LabelTS(); this.udDisplayMultiPeakHoldTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMultiPeakHoldTime = new System.Windows.Forms.LabelTS(); this.udDisplayMeterDelay = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayMeterDelay = new System.Windows.Forms.LabelTS(); this.grpDisplayDriverEngine = new System.Windows.Forms.GroupBoxTS(); this.comboDisplayDriver = new System.Windows.Forms.ComboBoxTS(); this.grpDisplayPolyPhase = new System.Windows.Forms.GroupBoxTS(); this.chkSpectrumPolyphase = new System.Windows.Forms.CheckBoxTS(); this.grpDisplayScopeMode = new System.Windows.Forms.GroupBoxTS(); this.udDisplayScopeTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayScopeTime = new System.Windows.Forms.LabelTS(); this.grpDisplayWaterfall = new System.Windows.Forms.GroupBoxTS(); this.udDisplayWaterfallUpdatePeriod = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayWaterfallUpdatePeriod = new System.Windows.Forms.LabelTS(); this.udDisplayWaterfallAvgTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayWaterfallAverageTime = new System.Windows.Forms.LabelTS(); this.clrbtnWaterfallLow = new PowerSDR.ColorButton(); this.lblDisplayWaterfallLowColor = new System.Windows.Forms.LabelTS(); this.lblDisplayWaterfallLowLevel = new System.Windows.Forms.LabelTS(); this.udDisplayWaterfallLowLevel = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayWaterfallHighLevel = new System.Windows.Forms.LabelTS(); this.udDisplayWaterfallHighLevel = new System.Windows.Forms.NumericUpDownTS(); this.grpDisplayRefreshRates = new System.Windows.Forms.GroupBoxTS(); this.udDisplayCPUMeter = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayCPUMeter = new System.Windows.Forms.LabelTS(); this.udDisplayPeakText = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayPeakText = new System.Windows.Forms.LabelTS(); this.udDisplayFPS = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayFPS = new System.Windows.Forms.LabelTS(); this.grpDisplayAverage = new System.Windows.Forms.GroupBoxTS(); this.udDisplayAVGTime = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayAVGTime = new System.Windows.Forms.LabelTS(); this.grpDisplayPhase = new System.Windows.Forms.GroupBoxTS(); this.lblDisplayPhasePts = new System.Windows.Forms.LabelTS(); this.udDisplayPhasePts = new System.Windows.Forms.NumericUpDownTS(); this.grpDisplaySpectrumGrid = new System.Windows.Forms.GroupBoxTS(); this.comboDisplayLabelAlign = new System.Windows.Forms.ComboBoxTS(); this.lblDisplayAlign = new System.Windows.Forms.LabelTS(); this.udDisplayGridStep = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayGridMin = new System.Windows.Forms.NumericUpDownTS(); this.udDisplayGridMax = new System.Windows.Forms.NumericUpDownTS(); this.lblDisplayGridStep = new System.Windows.Forms.LabelTS(); this.lblDisplayGridMin = new System.Windows.Forms.LabelTS(); this.lblDisplayGridMax = new System.Windows.Forms.LabelTS(); this.tpTransmit = new System.Windows.Forms.TabPage(); this.grpTXAM = new System.Windows.Forms.GroupBoxTS(); this.lblTXAMCarrierLevel = new System.Windows.Forms.LabelTS(); this.udTXAMCarrierLevel = new System.Windows.Forms.NumericUpDownTS(); this.grpTXMonitor = new System.Windows.Forms.GroupBoxTS(); this.lblTXAF = new System.Windows.Forms.LabelTS(); this.udTXAF = new System.Windows.Forms.NumericUpDownTS(); this.grpTXVOX = new System.Windows.Forms.GroupBoxTS(); this.lblTXVOXHangTime = new System.Windows.Forms.LabelTS(); this.udTXVOXHangTime = new System.Windows.Forms.NumericUpDownTS(); this.chkTXVOXEnabled = new System.Windows.Forms.CheckBoxTS(); this.lblTXVOXThreshold = new System.Windows.Forms.LabelTS(); this.udTXVOXThreshold = new System.Windows.Forms.NumericUpDownTS(); this.grpTXNoiseGate = new System.Windows.Forms.GroupBoxTS(); this.chkTXNoiseGateEnabled = new System.Windows.Forms.CheckBoxTS(); this.udTXNoiseGate = new System.Windows.Forms.NumericUpDownTS(); this.lblTXNoiseGateThreshold = new System.Windows.Forms.LabelTS(); this.grpTXProfile = new System.Windows.Forms.GroupBoxTS(); this.btnTXProfileDelete = new System.Windows.Forms.ButtonTS(); this.btnTXProfileSave = new System.Windows.Forms.ButtonTS(); this.comboTXProfileName = new System.Windows.Forms.ComboBoxTS(); this.grpPATune = new System.Windows.Forms.GroupBoxTS(); this.comboTXTUNMeter = new System.Windows.Forms.ComboBoxTS(); this.lblTXTUNMeter = new System.Windows.Forms.LabelTS(); this.lblTransmitTunePower = new System.Windows.Forms.LabelTS(); this.udTXTunePower = new System.Windows.Forms.NumericUpDownTS(); this.grpTXFilter = new System.Windows.Forms.GroupBoxTS(); this.lblTXFilterHigh = new System.Windows.Forms.LabelTS(); this.udTXFilterLow = new System.Windows.Forms.NumericUpDownTS(); this.lblTXFilterLow = new System.Windows.Forms.LabelTS(); this.udTXFilterHigh = new System.Windows.Forms.NumericUpDownTS(); this.chkDCBlock = new System.Windows.Forms.CheckBoxTS(); this.tpKeyboard = new System.Windows.Forms.TabPage(); this.grpKBXIT = new System.Windows.Forms.GroupBoxTS(); this.lblKBXITUp = new System.Windows.Forms.LabelTS(); this.lblKBXITDown = new System.Windows.Forms.LabelTS(); this.comboKBXITUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBXITDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBRIT = new System.Windows.Forms.GroupBoxTS(); this.lblKBRitUp = new System.Windows.Forms.LabelTS(); this.lblKBRITDown = new System.Windows.Forms.LabelTS(); this.comboKBRITUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBRITDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBMode = new System.Windows.Forms.GroupBoxTS(); this.lblKBModeUp = new System.Windows.Forms.LabelTS(); this.lblKBModeDown = new System.Windows.Forms.LabelTS(); this.comboKBModeUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBModeDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBBand = new System.Windows.Forms.GroupBoxTS(); this.lblKBBandUp = new System.Windows.Forms.LabelTS(); this.lblKBBandDown = new System.Windows.Forms.LabelTS(); this.comboKBBandUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBBandDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBTune = new System.Windows.Forms.GroupBoxTS(); this.lblKBTuneDigit = new System.Windows.Forms.LabelTS(); this.lblKBTune7 = new System.Windows.Forms.LabelTS(); this.lblKBTune6 = new System.Windows.Forms.LabelTS(); this.lblKBTune5 = new System.Windows.Forms.LabelTS(); this.lblKBTune4 = new System.Windows.Forms.LabelTS(); this.lblKBTune3 = new System.Windows.Forms.LabelTS(); this.lblKBTune2 = new System.Windows.Forms.LabelTS(); this.comboKBTuneUp7 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown7 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp6 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown6 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp5 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown5 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp4 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown4 = new System.Windows.Forms.ComboBoxTS(); this.lblKBTune1 = new System.Windows.Forms.LabelTS(); this.lblKBTuneUp = new System.Windows.Forms.LabelTS(); this.lblKBTuneDown = new System.Windows.Forms.LabelTS(); this.comboKBTuneUp3 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown3 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp1 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneUp2 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown1 = new System.Windows.Forms.ComboBoxTS(); this.comboKBTuneDown2 = new System.Windows.Forms.ComboBoxTS(); this.grpKBFilter = new System.Windows.Forms.GroupBoxTS(); this.lblKBFilterUp = new System.Windows.Forms.LabelTS(); this.lblKBFilterDown = new System.Windows.Forms.LabelTS(); this.comboKBFilterUp = new System.Windows.Forms.ComboBoxTS(); this.comboKBFilterDown = new System.Windows.Forms.ComboBoxTS(); this.grpKBCW = new System.Windows.Forms.GroupBoxTS(); this.lblKBCWDot = new System.Windows.Forms.LabelTS(); this.lblKBCWDash = new System.Windows.Forms.LabelTS(); this.comboKBCWDot = new System.Windows.Forms.ComboBoxTS(); this.comboKBCWDash = new System.Windows.Forms.ComboBoxTS(); this.tpAppearance = new System.Windows.Forms.TabPage(); this.tcAppearance = new System.Windows.Forms.TabControl(); this.tpAppearanceDisplay = new System.Windows.Forms.TabPage(); this.grpAppPanadapter = new System.Windows.Forms.GroupBoxTS(); this.clrbtnSubRXZero = new PowerSDR.ColorButton(); this.lblSubRXZeroLine = new System.Windows.Forms.LabelTS(); this.clrbtnSubRXFilter = new PowerSDR.ColorButton(); this.lblSubRXFilterColor = new System.Windows.Forms.LabelTS(); this.chkShowFreqOffset = new System.Windows.Forms.CheckBoxTS(); this.clrbtnBandEdge = new PowerSDR.ColorButton(); this.lblBandEdge = new System.Windows.Forms.LabelTS(); this.clrbtnFilter = new PowerSDR.ColorButton(); this.clrbtnTXFilter = new PowerSDR.ColorButton(); this.lblTXFilterColor = new System.Windows.Forms.LabelTS(); this.lblDisplayFilterColor = new System.Windows.Forms.LabelTS(); this.grpDisplayPeakCursor = new System.Windows.Forms.GroupBoxTS(); this.clrbtnPeakBackground = new PowerSDR.ColorButton(); this.lblPeakBackground = new System.Windows.Forms.LabelTS(); this.clrbtnPeakText = new PowerSDR.ColorButton(); this.lblPeakText = new System.Windows.Forms.LabelTS(); this.lblDisplayDataLineColor = new System.Windows.Forms.LabelTS(); this.lblDisplayTextColor = new System.Windows.Forms.LabelTS(); this.lblDisplayZeroLineColor = new System.Windows.Forms.LabelTS(); this.lblDisplayGridColor = new System.Windows.Forms.LabelTS(); this.lblDisplayBackgroundColor = new System.Windows.Forms.LabelTS(); this.clrbtnDataLine = new PowerSDR.ColorButton(); this.clrbtnText = new PowerSDR.ColorButton(); this.clrbtnZeroLine = new PowerSDR.ColorButton(); this.clrbtnGrid = new PowerSDR.ColorButton(); this.clrbtnBackground = new PowerSDR.ColorButton(); this.lblDisplayLineWidth = new System.Windows.Forms.LabelTS(); this.udDisplayLineWidth = new System.Windows.Forms.NumericUpDownTS(); this.tpAppearanceGeneral = new System.Windows.Forms.TabPage(); this.lblGenBackground = new System.Windows.Forms.LabelTS(); this.clrbtnGenBackground = new PowerSDR.ColorButton(); this.grpAppearanceBand = new System.Windows.Forms.GroupBoxTS(); this.clrbtnBandBackground = new PowerSDR.ColorButton(); this.lblBandBackground = new System.Windows.Forms.LabelTS(); this.clrbtnBandLight = new PowerSDR.ColorButton(); this.clrbtnBandDark = new PowerSDR.ColorButton(); this.lblBandLight = new System.Windows.Forms.LabelTS(); this.lblBandDark = new System.Windows.Forms.LabelTS(); this.clrbtnOutOfBand = new PowerSDR.ColorButton(); this.lblOutOfBand = new System.Windows.Forms.LabelTS(); this.grpAppearanceVFO = new System.Windows.Forms.GroupBoxTS(); this.clrbtnVFOBackground = new PowerSDR.ColorButton(); this.lblVFOBackground = new System.Windows.Forms.LabelTS(); this.clrbtnVFOSmallColor = new PowerSDR.ColorButton(); this.lblVFOSmallColor = new System.Windows.Forms.LabelTS(); this.chkVFOSmallLSD = new System.Windows.Forms.CheckBoxTS(); this.clrbtnVFOLight = new PowerSDR.ColorButton(); this.clrbtnVFODark = new PowerSDR.ColorButton(); this.lblVFOPowerOn = new System.Windows.Forms.LabelTS(); this.lblVFOPowerOff = new System.Windows.Forms.LabelTS(); this.clrbtnBtnSel = new PowerSDR.ColorButton(); this.lblAppearanceGenBtnSel = new System.Windows.Forms.LabelTS(); this.tpAppearanceMeter = new System.Windows.Forms.TabPage(); this.labelTS2 = new System.Windows.Forms.LabelTS(); this.clrbtnMeterDigBackground = new PowerSDR.ColorButton(); this.lblMeterDigitalText = new System.Windows.Forms.LabelTS(); this.clrbtnMeterDigText = new PowerSDR.ColorButton(); this.grpMeterEdge = new System.Windows.Forms.GroupBoxTS(); this.clrbtnEdgeIndicator = new PowerSDR.ColorButton(); this.labelTS1 = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeBackground = new PowerSDR.ColorButton(); this.lblMeterEdgeBackground = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeHigh = new PowerSDR.ColorButton(); this.lblMeterEdgeHigh = new System.Windows.Forms.LabelTS(); this.lblMeterEdgeLow = new System.Windows.Forms.LabelTS(); this.clrbtnMeterEdgeLow = new PowerSDR.ColorButton(); this.grpAppearanceMeter = new System.Windows.Forms.GroupBoxTS(); this.clrbtnMeterBackground = new PowerSDR.ColorButton(); this.lblMeterBackground = new System.Windows.Forms.LabelTS(); this.clrbtnMeterRight = new PowerSDR.ColorButton(); this.lblAppearanceMeterRight = new System.Windows.Forms.LabelTS(); this.lblAppearanceMeterLeft = new System.Windows.Forms.LabelTS(); this.clrbtnMeterLeft = new PowerSDR.ColorButton(); this.lblMeterType = new System.Windows.Forms.LabelTS(); this.comboMeterType = new System.Windows.Forms.ComboBoxTS(); this.tpPowerAmplifier = new System.Windows.Forms.TabPage(); this.chkPAExpert = new System.Windows.Forms.CheckBox(); this.grpPABandOffset = new System.Windows.Forms.GroupBoxTS(); this.lblPABandOffset10 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset12 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset15 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset17 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset20 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset30 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset40 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset60 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset80 = new System.Windows.Forms.LabelTS(); this.lblPABandOffset160 = new System.Windows.Forms.LabelTS(); this.udPAADC17 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC15 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC20 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC12 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC10 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC160 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC80 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC60 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC40 = new System.Windows.Forms.NumericUpDownTS(); this.udPAADC30 = new System.Windows.Forms.NumericUpDownTS(); this.rtxtPACalReq = new System.Windows.Forms.RichTextBox(); this.chkPANewCal = new System.Windows.Forms.CheckBoxTS(); this.grpPAGainByBand = new System.Windows.Forms.GroupBoxTS(); this.udPACalPower = new System.Windows.Forms.NumericUpDownTS(); this.lblPACalTarget = new System.Windows.Forms.LabelTS(); this.chkPA10 = new System.Windows.Forms.CheckBoxTS(); this.chkPA12 = new System.Windows.Forms.CheckBoxTS(); this.chkPA15 = new System.Windows.Forms.CheckBoxTS(); this.chkPA17 = new System.Windows.Forms.CheckBoxTS(); this.chkPA20 = new System.Windows.Forms.CheckBoxTS(); this.chkPA30 = new System.Windows.Forms.CheckBoxTS(); this.chkPA40 = new System.Windows.Forms.CheckBoxTS(); this.chkPA60 = new System.Windows.Forms.CheckBoxTS(); this.chkPA80 = new System.Windows.Forms.CheckBoxTS(); this.chkPA160 = new System.Windows.Forms.CheckBoxTS(); this.radPACalSelBands = new System.Windows.Forms.RadioButtonTS(); this.radPACalAllBands = new System.Windows.Forms.RadioButtonTS(); this.btnPAGainReset = new System.Windows.Forms.ButtonTS(); this.btnPAGainCalibration = new System.Windows.Forms.ButtonTS(); this.lblPAGainByBand10 = new System.Windows.Forms.LabelTS(); this.udPAGain10 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand12 = new System.Windows.Forms.LabelTS(); this.udPAGain12 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand15 = new System.Windows.Forms.LabelTS(); this.udPAGain15 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand17 = new System.Windows.Forms.LabelTS(); this.udPAGain17 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand20 = new System.Windows.Forms.LabelTS(); this.udPAGain20 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand30 = new System.Windows.Forms.LabelTS(); this.udPAGain30 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand40 = new System.Windows.Forms.LabelTS(); this.udPAGain40 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand60 = new System.Windows.Forms.LabelTS(); this.udPAGain60 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand80 = new System.Windows.Forms.LabelTS(); this.udPAGain80 = new System.Windows.Forms.NumericUpDownTS(); this.lblPAGainByBand160 = new System.Windows.Forms.LabelTS(); this.udPAGain160 = new System.Windows.Forms.NumericUpDownTS(); this.chkPA6 = new System.Windows.Forms.CheckBoxTS(); this.tpCAT = new System.Windows.Forms.TabPage(); this.chkKWAI = new System.Windows.Forms.CheckBoxTS(); this.chkFPInstalled = new System.Windows.Forms.CheckBoxTS(); this.chkDigUIsUSB = new System.Windows.Forms.CheckBoxTS(); this.lblCATRigType = new System.Windows.Forms.LabelTS(); this.comboCATRigType = new System.Windows.Forms.ComboBoxTS(); this.btnCATTest = new System.Windows.Forms.ButtonTS(); this.grpPTTBitBang = new System.Windows.Forms.GroupBoxTS(); this.comboCATPTTPort = new System.Windows.Forms.ComboBoxTS(); this.lblCATPTTPort = new System.Windows.Forms.LabelTS(); this.chkCATPTT_RTS = new System.Windows.Forms.CheckBoxTS(); this.chkCATPTT_DTR = new System.Windows.Forms.CheckBoxTS(); this.chkCATPTTEnabled = new System.Windows.Forms.CheckBoxTS(); this.grpCatControlBox = new System.Windows.Forms.GroupBoxTS(); this.comboCATPort = new System.Windows.Forms.ComboBoxTS(); this.comboCATbaud = new System.Windows.Forms.ComboBoxTS(); this.lblCATBaud = new System.Windows.Forms.LabelTS(); this.lblCATPort = new System.Windows.Forms.LabelTS(); this.chkCATEnable = new System.Windows.Forms.CheckBoxTS(); this.lblCATParity = new System.Windows.Forms.LabelTS(); this.lblCATData = new System.Windows.Forms.LabelTS(); this.lblCATStop = new System.Windows.Forms.LabelTS(); this.comboCATparity = new System.Windows.Forms.ComboBoxTS(); this.comboCATdatabits = new System.Windows.Forms.ComboBoxTS(); this.comboCATstopbits = new System.Windows.Forms.ComboBoxTS(); this.grpRTTYOffset = new System.Windows.Forms.GroupBoxTS(); this.labelTS4 = new System.Windows.Forms.LabelTS(); this.labelTS3 = new System.Windows.Forms.LabelTS(); this.udRTTYU = new System.Windows.Forms.NumericUpDownTS(); this.udRTTYL = new System.Windows.Forms.NumericUpDownTS(); this.chkRTTYOffsetEnableB = new System.Windows.Forms.CheckBoxTS(); this.chkRTTYOffsetEnableA = new System.Windows.Forms.CheckBoxTS(); this.tpTests = new System.Windows.Forms.TabPage(); this.grpBoxTS1 = new System.Windows.Forms.GroupBoxTS(); this.grpSigGenTransmit = new System.Windows.Forms.GroupBoxTS(); this.lblSigGenTXMode = new System.Windows.Forms.LabelTS(); this.cmboSigGenTXMode = new System.Windows.Forms.ComboBoxTS(); this.radSigGenTXInput = new System.Windows.Forms.RadioButtonTS(); this.radSigGenTXOutput = new System.Windows.Forms.RadioButtonTS(); this.grpSigGenReceive = new System.Windows.Forms.GroupBoxTS(); this.chkSigGenRX2 = new System.Windows.Forms.CheckBox(); this.lblSigGenRXMode = new System.Windows.Forms.LabelTS(); this.cmboSigGenRXMode = new System.Windows.Forms.ComboBoxTS(); this.radSigGenRXInput = new System.Windows.Forms.RadioButtonTS(); this.radSigGenRXOutput = new System.Windows.Forms.RadioButtonTS(); this.lblTestGenScale = new System.Windows.Forms.LabelTS(); this.udTestGenScale = new System.Windows.Forms.NumericUpDownTS(); this.lblTestSigGenFreqCallout = new System.Windows.Forms.LabelTS(); this.tkbarTestGenFreq = new System.Windows.Forms.TrackBarTS(); this.lblTestGenHzSec = new System.Windows.Forms.LabelTS(); this.udTestGenHzSec = new System.Windows.Forms.NumericUpDownTS(); this.lblTestGenHigh = new System.Windows.Forms.LabelTS(); this.udTestGenHigh = new System.Windows.Forms.NumericUpDownTS(); this.lblTestGenLow = new System.Windows.Forms.LabelTS(); this.udTestGenLow = new System.Windows.Forms.NumericUpDownTS(); this.btnTestGenSweep = new System.Windows.Forms.ButtonTS(); this.ckEnableSigGen = new System.Windows.Forms.CheckBoxTS(); this.grpTestX2 = new System.Windows.Forms.GroupBoxTS(); this.lblTestX2 = new System.Windows.Forms.LabelTS(); this.chkTestX2Pin6 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin5 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin4 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin3 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin2 = new System.Windows.Forms.CheckBoxTS(); this.chkTestX2Pin1 = new System.Windows.Forms.CheckBoxTS(); this.grpTestAudioBalance = new System.Windows.Forms.GroupBoxTS(); this.btnTestAudioBalStart = new System.Windows.Forms.ButtonTS(); this.grpTestTXIMD = new System.Windows.Forms.GroupBoxTS(); this.lblTestToneFreq2 = new System.Windows.Forms.LabelTS(); this.udTestIMDFreq2 = new System.Windows.Forms.NumericUpDownTS(); this.lblTestIMDPower = new System.Windows.Forms.LabelTS(); this.udTestIMDPower = new System.Windows.Forms.NumericUpDownTS(); this.chekTestIMD = new System.Windows.Forms.CheckBoxTS(); this.lblTestToneFreq1 = new System.Windows.Forms.LabelTS(); this.udTestIMDFreq1 = new System.Windows.Forms.NumericUpDownTS(); this.grpImpulseTest = new System.Windows.Forms.GroupBoxTS(); this.udImpulseNum = new System.Windows.Forms.NumericUpDownTS(); this.btnImpulse = new System.Windows.Forms.ButtonTS(); this.btnOK = new System.Windows.Forms.ButtonTS(); this.btnCancel = new System.Windows.Forms.ButtonTS(); this.btnApply = new System.Windows.Forms.ButtonTS(); this.btnResetDB = new System.Windows.Forms.ButtonTS(); this.btnImportDB = new System.Windows.Forms.ButtonTS(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.timer_sweep = new System.Windows.Forms.Timer(this.components); this.mainMenu1 = new System.Windows.Forms.MainMenu(); this.tcSetup.SuspendLayout(); this.tpGeneral.SuspendLayout(); this.tcGeneral.SuspendLayout(); this.tpGeneralHardware.SuspendLayout(); this.grpHWSoftRock.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udSoftRockCenterFreq)).BeginInit(); this.grpGeneralDDS.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udSi570Addr)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udMaxFreq)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udFreqMult)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSCorrection)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSIFFreq)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSPLLMult)).BeginInit(); this.grpGeneralModel.SuspendLayout(); this.grpGeneralHardwareSDR1000.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralLPTDelay)).BeginInit(); this.grpGeneralHardwareFLEX5000.SuspendLayout(); this.tpUSB.SuspendLayout(); this.groupBox2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xAtt)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xCalibration)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xSDRMult)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xClockPLL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xClock)).BeginInit(); this.groupBox3.SuspendLayout(); this.tpGeneralCalibration.SuspendLayout(); this.grpGenCalRXImage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAIRPosition)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRPoints)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRGain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRPhase)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRBin)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq3)).BeginInit(); this.grpGenCalLevel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq2)).BeginInit(); this.grpGeneralCalibration.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq1)).BeginInit(); this.tpFilters.SuspendLayout(); this.grpOptFilterControls.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udFilterDefaultLowCut)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterShift)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterWidth)).BeginInit(); this.tpRX2.SuspendLayout(); this.tpGeneralOptions.SuspendLayout(); this.grpGenCustomTitleText.SuspendLayout(); this.grpOptMisc.SuspendLayout(); this.grpOptQuickQSY.SuspendLayout(); this.grpGenAutoMute.SuspendLayout(); this.grpGenTuningOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGL)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGU)).BeginInit(); this.grpGeneralOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralX2Delay)).BeginInit(); this.grpGeneralProcessPriority.SuspendLayout(); this.grpGeneralUpdates.SuspendLayout(); this.tpExtIO.SuspendLayout(); this.grpExtIOPMSDR.SuspendLayout(); this.tpBPFLPF.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.ud6mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud6mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud10mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud10mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud12mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud12mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud15mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud15mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud17mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud17mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud20mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud20mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud30mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud30mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud40mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud40mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud60mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud60mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud80mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud80mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud160mLPFEnd)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud160mLPFStart)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud6m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud10m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud12m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud15m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud17m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud20m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud30m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud40m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud60m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud80m)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ud160m)).BeginInit(); this.tpSerial.SuspendLayout(); this.grpGeneralSerial.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udSerialDelay)).BeginInit(); this.tpExtCtrl.SuspendLayout(); this.grpExtTX.SuspendLayout(); this.grpExtRX.SuspendLayout(); this.tpAudio.SuspendLayout(); this.tcAudio.SuspendLayout(); this.tpAudioCard1.SuspendLayout(); this.groupBoxTS1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udIQCorrection)).BeginInit(); this.grpAudioMicBoost.SuspendLayout(); this.grpAudioChannels.SuspendLayout(); this.grpAudioMicInGain1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioMicGain1)).BeginInit(); this.grpAudioLineInGain1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLineIn1)).BeginInit(); this.grpAudioVolts1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVoltage1)).BeginInit(); this.grpAudioDetails1.SuspendLayout(); this.grpAudioLatency1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency1)).BeginInit(); this.grpAudioCard.SuspendLayout(); this.grpAudioBufferSize1.SuspendLayout(); this.grpAudioSampleRate1.SuspendLayout(); this.tpVAC.SuspendLayout(); this.grpDirectIQOutput.SuspendLayout(); this.grpAudioVACAutoEnable.SuspendLayout(); this.grpAudioVACGain.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainRX)).BeginInit(); this.grpAudio2Stereo.SuspendLayout(); this.grpAudioLatency2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency2)).BeginInit(); this.grpAudioSampleRate2.SuspendLayout(); this.grpAudioBuffer2.SuspendLayout(); this.grpAudioDetails2.SuspendLayout(); this.tpDSP.SuspendLayout(); this.tcDSP.SuspendLayout(); this.tpDSPOptions.SuspendLayout(); this.grpDSPBufferSize.SuspendLayout(); this.grpDSPBufDig.SuspendLayout(); this.grpDSPBufCW.SuspendLayout(); this.grpDSPBufPhone.SuspendLayout(); this.grpDSPNB.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB)).BeginInit(); this.grpDSPLMSNR.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRLeak)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRgain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRdelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRtaps)).BeginInit(); this.grpDSPLMSANF.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFLeak)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFgain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFdelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFtaps)).BeginInit(); this.grpDSPWindow.SuspendLayout(); this.grpDSPNB2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB2)).BeginInit(); this.tpDSPImageReject.SuspendLayout(); this.grpDSPImageRejectRX.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udAIRCalibrationPoint)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRCalibrationIF)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRCalibrationPosition)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbAIRCalibrationPosition)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainRX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseRX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseRX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainRX)).BeginInit(); this.grpDSPImageRejectTX.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseTX)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainTX)).BeginInit(); this.tpDSPKeyer.SuspendLayout(); this.grpKeyerConnections.SuspendLayout(); this.grpDSPCWPitch.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWPitch)).BeginInit(); this.grpDSPKeyerOptions.SuspendLayout(); this.grpDSPKeyerSignalShaping.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerDeBounce)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerWeight)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerRamp)).BeginInit(); this.grpDSPKeyerSemiBreakIn.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udCWBreakInDelay)).BeginInit(); this.tpDSPAGCALC.SuspendLayout(); this.grpDSPLeveler.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerAttack)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPLevelerHangThreshold)).BeginInit(); this.grpDSPALC.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPALCHangThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCAttack)).BeginInit(); this.grpDSPAGC.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPAGCHangThreshold)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCMaxGaindB)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCSlope)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCDecay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCAttack)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCFixedGaindB)).BeginInit(); this.tpDisplay.SuspendLayout(); this.grpDisplayMultimeter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udMeterDigitalDelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterAvg)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiTextHoldTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiPeakHoldTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterDelay)).BeginInit(); this.grpDisplayDriverEngine.SuspendLayout(); this.grpDisplayPolyPhase.SuspendLayout(); this.grpDisplayScopeMode.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayScopeTime)).BeginInit(); this.grpDisplayWaterfall.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallUpdatePeriod)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallAvgTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallLowLevel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallHighLevel)).BeginInit(); this.grpDisplayRefreshRates.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCPUMeter)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPeakText)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayFPS)).BeginInit(); this.grpDisplayAverage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayAVGTime)).BeginInit(); this.grpDisplayPhase.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPhasePts)).BeginInit(); this.grpDisplaySpectrumGrid.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridStep)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMin)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMax)).BeginInit(); this.tpTransmit.SuspendLayout(); this.grpTXAM.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXAMCarrierLevel)).BeginInit(); this.grpTXMonitor.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXAF)).BeginInit(); this.grpTXVOX.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXHangTime)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXThreshold)).BeginInit(); this.grpTXNoiseGate.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGate)).BeginInit(); this.grpTXProfile.SuspendLayout(); this.grpPATune.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXTunePower)).BeginInit(); this.grpTXFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterLow)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterHigh)).BeginInit(); this.tpKeyboard.SuspendLayout(); this.grpKBXIT.SuspendLayout(); this.grpKBRIT.SuspendLayout(); this.grpKBMode.SuspendLayout(); this.grpKBBand.SuspendLayout(); this.grpKBTune.SuspendLayout(); this.grpKBFilter.SuspendLayout(); this.grpKBCW.SuspendLayout(); this.tpAppearance.SuspendLayout(); this.tcAppearance.SuspendLayout(); this.tpAppearanceDisplay.SuspendLayout(); this.grpAppPanadapter.SuspendLayout(); this.grpDisplayPeakCursor.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayLineWidth)).BeginInit(); this.tpAppearanceGeneral.SuspendLayout(); this.grpAppearanceBand.SuspendLayout(); this.grpAppearanceVFO.SuspendLayout(); this.tpAppearanceMeter.SuspendLayout(); this.grpMeterEdge.SuspendLayout(); this.grpAppearanceMeter.SuspendLayout(); this.tpPowerAmplifier.SuspendLayout(); this.grpPABandOffset.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC160)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC80)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC60)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC40)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC30)).BeginInit(); this.grpPAGainByBand.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udPACalPower)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain15)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain17)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain20)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain30)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain40)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain60)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain80)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain160)).BeginInit(); this.tpCAT.SuspendLayout(); this.grpPTTBitBang.SuspendLayout(); this.grpCatControlBox.SuspendLayout(); this.grpRTTYOffset.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udRTTYU)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udRTTYL)).BeginInit(); this.tpTests.SuspendLayout(); this.grpBoxTS1.SuspendLayout(); this.grpSigGenTransmit.SuspendLayout(); this.grpSigGenReceive.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenScale)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tkbarTestGenFreq)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHzSec)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHigh)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenLow)).BeginInit(); this.grpTestX2.SuspendLayout(); this.grpTestAudioBalance.SuspendLayout(); this.grpTestTXIMD.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDPower)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq1)).BeginInit(); this.grpImpulseTest.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.udImpulseNum)).BeginInit(); this.SuspendLayout(); // // tcSetup // this.tcSetup.Controls.Add(this.tpGeneral); this.tcSetup.Controls.Add(this.tpExtCtrl); this.tcSetup.Controls.Add(this.tpAudio); this.tcSetup.Controls.Add(this.tpDSP); this.tcSetup.Controls.Add(this.tpDisplay); this.tcSetup.Controls.Add(this.tpTransmit); this.tcSetup.Controls.Add(this.tpKeyboard); this.tcSetup.Controls.Add(this.tpAppearance); this.tcSetup.Controls.Add(this.tpPowerAmplifier); this.tcSetup.Controls.Add(this.tpCAT); this.tcSetup.Controls.Add(this.tpTests); this.tcSetup.Location = new System.Drawing.Point(8, 8); this.tcSetup.Name = "tcSetup"; this.tcSetup.SelectedIndex = 0; this.tcSetup.Size = new System.Drawing.Size(592, 312); this.tcSetup.TabIndex = 16; this.tcSetup.SelectedIndexChanged += new System.EventHandler(this.tcSetup_SelectedIndexChanged); // // tpGeneral // this.tpGeneral.Controls.Add(this.tcGeneral); this.tpGeneral.Location = new System.Drawing.Point(4, 22); this.tpGeneral.Name = "tpGeneral"; this.tpGeneral.Size = new System.Drawing.Size(584, 286); this.tpGeneral.TabIndex = 3; this.tpGeneral.Text = "General"; // // tcGeneral // this.tcGeneral.Controls.Add(this.tpGeneralHardware); this.tcGeneral.Controls.Add(this.tpUSB); this.tcGeneral.Controls.Add(this.tpGeneralCalibration); this.tcGeneral.Controls.Add(this.tpFilters); this.tcGeneral.Controls.Add(this.tpRX2); this.tcGeneral.Controls.Add(this.tpGeneralOptions); this.tcGeneral.Controls.Add(this.tpExtIO); this.tcGeneral.Controls.Add(this.tpBPFLPF); this.tcGeneral.Controls.Add(this.tpSerial); this.tcGeneral.Location = new System.Drawing.Point(0, 0); this.tcGeneral.Name = "tcGeneral"; this.tcGeneral.SelectedIndex = 0; this.tcGeneral.Size = new System.Drawing.Size(600, 344); this.tcGeneral.TabIndex = 26; // // tpGeneralHardware // this.tpGeneralHardware.Controls.Add(this.checkBoxTS1); this.tpGeneralHardware.Controls.Add(this.grpHWSoftRock); this.tpGeneralHardware.Controls.Add(this.grpGeneralDDS); this.tpGeneralHardware.Controls.Add(this.grpGeneralModel); this.tpGeneralHardware.Controls.Add(this.btnWizard); this.tpGeneralHardware.Controls.Add(this.chkGeneralRXOnly); this.tpGeneralHardware.Controls.Add(this.grpGeneralHardwareSDR1000); this.tpGeneralHardware.Controls.Add(this.grpGeneralHardwareFLEX5000); this.tpGeneralHardware.Location = new System.Drawing.Point(4, 22); this.tpGeneralHardware.Name = "tpGeneralHardware"; this.tpGeneralHardware.Size = new System.Drawing.Size(592, 318); this.tpGeneralHardware.TabIndex = 0; this.tpGeneralHardware.Text = "Hardware Config"; // // checkBoxTS1 // this.checkBoxTS1.Image = null; this.checkBoxTS1.Location = new System.Drawing.Point(327, 236); this.checkBoxTS1.Name = "checkBoxTS1"; this.checkBoxTS1.Size = new System.Drawing.Size(95, 15); this.checkBoxTS1.TabIndex = 27; this.checkBoxTS1.Text = "Extended"; this.toolTip1.SetToolTip(this.checkBoxTS1, "Check to enable extended frequency transmit (MARS/HARES)"); this.checkBoxTS1.CheckedChanged += new System.EventHandler(this.checkBoxTS1_CheckedChanged); // // grpHWSoftRock // this.grpHWSoftRock.Controls.Add(this.lblGenSoftRockCenterFreq); this.grpHWSoftRock.Controls.Add(this.udSoftRockCenterFreq); this.grpHWSoftRock.Location = new System.Drawing.Point(8, 144); this.grpHWSoftRock.Name = "grpHWSoftRock"; this.grpHWSoftRock.Size = new System.Drawing.Size(132, 72); this.grpHWSoftRock.TabIndex = 26; this.grpHWSoftRock.TabStop = false; this.grpHWSoftRock.Text = "SDR Rx Fix.Frequency"; this.grpHWSoftRock.Visible = false; // // lblGenSoftRockCenterFreq // this.lblGenSoftRockCenterFreq.Image = null; this.lblGenSoftRockCenterFreq.Location = new System.Drawing.Point(16, 24); this.lblGenSoftRockCenterFreq.Name = "lblGenSoftRockCenterFreq"; this.lblGenSoftRockCenterFreq.Size = new System.Drawing.Size(104, 16); this.lblGenSoftRockCenterFreq.TabIndex = 1; this.lblGenSoftRockCenterFreq.Text = "Center Freq (MHz):"; // // udSoftRockCenterFreq // this.udSoftRockCenterFreq.DecimalPlaces = 6; this.udSoftRockCenterFreq.Increment = new System.Decimal(new int[] { 1, 0, 0, 196608}); this.udSoftRockCenterFreq.Location = new System.Drawing.Point(16, 40); this.udSoftRockCenterFreq.Maximum = new System.Decimal(new int[] { 65, 0, 0, 0}); this.udSoftRockCenterFreq.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udSoftRockCenterFreq.Name = "udSoftRockCenterFreq"; this.udSoftRockCenterFreq.Size = new System.Drawing.Size(80, 20); this.udSoftRockCenterFreq.TabIndex = 0; this.toolTip1.SetToolTip(this.udSoftRockCenterFreq, "Sets the center frequency for the SoftRock 40."); this.udSoftRockCenterFreq.Value = new System.Decimal(new int[] { 7056, 0, 0, 196608}); this.udSoftRockCenterFreq.LostFocus += new System.EventHandler(this.udSoftRockCenterFreq_LostFocus); this.udSoftRockCenterFreq.ValueChanged += new System.EventHandler(this.udSoftRockCenterFreq_ValueChanged); // // grpGeneralDDS // this.grpGeneralDDS.Controls.Add(this.udSi570Addr); this.grpGeneralDDS.Controls.Add(this.lblSi570Addr); this.grpGeneralDDS.Controls.Add(this.lblMaxFreq); this.grpGeneralDDS.Controls.Add(this.udMaxFreq); this.grpGeneralDDS.Controls.Add(this.lblFreqMult); this.grpGeneralDDS.Controls.Add(this.udFreqMult); this.grpGeneralDDS.Controls.Add(this.udDDSCorrection); this.grpGeneralDDS.Controls.Add(this.lblClockCorrection); this.grpGeneralDDS.Controls.Add(this.udDDSIFFreq); this.grpGeneralDDS.Controls.Add(this.lblIFFrequency); this.grpGeneralDDS.Controls.Add(this.udDDSPLLMult); this.grpGeneralDDS.Controls.Add(this.lblPLLMult); this.grpGeneralDDS.Controls.Add(this.chkGenDDSExpert); this.grpGeneralDDS.Location = new System.Drawing.Point(313, 7); this.grpGeneralDDS.Name = "grpGeneralDDS"; this.grpGeneralDDS.Size = new System.Drawing.Size(176, 207); this.grpGeneralDDS.TabIndex = 4; this.grpGeneralDDS.TabStop = false; this.grpGeneralDDS.Text = "Si570"; // // udSi570Addr // this.udSi570Addr.Hexadecimal = true; this.udSi570Addr.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udSi570Addr.Location = new System.Drawing.Point(120, 153); this.udSi570Addr.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udSi570Addr.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udSi570Addr.Name = "udSi570Addr"; this.udSi570Addr.Size = new System.Drawing.Size(48, 20); this.udSi570Addr.TabIndex = 14; this.udSi570Addr.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.toolTip1.SetToolTip(this.udSi570Addr, "Si570 I2C Address"); this.udSi570Addr.Value = new System.Decimal(new int[] { 85, 0, 0, 0}); this.udSi570Addr.Visible = false; this.udSi570Addr.ValueChanged += new System.EventHandler(this.udSi570Addr_ValueChanged); // // lblSi570Addr // this.lblSi570Addr.Image = null; this.lblSi570Addr.Location = new System.Drawing.Point(13, 153); this.lblSi570Addr.Name = "lblSi570Addr"; this.lblSi570Addr.Size = new System.Drawing.Size(96, 14); this.lblSi570Addr.TabIndex = 13; this.lblSi570Addr.Text = "I2C Address Hex"; this.lblSi570Addr.Visible = false; // // lblMaxFreq // this.lblMaxFreq.Image = null; this.lblMaxFreq.Location = new System.Drawing.Point(13, 125); this.lblMaxFreq.Name = "lblMaxFreq"; this.lblMaxFreq.Size = new System.Drawing.Size(67, 14); this.lblMaxFreq.TabIndex = 12; this.lblMaxFreq.Text = "MaxFreq Hz:"; this.lblMaxFreq.Visible = false; // // udMaxFreq // this.udMaxFreq.Increment = new System.Decimal(new int[] { 1000000, 0, 0, 0}); this.udMaxFreq.Location = new System.Drawing.Point(87, 125); this.udMaxFreq.Maximum = new System.Decimal(new int[] { 1500000000, 0, 0, 0}); this.udMaxFreq.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udMaxFreq.Name = "udMaxFreq"; this.udMaxFreq.Size = new System.Drawing.Size(80, 20); this.udMaxFreq.TabIndex = 11; this.udMaxFreq.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.toolTip1.SetToolTip(this.udMaxFreq, "Si570 Maximum Frequency"); this.udMaxFreq.Value = new System.Decimal(new int[] { 210000000, 0, 0, 0}); this.udMaxFreq.Visible = false; this.udMaxFreq.ValueChanged += new System.EventHandler(this.udMaxFreq_ValueChanged); // // lblFreqMult // this.lblFreqMult.Image = null; this.lblFreqMult.Location = new System.Drawing.Point(16, 96); this.lblFreqMult.Name = "lblFreqMult"; this.lblFreqMult.Size = new System.Drawing.Size(96, 15); this.lblFreqMult.TabIndex = 10; this.lblFreqMult.Text = "Divider"; this.lblFreqMult.Visible = false; // // udFreqMult // this.udFreqMult.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udFreqMult.Location = new System.Drawing.Point(120, 96); this.udFreqMult.Maximum = new System.Decimal(new int[] { 128, 0, 0, 0}); this.udFreqMult.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udFreqMult.Name = "udFreqMult"; this.udFreqMult.Size = new System.Drawing.Size(48, 20); this.udFreqMult.TabIndex = 9; this.udFreqMult.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.toolTip1.SetToolTip(this.udFreqMult, "Si570 Frequency Multiplier"); this.udFreqMult.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); this.udFreqMult.Visible = false; this.udFreqMult.ValueChanged += new System.EventHandler(this.udFreqMult_ValueChanged); // // udDDSCorrection // this.udDDSCorrection.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDDSCorrection.Location = new System.Drawing.Point(93, 24); this.udDDSCorrection.Maximum = new System.Decimal(new int[] { 228570, 0, 0, 0}); this.udDDSCorrection.Minimum = new System.Decimal(new int[] { 228570, 0, 0, -2147483648}); this.udDDSCorrection.Name = "udDDSCorrection"; this.udDDSCorrection.Size = new System.Drawing.Size(74, 20); this.udDDSCorrection.TabIndex = 7; this.udDDSCorrection.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.toolTip1.SetToolTip(this.udDDSCorrection, "Correction for DDS frequency"); this.udDDSCorrection.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDDSCorrection.Visible = false; this.udDDSCorrection.LostFocus += new System.EventHandler(this.udDDSCorrection_LostFocus); this.udDDSCorrection.ValueChanged += new System.EventHandler(this.udDDSCorrection_ValueChanged); // // lblClockCorrection // this.lblClockCorrection.Image = null; this.lblClockCorrection.Location = new System.Drawing.Point(16, 24); this.lblClockCorrection.Name = "lblClockCorrection"; this.lblClockCorrection.Size = new System.Drawing.Size(71, 23); this.lblClockCorrection.TabIndex = 6; this.lblClockCorrection.Text = "Clock Offset:"; this.lblClockCorrection.Visible = false; // // udDDSIFFreq // this.udDDSIFFreq.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDDSIFFreq.Location = new System.Drawing.Point(93, 69); this.udDDSIFFreq.Maximum = new System.Decimal(new int[] { 96000, 0, 0, 0}); this.udDDSIFFreq.Minimum = new System.Decimal(new int[] { 96000, 0, 0, -2147483648}); this.udDDSIFFreq.Name = "udDDSIFFreq"; this.udDDSIFFreq.Size = new System.Drawing.Size(74, 20); this.udDDSIFFreq.TabIndex = 5; this.udDDSIFFreq.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.toolTip1.SetToolTip(this.udDDSIFFreq, "Intermediate Frequency"); this.udDDSIFFreq.Value = new System.Decimal(new int[] { 9000, 0, 0, 0}); this.udDDSIFFreq.Visible = false; this.udDDSIFFreq.LostFocus += new System.EventHandler(this.udDDSIFFreq_LostFocus); this.udDDSIFFreq.ValueChanged += new System.EventHandler(this.udDDSIFFreq_ValueChanged); // // lblIFFrequency // this.lblIFFrequency.Image = null; this.lblIFFrequency.Location = new System.Drawing.Point(16, 72); this.lblIFFrequency.Name = "lblIFFrequency"; this.lblIFFrequency.Size = new System.Drawing.Size(48, 23); this.lblIFFrequency.TabIndex = 4; this.lblIFFrequency.Text = "IF (Hz):"; this.lblIFFrequency.Visible = false; // // udDDSPLLMult // this.udDDSPLLMult.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDDSPLLMult.Location = new System.Drawing.Point(93, 48); this.udDDSPLLMult.Maximum = new System.Decimal(new int[] { 200000000, 0, 0, 0}); this.udDDSPLLMult.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDDSPLLMult.Name = "udDDSPLLMult"; this.udDDSPLLMult.Size = new System.Drawing.Size(74, 20); this.udDDSPLLMult.TabIndex = 3; this.toolTip1.SetToolTip(this.udDDSPLLMult, "Si570 Internal Crystal Frequency"); this.udDDSPLLMult.Value = new System.Decimal(new int[] { 114285000, 0, 0, 0}); this.udDDSPLLMult.Visible = false; this.udDDSPLLMult.LostFocus += new System.EventHandler(this.udDDSPLLMult_LostFocus); this.udDDSPLLMult.ValueChanged += new System.EventHandler(this.udDDSPLLMult_ValueChanged); // // lblPLLMult // this.lblPLLMult.Image = null; this.lblPLLMult.Location = new System.Drawing.Point(16, 48); this.lblPLLMult.Name = "lblPLLMult"; this.lblPLLMult.Size = new System.Drawing.Size(80, 23); this.lblPLLMult.TabIndex = 2; this.lblPLLMult.Text = "Xtal Hz:"; this.lblPLLMult.Visible = false; // // chkGenDDSExpert // this.chkGenDDSExpert.Location = new System.Drawing.Point(13, 187); this.chkGenDDSExpert.Name = "chkGenDDSExpert"; this.chkGenDDSExpert.Size = new System.Drawing.Size(80, 14); this.chkGenDDSExpert.TabIndex = 8; this.chkGenDDSExpert.Text = "Expert"; this.chkGenDDSExpert.CheckedChanged += new System.EventHandler(this.chkGenDDSExpert_CheckedChanged); // // grpGeneralModel // this.grpGeneralModel.Controls.Add(this.radGenModelDemoNone); this.grpGeneralModel.Controls.Add(this.radGenModelSoftRock40); this.grpGeneralModel.Controls.Add(this.radGenModelSDR1000); this.grpGeneralModel.Location = new System.Drawing.Point(8, 8); this.grpGeneralModel.Name = "grpGeneralModel"; this.grpGeneralModel.Size = new System.Drawing.Size(132, 128); this.grpGeneralModel.TabIndex = 25; this.grpGeneralModel.TabStop = false; this.grpGeneralModel.Text = "Radio Model"; // // radGenModelDemoNone // this.radGenModelDemoNone.Image = null; this.radGenModelDemoNone.Location = new System.Drawing.Point(13, 97); this.radGenModelDemoNone.Name = "radGenModelDemoNone"; this.radGenModelDemoNone.Size = new System.Drawing.Size(89, 23); this.radGenModelDemoNone.TabIndex = 2; this.radGenModelDemoNone.Text = "Demo/None"; this.toolTip1.SetToolTip(this.radGenModelDemoNone, "Select if using without any SDR hardware."); this.radGenModelDemoNone.CheckedChanged += new System.EventHandler(this.radGenModelDemoNone_CheckedChanged); // // radGenModelSoftRock40 // this.radGenModelSoftRock40.Image = null; this.radGenModelSoftRock40.Location = new System.Drawing.Point(13, 55); this.radGenModelSoftRock40.Name = "radGenModelSoftRock40"; this.radGenModelSoftRock40.Size = new System.Drawing.Size(89, 35); this.radGenModelSoftRock40.TabIndex = 1; this.radGenModelSoftRock40.Text = "SDR Rx Fix.Freq."; this.toolTip1.SetToolTip(this.radGenModelSoftRock40, "Select if using the SoftRock 40 or SDR with without frequency control from PowerS" + "DR-IQ"); this.radGenModelSoftRock40.CheckedChanged += new System.EventHandler(this.radGenModelSoftRock40_CheckedChanged); // // radGenModelSDR1000 // this.radGenModelSDR1000.Checked = true; this.radGenModelSDR1000.Image = null; this.radGenModelSDR1000.Location = new System.Drawing.Point(13, 21); this.radGenModelSDR1000.Name = "radGenModelSDR1000"; this.radGenModelSDR1000.Size = new System.Drawing.Size(89, 24); this.radGenModelSDR1000.TabIndex = 0; this.radGenModelSDR1000.TabStop = true; this.radGenModelSDR1000.Text = "SDR (Si570)"; this.toolTip1.SetToolTip(this.radGenModelSDR1000, "Select if using a SDR with Si570"); this.radGenModelSDR1000.CheckedChanged += new System.EventHandler(this.radGenModelSDR1000_CheckedChanged); // // btnWizard // this.btnWizard.Image = null; this.btnWizard.Location = new System.Drawing.Point(24, 224); this.btnWizard.Name = "btnWizard"; this.btnWizard.TabIndex = 22; this.btnWizard.Text = "Wizard..."; this.toolTip1.SetToolTip(this.btnWizard, "Run the Startup Wizard."); this.btnWizard.Click += new System.EventHandler(this.btnWizard_Click); // // chkGeneralRXOnly // this.chkGeneralRXOnly.Image = null; this.chkGeneralRXOnly.Location = new System.Drawing.Point(327, 222); this.chkGeneralRXOnly.Name = "chkGeneralRXOnly"; this.chkGeneralRXOnly.Size = new System.Drawing.Size(95, 15); this.chkGeneralRXOnly.TabIndex = 11; this.chkGeneralRXOnly.Text = "Receive Only"; this.toolTip1.SetToolTip(this.chkGeneralRXOnly, "Check to disable transmit functionality."); this.chkGeneralRXOnly.CheckedChanged += new System.EventHandler(this.chkGeneralRXOnly_CheckedChanged); // // grpGeneralHardwareSDR1000 // this.grpGeneralHardwareSDR1000.Controls.Add(this.chkBoxJanusOzyControl); this.grpGeneralHardwareSDR1000.Controls.Add(this.lblGeneralLPTDelay); this.grpGeneralHardwareSDR1000.Controls.Add(this.udGeneralLPTDelay); this.grpGeneralHardwareSDR1000.Controls.Add(this.lblGeneralLPTAddr); this.grpGeneralHardwareSDR1000.Controls.Add(this.comboGeneralLPTAddr); this.grpGeneralHardwareSDR1000.Location = new System.Drawing.Point(147, 7); this.grpGeneralHardwareSDR1000.Name = "grpGeneralHardwareSDR1000"; this.grpGeneralHardwareSDR1000.Size = new System.Drawing.Size(160, 248); this.grpGeneralHardwareSDR1000.TabIndex = 1; this.grpGeneralHardwareSDR1000.TabStop = false; this.grpGeneralHardwareSDR1000.Text = "SDR control Config"; // // chkBoxJanusOzyControl // this.chkBoxJanusOzyControl.Image = null; this.chkBoxJanusOzyControl.Location = new System.Drawing.Point(16, 96); this.chkBoxJanusOzyControl.Name = "chkBoxJanusOzyControl"; this.chkBoxJanusOzyControl.Size = new System.Drawing.Size(128, 16); this.chkBoxJanusOzyControl.TabIndex = 11; this.chkBoxJanusOzyControl.Text = "Janus/Ozy Control"; this.toolTip1.SetToolTip(this.chkBoxJanusOzyControl, "Check if Ozy being used to control the SDR-1000"); this.chkBoxJanusOzyControl.CheckedChanged += new System.EventHandler(this.chkBoxJanusOzyControl_CheckedChanged); // // lblGeneralLPTDelay // this.lblGeneralLPTDelay.Image = null; this.lblGeneralLPTDelay.Location = new System.Drawing.Point(16, 40); this.lblGeneralLPTDelay.Name = "lblGeneralLPTDelay"; this.lblGeneralLPTDelay.Size = new System.Drawing.Size(80, 16); this.lblGeneralLPTDelay.TabIndex = 6; this.lblGeneralLPTDelay.Text = "LPT Delay:"; // // udGeneralLPTDelay // this.udGeneralLPTDelay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udGeneralLPTDelay.Location = new System.Drawing.Point(96, 40); this.udGeneralLPTDelay.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udGeneralLPTDelay.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udGeneralLPTDelay.Name = "udGeneralLPTDelay"; this.udGeneralLPTDelay.Size = new System.Drawing.Size(56, 20); this.udGeneralLPTDelay.TabIndex = 5; this.toolTip1.SetToolTip(this.udGeneralLPTDelay, "Delay to compensate for longer Parallel cables."); this.udGeneralLPTDelay.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udGeneralLPTDelay.LostFocus += new System.EventHandler(this.udGeneralLPTDelay_LostFocus); this.udGeneralLPTDelay.ValueChanged += new System.EventHandler(this.udGeneralLPTDelay_ValueChanged); // // lblGeneralLPTAddr // this.lblGeneralLPTAddr.Image = null; this.lblGeneralLPTAddr.Location = new System.Drawing.Point(16, 16); this.lblGeneralLPTAddr.Name = "lblGeneralLPTAddr"; this.lblGeneralLPTAddr.Size = new System.Drawing.Size(80, 16); this.lblGeneralLPTAddr.TabIndex = 3; this.lblGeneralLPTAddr.Text = "LPT Address:"; // // comboGeneralLPTAddr // this.comboGeneralLPTAddr.DropDownWidth = 56; this.comboGeneralLPTAddr.Items.AddRange(new object[] { "278", "378", "3BC", "B800", "BC00", "0"}); this.comboGeneralLPTAddr.Location = new System.Drawing.Point(96, 16); this.comboGeneralLPTAddr.Name = "comboGeneralLPTAddr"; this.comboGeneralLPTAddr.Size = new System.Drawing.Size(56, 21); this.comboGeneralLPTAddr.TabIndex = 0; this.comboGeneralLPTAddr.Text = "378"; this.toolTip1.SetToolTip(this.comboGeneralLPTAddr, "Parallel Port Address"); this.comboGeneralLPTAddr.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboGeneralLPTAddr_KeyDown); this.comboGeneralLPTAddr.LostFocus += new System.EventHandler(this.comboGeneralLPTAddr_LostFocus); this.comboGeneralLPTAddr.SelectedIndexChanged += new System.EventHandler(this.comboGeneralLPTAddr_SelectedIndexChanged); // // grpGeneralHardwareFLEX5000 // this.grpGeneralHardwareFLEX5000.Controls.Add(this.chkGenFLEX5000ExtRef); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblFirmwareRev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblRX2Rev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblATURev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblRFIORev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblPARev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblTRXRev); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblSerialNum); this.grpGeneralHardwareFLEX5000.Controls.Add(this.lblModel); this.grpGeneralHardwareFLEX5000.Location = new System.Drawing.Point(147, 7); this.grpGeneralHardwareFLEX5000.Name = "grpGeneralHardwareFLEX5000"; this.grpGeneralHardwareFLEX5000.Size = new System.Drawing.Size(160, 248); this.grpGeneralHardwareFLEX5000.TabIndex = 11; this.grpGeneralHardwareFLEX5000.TabStop = false; this.grpGeneralHardwareFLEX5000.Text = "FLEX-5000 Config"; this.grpGeneralHardwareFLEX5000.Visible = false; // // chkGenFLEX5000ExtRef // this.chkGenFLEX5000ExtRef.Image = null; this.chkGenFLEX5000ExtRef.Location = new System.Drawing.Point(16, 192); this.chkGenFLEX5000ExtRef.Name = "chkGenFLEX5000ExtRef"; this.chkGenFLEX5000ExtRef.Size = new System.Drawing.Size(120, 16); this.chkGenFLEX5000ExtRef.TabIndex = 12; this.chkGenFLEX5000ExtRef.Text = "Use Ext. Ref Input"; this.toolTip1.SetToolTip(this.chkGenFLEX5000ExtRef, "Check to use an externally supplied 10MHz clock with the FLEX-5000"); this.chkGenFLEX5000ExtRef.CheckedChanged += new System.EventHandler(this.chkGenFLEX5000ExtRef_CheckedChanged); // // lblFirmwareRev // this.lblFirmwareRev.Image = null; this.lblFirmwareRev.Location = new System.Drawing.Point(16, 48); this.lblFirmwareRev.Name = "lblFirmwareRev"; this.lblFirmwareRev.Size = new System.Drawing.Size(120, 16); this.lblFirmwareRev.TabIndex = 7; this.lblFirmwareRev.Text = "Firmware: 0.0.0.0"; // // lblRX2Rev // this.lblRX2Rev.Image = null; this.lblRX2Rev.Location = new System.Drawing.Point(16, 136); this.lblRX2Rev.Name = "lblRX2Rev"; this.lblRX2Rev.Size = new System.Drawing.Size(136, 16); this.lblRX2Rev.TabIndex = 6; this.lblRX2Rev.Text = "RX2: 8888-8888 (8.8.8.8)"; // // lblATURev // this.lblATURev.Image = null; this.lblATURev.Location = new System.Drawing.Point(16, 120); this.lblATURev.Name = "lblATURev"; this.lblATURev.Size = new System.Drawing.Size(136, 16); this.lblATURev.TabIndex = 5; this.lblATURev.Text = "ATU: 8888-8888 (8.8.8.8)"; // // lblRFIORev // this.lblRFIORev.Image = null; this.lblRFIORev.Location = new System.Drawing.Point(16, 104); this.lblRFIORev.Name = "lblRFIORev"; this.lblRFIORev.Size = new System.Drawing.Size(140, 16); this.lblRFIORev.TabIndex = 4; this.lblRFIORev.Text = "RFIO: 8888-8888 (8.8.8.8)"; // // lblPARev // this.lblPARev.Image = null; this.lblPARev.Location = new System.Drawing.Point(16, 88); this.lblPARev.Name = "lblPARev"; this.lblPARev.Size = new System.Drawing.Size(136, 16); this.lblPARev.TabIndex = 3; this.lblPARev.Text = "PA: 8888-8888 (8.8.8.8)"; // // lblTRXRev // this.lblTRXRev.Image = null; this.lblTRXRev.Location = new System.Drawing.Point(16, 72); this.lblTRXRev.Name = "lblTRXRev"; this.lblTRXRev.Size = new System.Drawing.Size(136, 16); this.lblTRXRev.TabIndex = 2; this.lblTRXRev.Text = "TRX: 8888-8888 (28F)"; // // lblSerialNum // this.lblSerialNum.Image = null; this.lblSerialNum.Location = new System.Drawing.Point(67, 24); this.lblSerialNum.Name = "lblSerialNum"; this.lblSerialNum.Size = new System.Drawing.Size(86, 16); this.lblSerialNum.TabIndex = 1; this.lblSerialNum.Text = "S/N: 0000-0000"; // // lblModel // this.lblModel.Image = null; this.lblModel.Location = new System.Drawing.Point(16, 24); this.lblModel.Name = "lblModel"; this.lblModel.Size = new System.Drawing.Size(52, 16); this.lblModel.TabIndex = 0; this.lblModel.Text = "Model: A"; // // tpUSB // this.tpUSB.Controls.Add(this.chkGeneralUSBPresent); this.tpUSB.Controls.Add(this.groupBox1); this.tpUSB.Controls.Add(this.groupBox2); this.tpUSB.Controls.Add(this.groupBox3); this.tpUSB.Location = new System.Drawing.Point(4, 22); this.tpUSB.Name = "tpUSB"; this.tpUSB.Size = new System.Drawing.Size(592, 318); this.tpUSB.TabIndex = 6; this.tpUSB.Text = "USB"; // // chkGeneralUSBPresent // this.chkGeneralUSBPresent.Image = null; this.chkGeneralUSBPresent.Location = new System.Drawing.Point(20, 35); this.chkGeneralUSBPresent.Name = "chkGeneralUSBPresent"; this.chkGeneralUSBPresent.Size = new System.Drawing.Size(112, 15); this.chkGeneralUSBPresent.TabIndex = 11; this.chkGeneralUSBPresent.Text = "HSUSB Adapter"; this.toolTip1.SetToolTip(this.chkGeneralUSBPresent, "Check if the HSUSB adapter is being used."); this.chkGeneralUSBPresent.CheckedChanged += new System.EventHandler(this.chkGeneralUSBPresent_CheckedChanged); // // groupBox1 // this.groupBox1.Location = new System.Drawing.Point(13, 14); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(127, 76); this.groupBox1.TabIndex = 12; this.groupBox1.TabStop = false; this.groupBox1.Text = "Cypress"; // // groupBox2 // this.groupBox2.Controls.Add(this.labelTS47); this.groupBox2.Controls.Add(this.udAD995xAtt); this.groupBox2.Controls.Add(this.chkGeneral995xBPF); this.groupBox2.Controls.Add(this.labelTS46); this.groupBox2.Controls.Add(this.udAD995xCalibration); this.groupBox2.Controls.Add(this.labelTS45); this.groupBox2.Controls.Add(this.udAD995xSDRMult); this.groupBox2.Controls.Add(this.labelTS44); this.groupBox2.Controls.Add(this.udAD995xClockPLL); this.groupBox2.Controls.Add(this.labelTS43); this.groupBox2.Controls.Add(this.udAD995xClock); this.groupBox2.Controls.Add(this.labelTS42); this.groupBox2.Controls.Add(this.comboSerial995x); this.groupBox2.Controls.Add(this.chkGeneral995x); this.groupBox2.Location = new System.Drawing.Point(153, 14); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(194, 242); this.groupBox2.TabIndex = 13; this.groupBox2.TabStop = false; this.groupBox2.Text = "MicroChip UBW"; // // labelTS47 // this.labelTS47.Image = null; this.labelTS47.Location = new System.Drawing.Point(113, 187); this.labelTS47.Name = "labelTS47"; this.labelTS47.Size = new System.Drawing.Size(64, 13); this.labelTS47.TabIndex = 57; this.labelTS47.Text = "Att."; // // udAD995xAtt // this.udAD995xAtt.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAD995xAtt.Location = new System.Drawing.Point(113, 208); this.udAD995xAtt.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.udAD995xAtt.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAD995xAtt.Name = "udAD995xAtt"; this.udAD995xAtt.Size = new System.Drawing.Size(64, 20); this.udAD995xAtt.TabIndex = 56; this.toolTip1.SetToolTip(this.udAD995xAtt, "Delay to compensate for longer Parallel cables."); this.udAD995xAtt.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAD995xAtt.ValueChanged += new System.EventHandler(this.udAD995xAtt_ValueChanged); // // chkGeneral995xBPF // this.chkGeneral995xBPF.Image = null; this.chkGeneral995xBPF.Location = new System.Drawing.Point(127, 21); this.chkGeneral995xBPF.Name = "chkGeneral995xBPF"; this.chkGeneral995xBPF.Size = new System.Drawing.Size(46, 15); this.chkGeneral995xBPF.TabIndex = 55; this.chkGeneral995xBPF.Text = "BPF"; this.toolTip1.SetToolTip(this.chkGeneral995xBPF, "Check if the 995x BPF is being used."); this.chkGeneral995xBPF.CheckedChanged += new System.EventHandler(this.chkGeneral995xBPF_CheckedChanged); // // labelTS46 // this.labelTS46.Image = null; this.labelTS46.Location = new System.Drawing.Point(8, 192); this.labelTS46.Name = "labelTS46"; this.labelTS46.Size = new System.Drawing.Size(64, 13); this.labelTS46.TabIndex = 54; this.labelTS46.Text = "Calibration"; // // udAD995xCalibration // this.udAD995xCalibration.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAD995xCalibration.Location = new System.Drawing.Point(8, 208); this.udAD995xCalibration.Maximum = new System.Decimal(new int[] { 200000, 0, 0, 0}); this.udAD995xCalibration.Minimum = new System.Decimal(new int[] { 200000, 0, 0, -2147483648}); this.udAD995xCalibration.Name = "udAD995xCalibration"; this.udAD995xCalibration.Size = new System.Drawing.Size(64, 20); this.udAD995xCalibration.TabIndex = 53; this.toolTip1.SetToolTip(this.udAD995xCalibration, "Delay to compensate for longer Parallel cables."); this.udAD995xCalibration.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAD995xCalibration.ValueChanged += new System.EventHandler(this.udAD995xCalibration_ValueChanged); // // labelTS45 // this.labelTS45.Image = null; this.labelTS45.Location = new System.Drawing.Point(8, 152); this.labelTS45.Name = "labelTS45"; this.labelTS45.Size = new System.Drawing.Size(64, 13); this.labelTS45.TabIndex = 52; this.labelTS45.Text = "SDR mult."; // // udAD995xSDRMult // this.udAD995xSDRMult.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAD995xSDRMult.Location = new System.Drawing.Point(8, 168); this.udAD995xSDRMult.Maximum = new System.Decimal(new int[] { 32, 0, 0, 0}); this.udAD995xSDRMult.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAD995xSDRMult.Name = "udAD995xSDRMult"; this.udAD995xSDRMult.Size = new System.Drawing.Size(64, 20); this.udAD995xSDRMult.TabIndex = 51; this.toolTip1.SetToolTip(this.udAD995xSDRMult, "Delay to compensate for longer Parallel cables."); this.udAD995xSDRMult.Value = new System.Decimal(new int[] { 2, 0, 0, 0}); this.udAD995xSDRMult.ValueChanged += new System.EventHandler(this.udAD995xSDRMult_ValueChanged); // // labelTS44 // this.labelTS44.Image = null; this.labelTS44.Location = new System.Drawing.Point(8, 112); this.labelTS44.Name = "labelTS44"; this.labelTS44.Size = new System.Drawing.Size(92, 13); this.labelTS44.TabIndex = 50; this.labelTS44.Text = "Clock PLL mult."; // // udAD995xClockPLL // this.udAD995xClockPLL.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAD995xClockPLL.Location = new System.Drawing.Point(8, 128); this.udAD995xClockPLL.Maximum = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udAD995xClockPLL.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAD995xClockPLL.Name = "udAD995xClockPLL"; this.udAD995xClockPLL.Size = new System.Drawing.Size(64, 20); this.udAD995xClockPLL.TabIndex = 49; this.toolTip1.SetToolTip(this.udAD995xClockPLL, "Delay to compensate for longer Parallel cables."); this.udAD995xClockPLL.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); this.udAD995xClockPLL.ValueChanged += new System.EventHandler(this.udAD995xClockPLL_ValueChanged); // // labelTS43 // this.labelTS43.Image = null; this.labelTS43.Location = new System.Drawing.Point(8, 72); this.labelTS43.Name = "labelTS43"; this.labelTS43.Size = new System.Drawing.Size(64, 13); this.labelTS43.TabIndex = 48; this.labelTS43.Text = "Clock MHz"; // // udAD995xClock // this.udAD995xClock.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udAD995xClock.Location = new System.Drawing.Point(8, 88); this.udAD995xClock.Maximum = new System.Decimal(new int[] { 400, 0, 0, 0}); this.udAD995xClock.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAD995xClock.Name = "udAD995xClock"; this.udAD995xClock.Size = new System.Drawing.Size(64, 20); this.udAD995xClock.TabIndex = 47; this.toolTip1.SetToolTip(this.udAD995xClock, "Delay to compensate for longer Parallel cables."); this.udAD995xClock.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udAD995xClock.ValueChanged += new System.EventHandler(this.udAD995xClock_ValueChanged); // // labelTS42 // this.labelTS42.Image = null; this.labelTS42.Location = new System.Drawing.Point(80, 42); this.labelTS42.Name = "labelTS42"; this.labelTS42.Size = new System.Drawing.Size(27, 13); this.labelTS42.TabIndex = 43; this.labelTS42.Text = "Port"; this.labelTS42.Visible = false; // // comboSerial995x // this.comboSerial995x.DisplayMember = "LPT"; this.comboSerial995x.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSerial995x.DropDownWidth = 64; this.comboSerial995x.Items.AddRange(new object[] { "5000"}); this.comboSerial995x.Location = new System.Drawing.Point(7, 42); this.comboSerial995x.Name = "comboSerial995x"; this.comboSerial995x.Size = new System.Drawing.Size(64, 21); this.comboSerial995x.TabIndex = 42; this.toolTip1.SetToolTip(this.comboSerial995x, "Sets Frequency and Si570 Register Output port"); this.comboSerial995x.ValueMember = "LPT"; this.comboSerial995x.SelectedIndexChanged += new System.EventHandler(this.comboSerial995x_SelectedIndexChanged); // // chkGeneral995x // this.chkGeneral995x.Image = null; this.chkGeneral995x.Location = new System.Drawing.Point(7, 21); this.chkGeneral995x.Name = "chkGeneral995x"; this.chkGeneral995x.Size = new System.Drawing.Size(112, 15); this.chkGeneral995x.TabIndex = 14; this.chkGeneral995x.Text = "995x Adapter"; this.toolTip1.SetToolTip(this.chkGeneral995x, "Check if the 995x adapter is being used."); this.chkGeneral995x.CheckedChanged += new System.EventHandler(this.chkGeneral995x_CheckedChanged); // // groupBox3 // this.groupBox3.Controls.Add(this.chkGeneralUSBtoI2CPresent); this.groupBox3.Controls.Add(this.chkGeneralUSBtoI2CBPF); this.groupBox3.Location = new System.Drawing.Point(360, 14); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(131, 76); this.groupBox3.TabIndex = 15; this.groupBox3.TabStop = false; this.groupBox3.Text = "AVR"; // // chkGeneralUSBtoI2CPresent // this.chkGeneralUSBtoI2CPresent.Image = null; this.chkGeneralUSBtoI2CPresent.Location = new System.Drawing.Point(7, 21); this.chkGeneralUSBtoI2CPresent.Name = "chkGeneralUSBtoI2CPresent"; this.chkGeneralUSBtoI2CPresent.Size = new System.Drawing.Size(121, 16); this.chkGeneralUSBtoI2CPresent.TabIndex = 36; this.chkGeneralUSBtoI2CPresent.Text = "USBtoI2C Adapter"; this.toolTip1.SetToolTip(this.chkGeneralUSBtoI2CPresent, "Check if the USB to I2C adapter is being used."); this.chkGeneralUSBtoI2CPresent.CheckedChanged += new System.EventHandler(this.chkGeneralUSBtoI2CPresent_CheckedChanged); // // chkGeneralUSBtoI2CBPF // this.chkGeneralUSBtoI2CBPF.Image = null; this.chkGeneralUSBtoI2CBPF.Location = new System.Drawing.Point(8, 48); this.chkGeneralUSBtoI2CBPF.Name = "chkGeneralUSBtoI2CBPF"; this.chkGeneralUSBtoI2CBPF.Size = new System.Drawing.Size(64, 15); this.chkGeneralUSBtoI2CBPF.TabIndex = 58; this.chkGeneralUSBtoI2CBPF.Text = "HF BPF"; this.toolTip1.SetToolTip(this.chkGeneralUSBtoI2CBPF, "Check if the HF BPF is being used."); this.chkGeneralUSBtoI2CBPF.CheckedChanged += new System.EventHandler(this.chkGeneralUSBtoI2CBPF_CheckedChanged); // // tpGeneralCalibration // this.tpGeneralCalibration.Controls.Add(this.chkCalExpert); this.tpGeneralCalibration.Controls.Add(this.grpGenCalRXImage); this.tpGeneralCalibration.Controls.Add(this.grpGenCalLevel); this.tpGeneralCalibration.Controls.Add(this.grpGeneralCalibration); this.tpGeneralCalibration.Location = new System.Drawing.Point(4, 22); this.tpGeneralCalibration.Name = "tpGeneralCalibration"; this.tpGeneralCalibration.Size = new System.Drawing.Size(592, 318); this.tpGeneralCalibration.TabIndex = 2; this.tpGeneralCalibration.Text = "Calibration"; // // chkCalExpert // this.chkCalExpert.Location = new System.Drawing.Point(16, 136); this.chkCalExpert.Name = "chkCalExpert"; this.chkCalExpert.Size = new System.Drawing.Size(56, 24); this.chkCalExpert.TabIndex = 10; this.chkCalExpert.Text = "Expert"; this.chkCalExpert.Visible = false; this.chkCalExpert.CheckedChanged += new System.EventHandler(this.chkCalExpert_CheckedChanged); // // grpGenCalRXImage // this.grpGenCalRXImage.Controls.Add(this.btnAIRStore); this.grpGenCalRXImage.Controls.Add(this.btnAIRClearAll); this.grpGenCalRXImage.Controls.Add(this.btnAIREditAdd); this.grpGenCalRXImage.Controls.Add(this.labelTS22); this.grpGenCalRXImage.Controls.Add(this.udAIRPosition); this.grpGenCalRXImage.Controls.Add(this.labelTS21); this.grpGenCalRXImage.Controls.Add(this.udAIRPoints); this.grpGenCalRXImage.Controls.Add(this.labelTS19); this.grpGenCalRXImage.Controls.Add(this.labelTS18); this.grpGenCalRXImage.Controls.Add(this.labelTS17); this.grpGenCalRXImage.Controls.Add(this.cbAIREnableEdit); this.grpGenCalRXImage.Controls.Add(this.udAIRGain); this.grpGenCalRXImage.Controls.Add(this.udAIRPhase); this.grpGenCalRXImage.Controls.Add(this.udAIRBin); this.grpGenCalRXImage.Controls.Add(this.btnAIRCalImageStart); this.grpGenCalRXImage.Controls.Add(this.udGeneralCalFreq3); this.grpGenCalRXImage.Controls.Add(this.lblGenCalRXImageFreq); this.grpGenCalRXImage.Controls.Add(this.btnGeneralCalImageStart); this.grpGenCalRXImage.Location = new System.Drawing.Point(360, 8); this.grpGenCalRXImage.Name = "grpGenCalRXImage"; this.grpGenCalRXImage.Size = new System.Drawing.Size(213, 249); this.grpGenCalRXImage.TabIndex = 9; this.grpGenCalRXImage.TabStop = false; this.grpGenCalRXImage.Text = "RX Image Reject Cal"; // // btnAIRStore // this.btnAIRStore.Image = null; this.btnAIRStore.Location = new System.Drawing.Point(127, 111); this.btnAIRStore.Name = "btnAIRStore"; this.btnAIRStore.TabIndex = 25; this.btnAIRStore.Text = "Store"; this.toolTip1.SetToolTip(this.btnAIRStore, "Click to start the RX Image rejection calibration using the above frequency refer" + "ence."); this.btnAIRStore.Visible = false; this.btnAIRStore.Click += new System.EventHandler(this.btnAIRStore_Click); // // btnAIRClearAll // this.btnAIRClearAll.Image = null; this.btnAIRClearAll.Location = new System.Drawing.Point(7, 201); this.btnAIRClearAll.Name = "btnAIRClearAll"; this.btnAIRClearAll.Size = new System.Drawing.Size(80, 23); this.btnAIRClearAll.TabIndex = 24; this.btnAIRClearAll.Text = "Clear All"; this.toolTip1.SetToolTip(this.btnAIRClearAll, "Click to start the RX Image rejection calibration using the above frequency refer" + "ence."); this.btnAIRClearAll.Visible = false; this.btnAIRClearAll.Click += new System.EventHandler(this.btnAIRClearAll_Click); // // btnAIREditAdd // this.btnAIREditAdd.Image = null; this.btnAIREditAdd.Location = new System.Drawing.Point(7, 173); this.btnAIREditAdd.Name = "btnAIREditAdd"; this.btnAIREditAdd.Size = new System.Drawing.Size(80, 24); this.btnAIREditAdd.TabIndex = 23; this.btnAIREditAdd.Text = "Edit/Add"; this.toolTip1.SetToolTip(this.btnAIREditAdd, "Click to start the RX Image rejection calibration using the above frequency refer" + "ence."); this.btnAIREditAdd.Visible = false; this.btnAIREditAdd.Click += new System.EventHandler(this.btnAIREditAdd_Click); // // labelTS22 // this.labelTS22.Image = null; this.labelTS22.Location = new System.Drawing.Point(100, 208); this.labelTS22.Name = "labelTS22"; this.labelTS22.Size = new System.Drawing.Size(33, 23); this.labelTS22.TabIndex = 22; this.labelTS22.Text = "Pos #"; this.labelTS22.Visible = false; // // udAIRPosition // this.udAIRPosition.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRPosition.Location = new System.Drawing.Point(147, 208); this.udAIRPosition.Maximum = new System.Decimal(new int[] { 4095, 0, 0, 0}); this.udAIRPosition.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAIRPosition.Name = "udAIRPosition"; this.udAIRPosition.Size = new System.Drawing.Size(53, 20); this.udAIRPosition.TabIndex = 21; this.toolTip1.SetToolTip(this.udAIRPosition, "AIR RX Image calibration Bin"); this.udAIRPosition.Value = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRPosition.Visible = false; this.udAIRPosition.ValueChanged += new System.EventHandler(this.udAIRPosition_ValueChanged); // // labelTS21 // this.labelTS21.Image = null; this.labelTS21.Location = new System.Drawing.Point(53, 83); this.labelTS21.Name = "labelTS21"; this.labelTS21.Size = new System.Drawing.Size(64, 23); this.labelTS21.TabIndex = 18; this.labelTS21.Text = "AIR Points"; this.labelTS21.Visible = false; // // udAIRPoints // this.udAIRPoints.Increment = new System.Decimal(new int[] { 2, 0, 0, 0}); this.udAIRPoints.Location = new System.Drawing.Point(127, 83); this.udAIRPoints.Maximum = new System.Decimal(new int[] { 64, 0, 0, 0}); this.udAIRPoints.Minimum = new System.Decimal(new int[] { 2, 0, 0, 0}); this.udAIRPoints.Name = "udAIRPoints"; this.udAIRPoints.Size = new System.Drawing.Size(71, 20); this.udAIRPoints.TabIndex = 17; this.toolTip1.SetToolTip(this.udAIRPoints, "AIR RX Image calibration points"); this.udAIRPoints.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); this.udAIRPoints.Visible = false; this.udAIRPoints.ValueChanged += new System.EventHandler(this.udAIRPoints_ValueChanged); // // labelTS19 // this.labelTS19.Image = null; this.labelTS19.Location = new System.Drawing.Point(100, 187); this.labelTS19.Name = "labelTS19"; this.labelTS19.Size = new System.Drawing.Size(33, 24); this.labelTS19.TabIndex = 15; this.labelTS19.Text = "Gain"; this.labelTS19.Visible = false; // // labelTS18 // this.labelTS18.Image = null; this.labelTS18.Location = new System.Drawing.Point(100, 166); this.labelTS18.Name = "labelTS18"; this.labelTS18.Size = new System.Drawing.Size(40, 21); this.labelTS18.TabIndex = 14; this.labelTS18.Text = "Phase"; this.labelTS18.Visible = false; // // labelTS17 // this.labelTS17.Image = null; this.labelTS17.Location = new System.Drawing.Point(100, 146); this.labelTS17.Name = "labelTS17"; this.labelTS17.Size = new System.Drawing.Size(40, 13); this.labelTS17.TabIndex = 13; this.labelTS17.Text = "Pnt #"; this.labelTS17.Visible = false; // // cbAIREnableEdit // this.cbAIREnableEdit.Appearance = System.Windows.Forms.Appearance.Button; this.cbAIREnableEdit.Location = new System.Drawing.Point(7, 146); this.cbAIREnableEdit.Name = "cbAIREnableEdit"; this.cbAIREnableEdit.Size = new System.Drawing.Size(80, 24); this.cbAIREnableEdit.TabIndex = 12; this.cbAIREnableEdit.Text = "Edit Enable"; this.cbAIREnableEdit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cbAIREnableEdit.Visible = false; this.cbAIREnableEdit.CheckedChanged += new System.EventHandler(this.cbAIREnableEdit_CheckedChanged); // // udAIRGain // this.udAIRGain.DecimalPlaces = 2; this.udAIRGain.Increment = new System.Decimal(new int[] { 1, 0, 0, 131072}); this.udAIRGain.Location = new System.Drawing.Point(147, 187); this.udAIRGain.Maximum = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udAIRGain.Minimum = new System.Decimal(new int[] { 500, 0, 0, -2147483648}); this.udAIRGain.Name = "udAIRGain"; this.udAIRGain.Size = new System.Drawing.Size(53, 20); this.udAIRGain.TabIndex = 11; this.toolTip1.SetToolTip(this.udAIRGain, "AIR RX Image calibration Gain"); this.udAIRGain.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAIRGain.Visible = false; this.udAIRGain.ValueChanged += new System.EventHandler(this.udAIRGain_ValueChanged); // // udAIRPhase // this.udAIRPhase.DecimalPlaces = 2; this.udAIRPhase.Increment = new System.Decimal(new int[] { 1, 0, 0, 131072}); this.udAIRPhase.Location = new System.Drawing.Point(147, 166); this.udAIRPhase.Maximum = new System.Decimal(new int[] { 400, 0, 0, 0}); this.udAIRPhase.Minimum = new System.Decimal(new int[] { 400, 0, 0, -2147483648}); this.udAIRPhase.Name = "udAIRPhase"; this.udAIRPhase.Size = new System.Drawing.Size(53, 20); this.udAIRPhase.TabIndex = 10; this.toolTip1.SetToolTip(this.udAIRPhase, "AIR RX Image calibration Phase"); this.udAIRPhase.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAIRPhase.Visible = false; this.udAIRPhase.ValueChanged += new System.EventHandler(this.udAIRPhase_ValueChanged); // // udAIRBin // this.udAIRBin.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRBin.Location = new System.Drawing.Point(147, 146); this.udAIRBin.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.udAIRBin.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAIRBin.Name = "udAIRBin"; this.udAIRBin.Size = new System.Drawing.Size(53, 20); this.udAIRBin.TabIndex = 9; this.toolTip1.SetToolTip(this.udAIRBin, "AIR RX Image calibration Bin"); this.udAIRBin.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAIRBin.Visible = false; this.udAIRBin.ValueChanged += new System.EventHandler(this.udAIRBin_ValueChanged); // // btnAIRCalImageStart // this.btnAIRCalImageStart.Image = null; this.btnAIRCalImageStart.Location = new System.Drawing.Point(127, 49); this.btnAIRCalImageStart.Name = "btnAIRCalImageStart"; this.btnAIRCalImageStart.TabIndex = 8; this.btnAIRCalImageStart.Text = "AIR"; this.toolTip1.SetToolTip(this.btnAIRCalImageStart, "Click to start the RX Image rejection calibration using the above frequency refer" + "ence."); this.btnAIRCalImageStart.Visible = false; this.btnAIRCalImageStart.Click += new System.EventHandler(this.btnAIRCalImageStart_Click); // // udGeneralCalFreq3 // this.udGeneralCalFreq3.DecimalPlaces = 6; this.udGeneralCalFreq3.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udGeneralCalFreq3.Location = new System.Drawing.Point(80, 24); this.udGeneralCalFreq3.Maximum = new System.Decimal(new int[] { 65, 0, 0, 0}); this.udGeneralCalFreq3.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalFreq3.Name = "udGeneralCalFreq3"; this.udGeneralCalFreq3.Size = new System.Drawing.Size(72, 20); this.udGeneralCalFreq3.TabIndex = 1; this.toolTip1.SetToolTip(this.udGeneralCalFreq3, "RX Image calibration reference frequency"); this.udGeneralCalFreq3.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalFreq3.LostFocus += new System.EventHandler(this.udGeneralCalFreq3_LostFocus); // // lblGenCalRXImageFreq // this.lblGenCalRXImageFreq.Image = null; this.lblGenCalRXImageFreq.Location = new System.Drawing.Point(16, 24); this.lblGenCalRXImageFreq.Name = "lblGenCalRXImageFreq"; this.lblGenCalRXImageFreq.Size = new System.Drawing.Size(64, 23); this.lblGenCalRXImageFreq.TabIndex = 0; this.lblGenCalRXImageFreq.Text = "Frequency:"; // // btnGeneralCalImageStart // this.btnGeneralCalImageStart.Image = null; this.btnGeneralCalImageStart.Location = new System.Drawing.Point(20, 49); this.btnGeneralCalImageStart.Name = "btnGeneralCalImageStart"; this.btnGeneralCalImageStart.TabIndex = 7; this.btnGeneralCalImageStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnGeneralCalImageStart, "Click to start the RX Image rejection calibration using the above frequency refer" + "ence."); this.btnGeneralCalImageStart.Click += new System.EventHandler(this.btnGeneralCalImageStart_Click); // // grpGenCalLevel // this.grpGenCalLevel.Controls.Add(this.udGeneralCalLevel); this.grpGenCalLevel.Controls.Add(this.udGeneralCalFreq2); this.grpGenCalLevel.Controls.Add(this.lblGenCalLevelFreq); this.grpGenCalLevel.Controls.Add(this.lblGeneralCalLevel); this.grpGenCalLevel.Controls.Add(this.btnGeneralCalLevelStart); this.grpGenCalLevel.Location = new System.Drawing.Point(184, 8); this.grpGenCalLevel.Name = "grpGenCalLevel"; this.grpGenCalLevel.Size = new System.Drawing.Size(168, 112); this.grpGenCalLevel.TabIndex = 8; this.grpGenCalLevel.TabStop = false; this.grpGenCalLevel.Text = "Level Cal"; // // udGeneralCalLevel // this.udGeneralCalLevel.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalLevel.Location = new System.Drawing.Point(80, 48); this.udGeneralCalLevel.Maximum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalLevel.Minimum = new System.Decimal(new int[] { 150, 0, 0, -2147483648}); this.udGeneralCalLevel.Name = "udGeneralCalLevel"; this.udGeneralCalLevel.Size = new System.Drawing.Size(72, 20); this.udGeneralCalLevel.TabIndex = 3; this.toolTip1.SetToolTip(this.udGeneralCalLevel, "Level calibration reference level"); this.udGeneralCalLevel.Value = new System.Decimal(new int[] { 70, 0, 0, -2147483648}); this.udGeneralCalLevel.LostFocus += new System.EventHandler(this.udGeneralCalLevel_LostFocus); // // udGeneralCalFreq2 // this.udGeneralCalFreq2.DecimalPlaces = 6; this.udGeneralCalFreq2.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udGeneralCalFreq2.Location = new System.Drawing.Point(80, 24); this.udGeneralCalFreq2.Maximum = new System.Decimal(new int[] { 65, 0, 0, 0}); this.udGeneralCalFreq2.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalFreq2.Name = "udGeneralCalFreq2"; this.udGeneralCalFreq2.Size = new System.Drawing.Size(72, 20); this.udGeneralCalFreq2.TabIndex = 1; this.toolTip1.SetToolTip(this.udGeneralCalFreq2, "Level calibration reference frequency"); this.udGeneralCalFreq2.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalFreq2.LostFocus += new System.EventHandler(this.udGeneralCalFreq2_LostFocus); // // lblGenCalLevelFreq // this.lblGenCalLevelFreq.Image = null; this.lblGenCalLevelFreq.Location = new System.Drawing.Point(16, 24); this.lblGenCalLevelFreq.Name = "lblGenCalLevelFreq"; this.lblGenCalLevelFreq.Size = new System.Drawing.Size(64, 23); this.lblGenCalLevelFreq.TabIndex = 0; this.lblGenCalLevelFreq.Text = "Frequency:"; // // lblGeneralCalLevel // this.lblGeneralCalLevel.Image = null; this.lblGeneralCalLevel.Location = new System.Drawing.Point(16, 48); this.lblGeneralCalLevel.Name = "lblGeneralCalLevel"; this.lblGeneralCalLevel.Size = new System.Drawing.Size(68, 23); this.lblGeneralCalLevel.TabIndex = 2; this.lblGeneralCalLevel.Text = "Level (dBm):"; // // btnGeneralCalLevelStart // this.btnGeneralCalLevelStart.Image = null; this.btnGeneralCalLevelStart.Location = new System.Drawing.Point(48, 80); this.btnGeneralCalLevelStart.Name = "btnGeneralCalLevelStart"; this.btnGeneralCalLevelStart.TabIndex = 4; this.btnGeneralCalLevelStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnGeneralCalLevelStart, "Click to start the level calibration using the frequency and level references abo" + "ve."); this.btnGeneralCalLevelStart.Click += new System.EventHandler(this.btnGeneralCalLevelStart_Click); // // grpGeneralCalibration // this.grpGeneralCalibration.Controls.Add(this.btnGeneralCalFreqStart); this.grpGeneralCalibration.Controls.Add(this.udGeneralCalFreq1); this.grpGeneralCalibration.Controls.Add(this.lblGeneralCalFrequency); this.grpGeneralCalibration.Location = new System.Drawing.Point(8, 8); this.grpGeneralCalibration.Name = "grpGeneralCalibration"; this.grpGeneralCalibration.Size = new System.Drawing.Size(168, 112); this.grpGeneralCalibration.TabIndex = 5; this.grpGeneralCalibration.TabStop = false; this.grpGeneralCalibration.Text = "Freq Cal"; // // btnGeneralCalFreqStart // this.btnGeneralCalFreqStart.Image = null; this.btnGeneralCalFreqStart.Location = new System.Drawing.Point(48, 80); this.btnGeneralCalFreqStart.Name = "btnGeneralCalFreqStart"; this.btnGeneralCalFreqStart.TabIndex = 5; this.btnGeneralCalFreqStart.Text = "Start"; this.toolTip1.SetToolTip(this.btnGeneralCalFreqStart, "Click to start the frequency calibration using the reference frequency above."); this.btnGeneralCalFreqStart.Click += new System.EventHandler(this.btnGeneralCalFreqStart_Click); // // udGeneralCalFreq1 // this.udGeneralCalFreq1.DecimalPlaces = 6; this.udGeneralCalFreq1.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udGeneralCalFreq1.Location = new System.Drawing.Point(80, 24); this.udGeneralCalFreq1.Maximum = new System.Decimal(new int[] { 65, 0, 0, 0}); this.udGeneralCalFreq1.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udGeneralCalFreq1.Name = "udGeneralCalFreq1"; this.udGeneralCalFreq1.Size = new System.Drawing.Size(72, 20); this.udGeneralCalFreq1.TabIndex = 1; this.toolTip1.SetToolTip(this.udGeneralCalFreq1, "Frequency calibration reference frequency"); this.udGeneralCalFreq1.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udGeneralCalFreq1.LostFocus += new System.EventHandler(this.udGeneralCalFreq1_LostFocus); // // lblGeneralCalFrequency // this.lblGeneralCalFrequency.Image = null; this.lblGeneralCalFrequency.Location = new System.Drawing.Point(16, 24); this.lblGeneralCalFrequency.Name = "lblGeneralCalFrequency"; this.lblGeneralCalFrequency.Size = new System.Drawing.Size(64, 23); this.lblGeneralCalFrequency.TabIndex = 0; this.lblGeneralCalFrequency.Text = "Frequency:"; // // tpFilters // this.tpFilters.Controls.Add(this.grpOptFilterControls); this.tpFilters.Location = new System.Drawing.Point(4, 22); this.tpFilters.Name = "tpFilters"; this.tpFilters.Size = new System.Drawing.Size(592, 318); this.tpFilters.TabIndex = 3; this.tpFilters.Text = "Filters"; // // grpOptFilterControls // this.grpOptFilterControls.Controls.Add(this.udFilterDefaultLowCut); this.grpOptFilterControls.Controls.Add(this.lblDefaultLowCut); this.grpOptFilterControls.Controls.Add(this.udOptMaxFilterShift); this.grpOptFilterControls.Controls.Add(this.lblOptMaxFilterShift); this.grpOptFilterControls.Controls.Add(this.comboOptFilterWidthMode); this.grpOptFilterControls.Controls.Add(this.lblOptWidthSliderMode); this.grpOptFilterControls.Controls.Add(this.udOptMaxFilterWidth); this.grpOptFilterControls.Controls.Add(this.lblOptMaxFilter); this.grpOptFilterControls.Controls.Add(this.chkOptFilterSaveChanges); this.grpOptFilterControls.Location = new System.Drawing.Point(8, 8); this.grpOptFilterControls.Name = "grpOptFilterControls"; this.grpOptFilterControls.Size = new System.Drawing.Size(200, 152); this.grpOptFilterControls.TabIndex = 29; this.grpOptFilterControls.TabStop = false; this.grpOptFilterControls.Text = "Filter Controls"; // // udFilterDefaultLowCut // this.udFilterDefaultLowCut.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udFilterDefaultLowCut.Location = new System.Drawing.Point(128, 120); this.udFilterDefaultLowCut.Maximum = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udFilterDefaultLowCut.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udFilterDefaultLowCut.Name = "udFilterDefaultLowCut"; this.udFilterDefaultLowCut.Size = new System.Drawing.Size(48, 20); this.udFilterDefaultLowCut.TabIndex = 17; this.toolTip1.SetToolTip(this.udFilterDefaultLowCut, "Sets the default low cut filter for filter changes"); this.udFilterDefaultLowCut.Value = new System.Decimal(new int[] { 150, 0, 0, 0}); this.udFilterDefaultLowCut.LostFocus += new System.EventHandler(this.udFilterDefaultLowCut_LostFocus); this.udFilterDefaultLowCut.ValueChanged += new System.EventHandler(this.udFilterDefaultLowCut_ValueChanged); // // lblDefaultLowCut // this.lblDefaultLowCut.Image = null; this.lblDefaultLowCut.Location = new System.Drawing.Point(16, 120); this.lblDefaultLowCut.Name = "lblDefaultLowCut"; this.lblDefaultLowCut.Size = new System.Drawing.Size(120, 23); this.lblDefaultLowCut.TabIndex = 16; this.lblDefaultLowCut.Text = "Default Low Cut (Hz):"; // // udOptMaxFilterShift // this.udOptMaxFilterShift.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udOptMaxFilterShift.Location = new System.Drawing.Point(128, 72); this.udOptMaxFilterShift.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterShift.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udOptMaxFilterShift.Name = "udOptMaxFilterShift"; this.udOptMaxFilterShift.Size = new System.Drawing.Size(48, 20); this.udOptMaxFilterShift.TabIndex = 13; this.toolTip1.SetToolTip(this.udOptMaxFilterShift, "Sets the maximum amount for the Shift control. Set lower for finer resolution co" + "ntrol"); this.udOptMaxFilterShift.Value = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterShift.LostFocus += new System.EventHandler(this.udOptMaxFilterShift_LostFocus); this.udOptMaxFilterShift.ValueChanged += new System.EventHandler(this.udOptMaxFilterShift_ValueChanged); // // lblOptMaxFilterShift // this.lblOptMaxFilterShift.Image = null; this.lblOptMaxFilterShift.Location = new System.Drawing.Point(16, 72); this.lblOptMaxFilterShift.Name = "lblOptMaxFilterShift"; this.lblOptMaxFilterShift.Size = new System.Drawing.Size(120, 23); this.lblOptMaxFilterShift.TabIndex = 14; this.lblOptMaxFilterShift.Text = "Max Filter Shift (Hz):"; // // comboOptFilterWidthMode // this.comboOptFilterWidthMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboOptFilterWidthMode.DropDownWidth = 112; this.comboOptFilterWidthMode.Items.AddRange(new object[] { "Linear", "Log", "Log10"}); this.comboOptFilterWidthMode.Location = new System.Drawing.Point(120, 48); this.comboOptFilterWidthMode.Name = "comboOptFilterWidthMode"; this.comboOptFilterWidthMode.Size = new System.Drawing.Size(56, 21); this.comboOptFilterWidthMode.TabIndex = 12; this.toolTip1.SetToolTip(this.comboOptFilterWidthMode, "Sets the mapping for the filter width slider."); this.comboOptFilterWidthMode.SelectedIndexChanged += new System.EventHandler(this.comboOptFilterWidthMode_SelectedIndexChanged); // // lblOptWidthSliderMode // this.lblOptWidthSliderMode.Image = null; this.lblOptWidthSliderMode.Location = new System.Drawing.Point(16, 48); this.lblOptWidthSliderMode.Name = "lblOptWidthSliderMode"; this.lblOptWidthSliderMode.Size = new System.Drawing.Size(104, 16); this.lblOptWidthSliderMode.TabIndex = 11; this.lblOptWidthSliderMode.Text = "Width Slider Mode:"; // // udOptMaxFilterWidth // this.udOptMaxFilterWidth.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udOptMaxFilterWidth.Location = new System.Drawing.Point(128, 24); this.udOptMaxFilterWidth.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterWidth.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udOptMaxFilterWidth.Name = "udOptMaxFilterWidth"; this.udOptMaxFilterWidth.Size = new System.Drawing.Size(48, 20); this.udOptMaxFilterWidth.TabIndex = 0; this.toolTip1.SetToolTip(this.udOptMaxFilterWidth, "Wets the maximum filter bandwidth"); this.udOptMaxFilterWidth.Value = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udOptMaxFilterWidth.LostFocus += new System.EventHandler(this.udOptMaxFilterWidth_LostFocus); this.udOptMaxFilterWidth.ValueChanged += new System.EventHandler(this.udOptMaxFilterWidth_ValueChanged); // // lblOptMaxFilter // this.lblOptMaxFilter.Image = null; this.lblOptMaxFilter.Location = new System.Drawing.Point(16, 24); this.lblOptMaxFilter.Name = "lblOptMaxFilter"; this.lblOptMaxFilter.Size = new System.Drawing.Size(120, 23); this.lblOptMaxFilter.TabIndex = 10; this.lblOptMaxFilter.Text = "Max Filter Width (Hz):"; // // chkOptFilterSaveChanges // this.chkOptFilterSaveChanges.Image = null; this.chkOptFilterSaveChanges.Location = new System.Drawing.Point(16, 96); this.chkOptFilterSaveChanges.Name = "chkOptFilterSaveChanges"; this.chkOptFilterSaveChanges.Size = new System.Drawing.Size(176, 16); this.chkOptFilterSaveChanges.TabIndex = 15; this.chkOptFilterSaveChanges.Text = "Save Slider/Display Changes"; this.toolTip1.SetToolTip(this.chkOptFilterSaveChanges, "If checked, changes made to the filters via the display or sliders will be saved " + "in the Variable filter."); this.chkOptFilterSaveChanges.CheckedChanged += new System.EventHandler(this.chkOptFilterSaveChanges_CheckedChanged); // // tpRX2 // this.tpRX2.Controls.Add(this.chkRX2AutoMuteTX); this.tpRX2.Location = new System.Drawing.Point(4, 22); this.tpRX2.Name = "tpRX2"; this.tpRX2.Size = new System.Drawing.Size(592, 318); this.tpRX2.TabIndex = 4; this.tpRX2.Text = "RX2"; // // chkRX2AutoMuteTX // this.chkRX2AutoMuteTX.Checked = true; this.chkRX2AutoMuteTX.CheckState = System.Windows.Forms.CheckState.Checked; this.chkRX2AutoMuteTX.Location = new System.Drawing.Point(8, 8); this.chkRX2AutoMuteTX.Name = "chkRX2AutoMuteTX"; this.chkRX2AutoMuteTX.Size = new System.Drawing.Size(136, 24); this.chkRX2AutoMuteTX.TabIndex = 0; this.chkRX2AutoMuteTX.Text = "Auto Mute RX2 on TX"; this.toolTip1.SetToolTip(this.chkRX2AutoMuteTX, "Mutes RX2 when transmitting when checked. Uncheck to monitor your transmit signa" + "l or other signals with RX2 while transmitting"); this.chkRX2AutoMuteTX.CheckedChanged += new System.EventHandler(this.chkRX2AutoMuteTX_CheckedChanged); // // tpGeneralOptions // this.tpGeneralOptions.Controls.Add(this.grpGenCustomTitleText); this.tpGeneralOptions.Controls.Add(this.grpOptMisc); this.tpGeneralOptions.Controls.Add(this.grpOptQuickQSY); this.tpGeneralOptions.Controls.Add(this.grpGenAutoMute); this.tpGeneralOptions.Controls.Add(this.grpGenTuningOptions); this.tpGeneralOptions.Controls.Add(this.grpGeneralOptions); this.tpGeneralOptions.Controls.Add(this.grpGeneralProcessPriority); this.tpGeneralOptions.Controls.Add(this.grpGeneralUpdates); this.tpGeneralOptions.Location = new System.Drawing.Point(4, 22); this.tpGeneralOptions.Name = "tpGeneralOptions"; this.tpGeneralOptions.Size = new System.Drawing.Size(592, 318); this.tpGeneralOptions.TabIndex = 1; this.tpGeneralOptions.Text = "Options"; // // grpGenCustomTitleText // this.grpGenCustomTitleText.Controls.Add(this.txtGenCustomTitle); this.grpGenCustomTitleText.Location = new System.Drawing.Point(416, 160); this.grpGenCustomTitleText.Name = "grpGenCustomTitleText"; this.grpGenCustomTitleText.Size = new System.Drawing.Size(144, 56); this.grpGenCustomTitleText.TabIndex = 29; this.grpGenCustomTitleText.TabStop = false; this.grpGenCustomTitleText.Text = "Custom Title Text"; // // txtGenCustomTitle // this.txtGenCustomTitle.Location = new System.Drawing.Point(16, 24); this.txtGenCustomTitle.Name = "txtGenCustomTitle"; this.txtGenCustomTitle.Size = new System.Drawing.Size(112, 20); this.txtGenCustomTitle.TabIndex = 0; this.txtGenCustomTitle.Text = ""; this.txtGenCustomTitle.TextChanged += new System.EventHandler(this.txtGenCustomTitle_TextChanged); // // grpOptMisc // this.grpOptMisc.Controls.Add(this.chkMouseTuneStep); this.grpOptMisc.Controls.Add(this.chkZeroBeatRIT); this.grpOptMisc.Controls.Add(this.chkSnapClickTune); this.grpOptMisc.Controls.Add(this.chkDisableToolTips); this.grpOptMisc.Controls.Add(this.chkOptAlwaysOnTop); this.grpOptMisc.Location = new System.Drawing.Point(264, 72); this.grpOptMisc.Name = "grpOptMisc"; this.grpOptMisc.Size = new System.Drawing.Size(144, 144); this.grpOptMisc.TabIndex = 28; this.grpOptMisc.TabStop = false; this.grpOptMisc.Text = "Miscellaneous"; // // chkMouseTuneStep // this.chkMouseTuneStep.Image = null; this.chkMouseTuneStep.Location = new System.Drawing.Point(16, 120); this.chkMouseTuneStep.Name = "chkMouseTuneStep"; this.chkMouseTuneStep.Size = new System.Drawing.Size(112, 16); this.chkMouseTuneStep.TabIndex = 4; this.chkMouseTuneStep.Text = "Mouse Tune Step"; this.toolTip1.SetToolTip(this.chkMouseTuneStep, "When checked, the middle mouse button/wheel will cycle through the Tuning Steps."); this.chkMouseTuneStep.CheckedChanged += new System.EventHandler(this.chkMouseTuneStep_CheckedChanged); // // chkZeroBeatRIT // this.chkZeroBeatRIT.Image = null; this.chkZeroBeatRIT.Location = new System.Drawing.Point(16, 96); this.chkZeroBeatRIT.Name = "chkZeroBeatRIT"; this.chkZeroBeatRIT.Size = new System.Drawing.Size(112, 16); this.chkZeroBeatRIT.TabIndex = 3; this.chkZeroBeatRIT.Text = "Zero Beat - RIT"; this.toolTip1.SetToolTip(this.chkZeroBeatRIT, "When checked, the zero beat function uses RIT instead of adjusting the VFO direct" + "ly. This leaves the transmit frequency alone."); this.chkZeroBeatRIT.CheckedChanged += new System.EventHandler(this.chkZeroBeatRIT_CheckedChanged); // // chkSnapClickTune // this.chkSnapClickTune.Checked = true; this.chkSnapClickTune.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSnapClickTune.Image = null; this.chkSnapClickTune.Location = new System.Drawing.Point(16, 72); this.chkSnapClickTune.Name = "chkSnapClickTune"; this.chkSnapClickTune.Size = new System.Drawing.Size(112, 16); this.chkSnapClickTune.TabIndex = 2; this.chkSnapClickTune.Text = "Snap Click Tune"; this.toolTip1.SetToolTip(this.chkSnapClickTune, "Forces the VFO to the closest tuning step when click tuning."); this.chkSnapClickTune.CheckedChanged += new System.EventHandler(this.chkSnapClickTune_CheckedChanged); // // chkDisableToolTips // this.chkDisableToolTips.Image = null; this.chkDisableToolTips.Location = new System.Drawing.Point(16, 48); this.chkDisableToolTips.Name = "chkDisableToolTips"; this.chkDisableToolTips.Size = new System.Drawing.Size(112, 16); this.chkDisableToolTips.TabIndex = 1; this.chkDisableToolTips.Text = "Disable ToolTips"; this.toolTip1.SetToolTip(this.chkDisableToolTips, "Check this box to hide all of the tooltips (including this one)."); this.chkDisableToolTips.CheckedChanged += new System.EventHandler(this.chkDisableToolTips_CheckedChanged); // // chkOptAlwaysOnTop // this.chkOptAlwaysOnTop.Image = null; this.chkOptAlwaysOnTop.Location = new System.Drawing.Point(16, 24); this.chkOptAlwaysOnTop.Name = "chkOptAlwaysOnTop"; this.chkOptAlwaysOnTop.Size = new System.Drawing.Size(104, 16); this.chkOptAlwaysOnTop.TabIndex = 0; this.chkOptAlwaysOnTop.Text = "Always On Top"; this.toolTip1.SetToolTip(this.chkOptAlwaysOnTop, "Check this box to set the main console to always be on top (visible)."); this.chkOptAlwaysOnTop.CheckedChanged += new System.EventHandler(this.chkOptAlwaysOnTop_CheckedChanged); // // grpOptQuickQSY // this.grpOptQuickQSY.Controls.Add(this.chkOptEnableKBShortcuts); this.grpOptQuickQSY.Controls.Add(this.chkOptQuickQSY); this.grpOptQuickQSY.Location = new System.Drawing.Point(416, 80); this.grpOptQuickQSY.Name = "grpOptQuickQSY"; this.grpOptQuickQSY.Size = new System.Drawing.Size(128, 72); this.grpOptQuickQSY.TabIndex = 27; this.grpOptQuickQSY.TabStop = false; this.grpOptQuickQSY.Text = "Keyboard"; // // chkOptEnableKBShortcuts // this.chkOptEnableKBShortcuts.Checked = true; this.chkOptEnableKBShortcuts.CheckState = System.Windows.Forms.CheckState.Checked; this.chkOptEnableKBShortcuts.Image = null; this.chkOptEnableKBShortcuts.Location = new System.Drawing.Point(16, 24); this.chkOptEnableKBShortcuts.Name = "chkOptEnableKBShortcuts"; this.chkOptEnableKBShortcuts.Size = new System.Drawing.Size(109, 16); this.chkOptEnableKBShortcuts.TabIndex = 1; this.chkOptEnableKBShortcuts.Text = "Enable Shortcuts"; this.toolTip1.SetToolTip(this.chkOptEnableKBShortcuts, "Enable keyboard shortcuts. If this box is not checked, none of the keyboard shor" + "tcuts other than those that are built into windows will function."); this.chkOptEnableKBShortcuts.CheckedChanged += new System.EventHandler(this.chkOptEnableKBShortcuts_CheckedChanged); // // chkOptQuickQSY // this.chkOptQuickQSY.Checked = true; this.chkOptQuickQSY.CheckState = System.Windows.Forms.CheckState.Checked; this.chkOptQuickQSY.Image = null; this.chkOptQuickQSY.Location = new System.Drawing.Point(16, 48); this.chkOptQuickQSY.Name = "chkOptQuickQSY"; this.chkOptQuickQSY.Size = new System.Drawing.Size(80, 16); this.chkOptQuickQSY.TabIndex = 0; this.chkOptQuickQSY.Text = "Quick QSY"; this.toolTip1.SetToolTip(this.chkOptQuickQSY, "Enabled the Quick QSY feature -- directly enter the frequency in MHz while the ma" + "in form has the focus and hit enter."); this.chkOptQuickQSY.CheckedChanged += new System.EventHandler(this.chkOptQuickQSY_CheckedChanged); // // grpGenAutoMute // this.grpGenAutoMute.Controls.Add(this.chkGenAutoMute); this.grpGenAutoMute.Location = new System.Drawing.Point(160, 168); this.grpGenAutoMute.Name = "grpGenAutoMute"; this.grpGenAutoMute.Size = new System.Drawing.Size(96, 56); this.grpGenAutoMute.TabIndex = 26; this.grpGenAutoMute.TabStop = false; this.grpGenAutoMute.Text = "Auto Mute"; // // chkGenAutoMute // this.chkGenAutoMute.Image = null; this.chkGenAutoMute.Location = new System.Drawing.Point(16, 24); this.chkGenAutoMute.Name = "chkGenAutoMute"; this.chkGenAutoMute.Size = new System.Drawing.Size(72, 16); this.chkGenAutoMute.TabIndex = 0; this.chkGenAutoMute.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkGenAutoMute, "Check this box to enable the software to poll Pin X2-12 to look for a signal to m" + "ute the radio."); this.chkGenAutoMute.CheckedChanged += new System.EventHandler(this.chkGenAutoMute_CheckedChanged); // // grpGenTuningOptions // this.grpGenTuningOptions.Controls.Add(this.lblOptClickTuneDIGL); this.grpGenTuningOptions.Controls.Add(this.udOptClickTuneOffsetDIGL); this.grpGenTuningOptions.Controls.Add(this.lblOptClickTuneDIGU); this.grpGenTuningOptions.Controls.Add(this.udOptClickTuneOffsetDIGU); this.grpGenTuningOptions.Location = new System.Drawing.Point(8, 168); this.grpGenTuningOptions.Name = "grpGenTuningOptions"; this.grpGenTuningOptions.Size = new System.Drawing.Size(144, 80); this.grpGenTuningOptions.TabIndex = 25; this.grpGenTuningOptions.TabStop = false; this.grpGenTuningOptions.Text = "Click Tune Offsets (Hz)"; // // lblOptClickTuneDIGL // this.lblOptClickTuneDIGL.Image = null; this.lblOptClickTuneDIGL.Location = new System.Drawing.Point(16, 48); this.lblOptClickTuneDIGL.Name = "lblOptClickTuneDIGL"; this.lblOptClickTuneDIGL.Size = new System.Drawing.Size(40, 23); this.lblOptClickTuneDIGL.TabIndex = 12; this.lblOptClickTuneDIGL.Text = "DIGL:"; // // udOptClickTuneOffsetDIGL // this.udOptClickTuneOffsetDIGL.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Location = new System.Drawing.Point(56, 48); this.udOptClickTuneOffsetDIGL.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.Name = "udOptClickTuneOffsetDIGL"; this.udOptClickTuneOffsetDIGL.Size = new System.Drawing.Size(56, 20); this.udOptClickTuneOffsetDIGL.TabIndex = 11; this.udOptClickTuneOffsetDIGL.Value = new System.Decimal(new int[] { 2210, 0, 0, 0}); this.udOptClickTuneOffsetDIGL.LostFocus += new System.EventHandler(this.udOptClickTuneOffsetDIGL_LostFocus); this.udOptClickTuneOffsetDIGL.ValueChanged += new System.EventHandler(this.udOptClickTuneOffsetDIGL_ValueChanged); // // lblOptClickTuneDIGU // this.lblOptClickTuneDIGU.Image = null; this.lblOptClickTuneDIGU.Location = new System.Drawing.Point(16, 24); this.lblOptClickTuneDIGU.Name = "lblOptClickTuneDIGU"; this.lblOptClickTuneDIGU.Size = new System.Drawing.Size(40, 23); this.lblOptClickTuneDIGU.TabIndex = 10; this.lblOptClickTuneDIGU.Text = "DIGU:"; // // udOptClickTuneOffsetDIGU // this.udOptClickTuneOffsetDIGU.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Location = new System.Drawing.Point(56, 24); this.udOptClickTuneOffsetDIGU.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.Name = "udOptClickTuneOffsetDIGU"; this.udOptClickTuneOffsetDIGU.Size = new System.Drawing.Size(56, 20); this.udOptClickTuneOffsetDIGU.TabIndex = 0; this.udOptClickTuneOffsetDIGU.Value = new System.Decimal(new int[] { 1200, 0, 0, 0}); this.udOptClickTuneOffsetDIGU.LostFocus += new System.EventHandler(this.udOptClickTuneOffsetDIGU_LostFocus); this.udOptClickTuneOffsetDIGU.ValueChanged += new System.EventHandler(this.udOptClickTuneOffsetDIGU_ValueChanged); // // grpGeneralOptions // this.grpGeneralOptions.Controls.Add(this.chkSplitOff); this.grpGeneralOptions.Controls.Add(this.chkGenAllModeMicPTT); this.grpGeneralOptions.Controls.Add(this.chkGeneralCustomFilter); this.grpGeneralOptions.Controls.Add(this.lblGeneralX2Delay); this.grpGeneralOptions.Controls.Add(this.udGeneralX2Delay); this.grpGeneralOptions.Controls.Add(this.chkGeneralEnableX2); this.grpGeneralOptions.Controls.Add(this.chkGeneralSoftwareGainCorr); this.grpGeneralOptions.Controls.Add(this.chkGeneralDisablePTT); this.grpGeneralOptions.Controls.Add(this.chkGeneralSpurRed); this.grpGeneralOptions.Location = new System.Drawing.Point(8, 8); this.grpGeneralOptions.Name = "grpGeneralOptions"; this.grpGeneralOptions.Size = new System.Drawing.Size(248, 144); this.grpGeneralOptions.TabIndex = 6; this.grpGeneralOptions.TabStop = false; this.grpGeneralOptions.Text = "Options"; // // chkSplitOff // this.chkSplitOff.Checked = true; this.chkSplitOff.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSplitOff.Image = null; this.chkSplitOff.Location = new System.Drawing.Point(128, 109); this.chkSplitOff.Name = "chkSplitOff"; this.chkSplitOff.Size = new System.Drawing.Size(104, 28); this.chkSplitOff.TabIndex = 12; this.chkSplitOff.Text = "Disable Split on Band Change"; this.toolTip1.SetToolTip(this.chkSplitOff, "Split will be disabled when band is changed"); this.chkSplitOff.CheckedChanged += new System.EventHandler(this.chkSplitOff_CheckedChanged); // // chkGenAllModeMicPTT // this.chkGenAllModeMicPTT.Checked = true; this.chkGenAllModeMicPTT.CheckState = System.Windows.Forms.CheckState.Checked; this.chkGenAllModeMicPTT.Image = null; this.chkGenAllModeMicPTT.Location = new System.Drawing.Point(16, 104); this.chkGenAllModeMicPTT.Name = "chkGenAllModeMicPTT"; this.chkGenAllModeMicPTT.Size = new System.Drawing.Size(104, 32); this.chkGenAllModeMicPTT.TabIndex = 11; this.chkGenAllModeMicPTT.Text = "All Mode Mic PTT"; this.toolTip1.SetToolTip(this.chkGenAllModeMicPTT, "If checked, the Mic PTT is no longer limited to just voice modes."); this.chkGenAllModeMicPTT.CheckedChanged += new System.EventHandler(this.chkGenAllModeMicPTT_CheckedChanged); // // chkGeneralCustomFilter // this.chkGeneralCustomFilter.Image = null; this.chkGeneralCustomFilter.Location = new System.Drawing.Point(128, 80); this.chkGeneralCustomFilter.Name = "chkGeneralCustomFilter"; this.chkGeneralCustomFilter.Size = new System.Drawing.Size(104, 26); this.chkGeneralCustomFilter.TabIndex = 10; this.chkGeneralCustomFilter.Text = "Enable 300kHz Filter"; this.toolTip1.SetToolTip(this.chkGeneralCustomFilter, "If the custom filter bank on the RFE is configured for 300kHz LPF, use this setti" + "ng."); this.chkGeneralCustomFilter.CheckedChanged += new System.EventHandler(this.chkGeneralCustomFilter_CheckedChanged); // // lblGeneralX2Delay // this.lblGeneralX2Delay.Image = null; this.lblGeneralX2Delay.Location = new System.Drawing.Point(128, 56); this.lblGeneralX2Delay.Name = "lblGeneralX2Delay"; this.lblGeneralX2Delay.Size = new System.Drawing.Size(56, 23); this.lblGeneralX2Delay.TabIndex = 9; this.lblGeneralX2Delay.Text = "X2 Delay:"; // // udGeneralX2Delay // this.udGeneralX2Delay.Enabled = false; this.udGeneralX2Delay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udGeneralX2Delay.Location = new System.Drawing.Point(184, 56); this.udGeneralX2Delay.Maximum = new System.Decimal(new int[] { 1000, 0, 0, 0}); this.udGeneralX2Delay.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udGeneralX2Delay.Name = "udGeneralX2Delay"; this.udGeneralX2Delay.Size = new System.Drawing.Size(48, 20); this.udGeneralX2Delay.TabIndex = 8; this.toolTip1.SetToolTip(this.udGeneralX2Delay, "Sets the Delay on TR switching when the sequencing above is enabled."); this.udGeneralX2Delay.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udGeneralX2Delay.LostFocus += new System.EventHandler(this.udGeneralX2Delay_LostFocus); this.udGeneralX2Delay.ValueChanged += new System.EventHandler(this.udGeneralX2Delay_ValueChanged); // // chkGeneralEnableX2 // this.chkGeneralEnableX2.Image = null; this.chkGeneralEnableX2.Location = new System.Drawing.Point(128, 20); this.chkGeneralEnableX2.Name = "chkGeneralEnableX2"; this.chkGeneralEnableX2.Size = new System.Drawing.Size(96, 32); this.chkGeneralEnableX2.TabIndex = 7; this.chkGeneralEnableX2.Text = "Enable X2 TR Sequencing"; this.toolTip1.SetToolTip(this.chkGeneralEnableX2, "Check this box to enable X2-7 TR sequencing using the delay set below."); this.chkGeneralEnableX2.CheckedChanged += new System.EventHandler(this.chkGeneralEnableX2_CheckedChanged); // // chkGeneralSoftwareGainCorr // this.chkGeneralSoftwareGainCorr.Image = null; this.chkGeneralSoftwareGainCorr.Location = new System.Drawing.Point(16, 72); this.chkGeneralSoftwareGainCorr.Name = "chkGeneralSoftwareGainCorr"; this.chkGeneralSoftwareGainCorr.Size = new System.Drawing.Size(112, 32); this.chkGeneralSoftwareGainCorr.TabIndex = 6; this.chkGeneralSoftwareGainCorr.Text = "Disable Software Gain Correction"; this.toolTip1.SetToolTip(this.chkGeneralSoftwareGainCorr, "Don\'t compensate in software for hardware gain or attenuation."); this.chkGeneralSoftwareGainCorr.CheckedChanged += new System.EventHandler(this.chkGeneralSoftwareGainCorr_CheckedChanged); // // chkGeneralDisablePTT // this.chkGeneralDisablePTT.Image = null; this.chkGeneralDisablePTT.Location = new System.Drawing.Point(16, 48); this.chkGeneralDisablePTT.Name = "chkGeneralDisablePTT"; this.chkGeneralDisablePTT.TabIndex = 4; this.chkGeneralDisablePTT.Text = "Disable PTT"; this.toolTip1.SetToolTip(this.chkGeneralDisablePTT, "Disable Push To Talk detection."); this.chkGeneralDisablePTT.CheckedChanged += new System.EventHandler(this.chkGeneralDisablePTT_CheckedChanged); // // chkGeneralSpurRed // this.chkGeneralSpurRed.Checked = true; this.chkGeneralSpurRed.CheckState = System.Windows.Forms.CheckState.Checked; this.chkGeneralSpurRed.Image = null; this.chkGeneralSpurRed.Location = new System.Drawing.Point(16, 24); this.chkGeneralSpurRed.Name = "chkGeneralSpurRed"; this.chkGeneralSpurRed.TabIndex = 3; this.chkGeneralSpurRed.Text = "Spur Reduction"; this.toolTip1.SetToolTip(this.chkGeneralSpurRed, "Enable Spur Reduction/Avoidance Routine"); this.chkGeneralSpurRed.CheckedChanged += new System.EventHandler(this.chkGeneralSpurRed_CheckedChanged); // // grpGeneralProcessPriority // this.grpGeneralProcessPriority.Controls.Add(this.comboGeneralProcessPriority); this.grpGeneralProcessPriority.Location = new System.Drawing.Point(264, 8); this.grpGeneralProcessPriority.Name = "grpGeneralProcessPriority"; this.grpGeneralProcessPriority.Size = new System.Drawing.Size(144, 56); this.grpGeneralProcessPriority.TabIndex = 23; this.grpGeneralProcessPriority.TabStop = false; this.grpGeneralProcessPriority.Text = "Process Priority"; // // comboGeneralProcessPriority // this.comboGeneralProcessPriority.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboGeneralProcessPriority.DropDownWidth = 112; this.comboGeneralProcessPriority.Items.AddRange(new object[] { "Idle", "Below Normal", "Normal", "Above Normal", "High", "Real Time"}); this.comboGeneralProcessPriority.Location = new System.Drawing.Point(16, 24); this.comboGeneralProcessPriority.Name = "comboGeneralProcessPriority"; this.comboGeneralProcessPriority.Size = new System.Drawing.Size(112, 21); this.comboGeneralProcessPriority.TabIndex = 0; this.toolTip1.SetToolTip(this.comboGeneralProcessPriority, "Sets the process priority of the PowerSDR software."); this.comboGeneralProcessPriority.SelectedIndexChanged += new System.EventHandler(this.comboGeneralProcessPriority_SelectedIndexChanged); // // grpGeneralUpdates // this.grpGeneralUpdates.Controls.Add(this.chkGeneralUpdateBeta); this.grpGeneralUpdates.Controls.Add(this.chkGeneralUpdateRelease); this.grpGeneralUpdates.Location = new System.Drawing.Point(416, 8); this.grpGeneralUpdates.Name = "grpGeneralUpdates"; this.grpGeneralUpdates.Size = new System.Drawing.Size(120, 72); this.grpGeneralUpdates.TabIndex = 24; this.grpGeneralUpdates.TabStop = false; this.grpGeneralUpdates.Text = "Update Notification"; this.grpGeneralUpdates.Visible = false; // // chkGeneralUpdateBeta // this.chkGeneralUpdateBeta.Checked = true; this.chkGeneralUpdateBeta.CheckState = System.Windows.Forms.CheckState.Checked; this.chkGeneralUpdateBeta.Image = null; this.chkGeneralUpdateBeta.Location = new System.Drawing.Point(16, 48); this.chkGeneralUpdateBeta.Name = "chkGeneralUpdateBeta"; this.chkGeneralUpdateBeta.Size = new System.Drawing.Size(56, 16); this.chkGeneralUpdateBeta.TabIndex = 1; this.chkGeneralUpdateBeta.Text = "Beta"; this.toolTip1.SetToolTip(this.chkGeneralUpdateBeta, "Check this box to enable the PowerSDR software to look at the FlexRadio website a" + "nd see if there are any new Beta Releases"); this.chkGeneralUpdateBeta.CheckedChanged += new System.EventHandler(this.chkGeneralUpdateBeta_CheckedChanged); // // chkGeneralUpdateRelease // this.chkGeneralUpdateRelease.Checked = true; this.chkGeneralUpdateRelease.CheckState = System.Windows.Forms.CheckState.Checked; this.chkGeneralUpdateRelease.Image = null; this.chkGeneralUpdateRelease.Location = new System.Drawing.Point(16, 24); this.chkGeneralUpdateRelease.Name = "chkGeneralUpdateRelease"; this.chkGeneralUpdateRelease.Size = new System.Drawing.Size(72, 16); this.chkGeneralUpdateRelease.TabIndex = 0; this.chkGeneralUpdateRelease.Text = "Release"; this.toolTip1.SetToolTip(this.chkGeneralUpdateRelease, "Check this box to enable the PowerSDR software to look at the FlexRadio website a" + "nd see if there are any new Official Releases"); this.chkGeneralUpdateRelease.CheckedChanged += new System.EventHandler(this.chkGeneralUpdateRelease_CheckedChanged); // // tpExtIO // this.tpExtIO.Controls.Add(this.grpExtIOPMSDR); this.tpExtIO.Location = new System.Drawing.Point(4, 22); this.tpExtIO.Name = "tpExtIO"; this.tpExtIO.Size = new System.Drawing.Size(592, 318); this.tpExtIO.TabIndex = 5; this.tpExtIO.Text = "ExtIO"; // // grpExtIOPMSDR // this.grpExtIOPMSDR.Controls.Add(this.chkGeneralPMSDREnable); this.grpExtIOPMSDR.Controls.Add(this.btnPMSDRToolBox); this.grpExtIOPMSDR.Location = new System.Drawing.Point(7, 7); this.grpExtIOPMSDR.Name = "grpExtIOPMSDR"; this.grpExtIOPMSDR.Size = new System.Drawing.Size(128, 88); this.grpExtIOPMSDR.TabIndex = 25; this.grpExtIOPMSDR.TabStop = false; this.grpExtIOPMSDR.Text = "PM-SDR Options"; // // chkGeneralPMSDREnable // this.chkGeneralPMSDREnable.Image = null; this.chkGeneralPMSDREnable.Location = new System.Drawing.Point(8, 24); this.chkGeneralPMSDREnable.Name = "chkGeneralPMSDREnable"; this.chkGeneralPMSDREnable.Size = new System.Drawing.Size(112, 15); this.chkGeneralPMSDREnable.TabIndex = 12; this.chkGeneralPMSDREnable.Text = "PM-SDR Enable"; this.toolTip1.SetToolTip(this.chkGeneralPMSDREnable, "Enable PM-SDR hardware"); this.chkGeneralPMSDREnable.CheckedChanged += new System.EventHandler(this.chkGeneralPMSDREnable_CheckedChanged); // // btnPMSDRToolBox // this.btnPMSDRToolBox.Image = null; this.btnPMSDRToolBox.Location = new System.Drawing.Point(24, 48); this.btnPMSDRToolBox.Name = "btnPMSDRToolBox"; this.btnPMSDRToolBox.TabIndex = 23; this.btnPMSDRToolBox.Text = "ToolBox"; this.toolTip1.SetToolTip(this.btnPMSDRToolBox, "Show PM-SDR ToolBox"); this.btnPMSDRToolBox.Click += new System.EventHandler(this.btnPMSDRToolBox_Click); // // tpBPFLPF // this.tpBPFLPF.Controls.Add(this.labelTS38); this.tpBPFLPF.Controls.Add(this.ud6mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud6mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS39); this.tpBPFLPF.Controls.Add(this.ud10mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud10mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS40); this.tpBPFLPF.Controls.Add(this.ud12mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud12mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS34); this.tpBPFLPF.Controls.Add(this.ud15mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud15mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS35); this.tpBPFLPF.Controls.Add(this.ud17mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud17mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS36); this.tpBPFLPF.Controls.Add(this.ud20mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud20mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS37); this.tpBPFLPF.Controls.Add(this.ud30mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud30mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS32); this.tpBPFLPF.Controls.Add(this.ud40mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud40mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS33); this.tpBPFLPF.Controls.Add(this.ud60mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud60mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS31); this.tpBPFLPF.Controls.Add(this.ud80mLPFEnd); this.tpBPFLPF.Controls.Add(this.ud80mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS30); this.tpBPFLPF.Controls.Add(this.ud160mLPFEnd); this.tpBPFLPF.Controls.Add(this.labelTS29); this.tpBPFLPF.Controls.Add(this.labelTS28); this.tpBPFLPF.Controls.Add(this.ud160mLPFStart); this.tpBPFLPF.Controls.Add(this.labelTS27); this.tpBPFLPF.Controls.Add(this.labelTS16); this.tpBPFLPF.Controls.Add(this.ud6m); this.tpBPFLPF.Controls.Add(this.ud10m); this.tpBPFLPF.Controls.Add(this.ud12m); this.tpBPFLPF.Controls.Add(this.ud15m); this.tpBPFLPF.Controls.Add(this.ud17m); this.tpBPFLPF.Controls.Add(this.ud20m); this.tpBPFLPF.Controls.Add(this.ud30m); this.tpBPFLPF.Controls.Add(this.ud40m); this.tpBPFLPF.Controls.Add(this.ud60m); this.tpBPFLPF.Controls.Add(this.ud80m); this.tpBPFLPF.Controls.Add(this.ud160m); this.tpBPFLPF.Controls.Add(this.labelTS15); this.tpBPFLPF.Controls.Add(this.labelTS14); this.tpBPFLPF.Controls.Add(this.labelTS13); this.tpBPFLPF.Controls.Add(this.labelTS12); this.tpBPFLPF.Controls.Add(this.labelTS11); this.tpBPFLPF.Controls.Add(this.labelTS10); this.tpBPFLPF.Controls.Add(this.labelTS9); this.tpBPFLPF.Controls.Add(this.labelTS8); this.tpBPFLPF.Controls.Add(this.labelTS7); this.tpBPFLPF.Controls.Add(this.labelTS6); this.tpBPFLPF.Controls.Add(this.labelTS5); this.tpBPFLPF.Location = new System.Drawing.Point(4, 22); this.tpBPFLPF.Name = "tpBPFLPF"; this.tpBPFLPF.Size = new System.Drawing.Size(592, 318); this.tpBPFLPF.TabIndex = 7; this.tpBPFLPF.Text = "BPF/LPF"; // // labelTS38 // this.labelTS38.Image = null; this.labelTS38.Location = new System.Drawing.Point(293, 243); this.labelTS38.Name = "labelTS38"; this.labelTS38.Size = new System.Drawing.Size(27, 15); this.labelTS38.TabIndex = 93; this.labelTS38.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS38, "LPF HW Line selection"); // // ud6mLPFEnd // this.ud6mLPFEnd.DecimalPlaces = 1; this.ud6mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud6mLPFEnd.Location = new System.Drawing.Point(327, 243); this.ud6mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud6mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud6mLPFEnd.Name = "ud6mLPFEnd"; this.ud6mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud6mLPFEnd.TabIndex = 92; this.toolTip1.SetToolTip(this.ud6mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud6mLPFEnd.Value = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud6mLPFEnd.ValueChanged += new System.EventHandler(this.ud6mLPFEnd_ValueChanged); // // ud6mLPFStart // this.ud6mLPFStart.DecimalPlaces = 1; this.ud6mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud6mLPFStart.Location = new System.Drawing.Point(253, 243); this.ud6mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud6mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud6mLPFStart.Name = "ud6mLPFStart"; this.ud6mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud6mLPFStart.TabIndex = 91; this.toolTip1.SetToolTip(this.ud6mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud6mLPFStart.Value = new System.Decimal(new int[] { 50, 0, 0, 0}); // // labelTS39 // this.labelTS39.Image = null; this.labelTS39.Location = new System.Drawing.Point(293, 222); this.labelTS39.Name = "labelTS39"; this.labelTS39.Size = new System.Drawing.Size(27, 15); this.labelTS39.TabIndex = 90; this.labelTS39.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS39, "LPF HW Line selection"); // // ud10mLPFEnd // this.ud10mLPFEnd.DecimalPlaces = 1; this.ud10mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud10mLPFEnd.Location = new System.Drawing.Point(327, 222); this.ud10mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud10mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud10mLPFEnd.Name = "ud10mLPFEnd"; this.ud10mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud10mLPFEnd.TabIndex = 89; this.toolTip1.SetToolTip(this.ud10mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud10mLPFEnd.Value = new System.Decimal(new int[] { 30, 0, 0, 0}); this.ud10mLPFEnd.ValueChanged += new System.EventHandler(this.ud10mLPFEnd_ValueChanged); // // ud10mLPFStart // this.ud10mLPFStart.DecimalPlaces = 1; this.ud10mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud10mLPFStart.Location = new System.Drawing.Point(253, 222); this.ud10mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud10mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud10mLPFStart.Name = "ud10mLPFStart"; this.ud10mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud10mLPFStart.TabIndex = 88; this.toolTip1.SetToolTip(this.ud10mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud10mLPFStart.Value = new System.Decimal(new int[] { 28, 0, 0, 0}); // // labelTS40 // this.labelTS40.Image = null; this.labelTS40.Location = new System.Drawing.Point(293, 201); this.labelTS40.Name = "labelTS40"; this.labelTS40.Size = new System.Drawing.Size(27, 16); this.labelTS40.TabIndex = 87; this.labelTS40.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS40, "LPF HW Line selection"); // // ud12mLPFEnd // this.ud12mLPFEnd.DecimalPlaces = 1; this.ud12mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud12mLPFEnd.Location = new System.Drawing.Point(327, 201); this.ud12mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud12mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud12mLPFEnd.Name = "ud12mLPFEnd"; this.ud12mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud12mLPFEnd.TabIndex = 86; this.toolTip1.SetToolTip(this.ud12mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud12mLPFEnd.Value = new System.Decimal(new int[] { 25, 0, 0, 0}); this.ud12mLPFEnd.ValueChanged += new System.EventHandler(this.ud12mLPFEnd_ValueChanged); // // ud12mLPFStart // this.ud12mLPFStart.DecimalPlaces = 1; this.ud12mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud12mLPFStart.Location = new System.Drawing.Point(253, 201); this.ud12mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud12mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud12mLPFStart.Name = "ud12mLPFStart"; this.ud12mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud12mLPFStart.TabIndex = 85; this.toolTip1.SetToolTip(this.ud12mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud12mLPFStart.Value = new System.Decimal(new int[] { 24, 0, 0, 0}); // // labelTS34 // this.labelTS34.Image = null; this.labelTS34.Location = new System.Drawing.Point(293, 180); this.labelTS34.Name = "labelTS34"; this.labelTS34.Size = new System.Drawing.Size(27, 16); this.labelTS34.TabIndex = 84; this.labelTS34.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS34, "LPF HW Line selection"); // // ud15mLPFEnd // this.ud15mLPFEnd.DecimalPlaces = 1; this.ud15mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud15mLPFEnd.Location = new System.Drawing.Point(327, 180); this.ud15mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud15mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud15mLPFEnd.Name = "ud15mLPFEnd"; this.ud15mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud15mLPFEnd.TabIndex = 83; this.toolTip1.SetToolTip(this.ud15mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud15mLPFEnd.Value = new System.Decimal(new int[] { 215, 0, 0, 65536}); this.ud15mLPFEnd.ValueChanged += new System.EventHandler(this.ud15mLPFEnd_ValueChanged); // // ud15mLPFStart // this.ud15mLPFStart.DecimalPlaces = 1; this.ud15mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud15mLPFStart.Location = new System.Drawing.Point(253, 180); this.ud15mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud15mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud15mLPFStart.Name = "ud15mLPFStart"; this.ud15mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud15mLPFStart.TabIndex = 82; this.toolTip1.SetToolTip(this.ud15mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud15mLPFStart.Value = new System.Decimal(new int[] { 21, 0, 0, 0}); // // labelTS35 // this.labelTS35.Image = null; this.labelTS35.Location = new System.Drawing.Point(293, 159); this.labelTS35.Name = "labelTS35"; this.labelTS35.Size = new System.Drawing.Size(27, 16); this.labelTS35.TabIndex = 81; this.labelTS35.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS35, "LPF HW Line selection"); // // ud17mLPFEnd // this.ud17mLPFEnd.DecimalPlaces = 1; this.ud17mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud17mLPFEnd.Location = new System.Drawing.Point(327, 159); this.ud17mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud17mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud17mLPFEnd.Name = "ud17mLPFEnd"; this.ud17mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud17mLPFEnd.TabIndex = 80; this.toolTip1.SetToolTip(this.ud17mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud17mLPFEnd.Value = new System.Decimal(new int[] { 19, 0, 0, 0}); this.ud17mLPFEnd.ValueChanged += new System.EventHandler(this.ud17mLPFEnd_ValueChanged); // // ud17mLPFStart // this.ud17mLPFStart.DecimalPlaces = 1; this.ud17mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud17mLPFStart.Location = new System.Drawing.Point(253, 159); this.ud17mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud17mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud17mLPFStart.Name = "ud17mLPFStart"; this.ud17mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud17mLPFStart.TabIndex = 79; this.toolTip1.SetToolTip(this.ud17mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud17mLPFStart.Value = new System.Decimal(new int[] { 18, 0, 0, 0}); // // labelTS36 // this.labelTS36.Image = null; this.labelTS36.Location = new System.Drawing.Point(293, 139); this.labelTS36.Name = "labelTS36"; this.labelTS36.Size = new System.Drawing.Size(27, 15); this.labelTS36.TabIndex = 78; this.labelTS36.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS36, "LPF HW Line selection"); // // ud20mLPFEnd // this.ud20mLPFEnd.DecimalPlaces = 1; this.ud20mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud20mLPFEnd.Location = new System.Drawing.Point(327, 139); this.ud20mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud20mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud20mLPFEnd.Name = "ud20mLPFEnd"; this.ud20mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud20mLPFEnd.TabIndex = 77; this.toolTip1.SetToolTip(this.ud20mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud20mLPFEnd.Value = new System.Decimal(new int[] { 144, 0, 0, 65536}); this.ud20mLPFEnd.ValueChanged += new System.EventHandler(this.ud20mLPFEnd_ValueChanged); // // ud20mLPFStart // this.ud20mLPFStart.DecimalPlaces = 1; this.ud20mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud20mLPFStart.Location = new System.Drawing.Point(253, 139); this.ud20mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud20mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud20mLPFStart.Name = "ud20mLPFStart"; this.ud20mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud20mLPFStart.TabIndex = 76; this.toolTip1.SetToolTip(this.ud20mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud20mLPFStart.Value = new System.Decimal(new int[] { 14, 0, 0, 0}); // // labelTS37 // this.labelTS37.Image = null; this.labelTS37.Location = new System.Drawing.Point(293, 118); this.labelTS37.Name = "labelTS37"; this.labelTS37.Size = new System.Drawing.Size(27, 15); this.labelTS37.TabIndex = 75; this.labelTS37.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS37, "LPF HW Line selection"); // // ud30mLPFEnd // this.ud30mLPFEnd.DecimalPlaces = 1; this.ud30mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud30mLPFEnd.Location = new System.Drawing.Point(327, 118); this.ud30mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud30mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud30mLPFEnd.Name = "ud30mLPFEnd"; this.ud30mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud30mLPFEnd.TabIndex = 74; this.toolTip1.SetToolTip(this.ud30mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud30mLPFEnd.Value = new System.Decimal(new int[] { 112, 0, 0, 65536}); this.ud30mLPFEnd.ValueChanged += new System.EventHandler(this.ud30mLPFEnd_ValueChanged); // // ud30mLPFStart // this.ud30mLPFStart.DecimalPlaces = 1; this.ud30mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud30mLPFStart.Location = new System.Drawing.Point(253, 118); this.ud30mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud30mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud30mLPFStart.Name = "ud30mLPFStart"; this.ud30mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud30mLPFStart.TabIndex = 73; this.toolTip1.SetToolTip(this.ud30mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud30mLPFStart.Value = new System.Decimal(new int[] { 11, 0, 0, 0}); // // labelTS32 // this.labelTS32.Image = null; this.labelTS32.Location = new System.Drawing.Point(293, 97); this.labelTS32.Name = "labelTS32"; this.labelTS32.Size = new System.Drawing.Size(27, 16); this.labelTS32.TabIndex = 72; this.labelTS32.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS32, "LPF HW Line selection"); // // ud40mLPFEnd // this.ud40mLPFEnd.DecimalPlaces = 1; this.ud40mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud40mLPFEnd.Location = new System.Drawing.Point(327, 97); this.ud40mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud40mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud40mLPFEnd.Name = "ud40mLPFEnd"; this.ud40mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud40mLPFEnd.TabIndex = 71; this.toolTip1.SetToolTip(this.ud40mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud40mLPFEnd.Value = new System.Decimal(new int[] { 8, 0, 0, 0}); this.ud40mLPFEnd.ValueChanged += new System.EventHandler(this.ud40mLPFEnd_ValueChanged); // // ud40mLPFStart // this.ud40mLPFStart.DecimalPlaces = 1; this.ud40mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud40mLPFStart.Location = new System.Drawing.Point(253, 97); this.ud40mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud40mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud40mLPFStart.Name = "ud40mLPFStart"; this.ud40mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud40mLPFStart.TabIndex = 70; this.toolTip1.SetToolTip(this.ud40mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud40mLPFStart.Value = new System.Decimal(new int[] { 7, 0, 0, 0}); // // labelTS33 // this.labelTS33.Image = null; this.labelTS33.Location = new System.Drawing.Point(293, 76); this.labelTS33.Name = "labelTS33"; this.labelTS33.Size = new System.Drawing.Size(27, 16); this.labelTS33.TabIndex = 69; this.labelTS33.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS33, "LPF HW Line selection"); // // ud60mLPFEnd // this.ud60mLPFEnd.DecimalPlaces = 1; this.ud60mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud60mLPFEnd.Location = new System.Drawing.Point(327, 76); this.ud60mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud60mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud60mLPFEnd.Name = "ud60mLPFEnd"; this.ud60mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud60mLPFEnd.TabIndex = 68; this.toolTip1.SetToolTip(this.ud60mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud60mLPFEnd.Value = new System.Decimal(new int[] { 6, 0, 0, 0}); this.ud60mLPFEnd.ValueChanged += new System.EventHandler(this.ud60mLPFEnd_ValueChanged); // // ud60mLPFStart // this.ud60mLPFStart.DecimalPlaces = 1; this.ud60mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud60mLPFStart.Location = new System.Drawing.Point(253, 76); this.ud60mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud60mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud60mLPFStart.Name = "ud60mLPFStart"; this.ud60mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud60mLPFStart.TabIndex = 67; this.toolTip1.SetToolTip(this.ud60mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud60mLPFStart.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); // // labelTS31 // this.labelTS31.Image = null; this.labelTS31.Location = new System.Drawing.Point(293, 55); this.labelTS31.Name = "labelTS31"; this.labelTS31.Size = new System.Drawing.Size(27, 16); this.labelTS31.TabIndex = 66; this.labelTS31.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS31, "LPF HW Line selection"); // // ud80mLPFEnd // this.ud80mLPFEnd.DecimalPlaces = 1; this.ud80mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud80mLPFEnd.Location = new System.Drawing.Point(327, 55); this.ud80mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud80mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud80mLPFEnd.Name = "ud80mLPFEnd"; this.ud80mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud80mLPFEnd.TabIndex = 65; this.toolTip1.SetToolTip(this.ud80mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud80mLPFEnd.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); this.ud80mLPFEnd.ValueChanged += new System.EventHandler(this.ud80mLPFEnd_ValueChanged); // // ud80mLPFStart // this.ud80mLPFStart.DecimalPlaces = 1; this.ud80mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud80mLPFStart.Location = new System.Drawing.Point(253, 55); this.ud80mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud80mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud80mLPFStart.Name = "ud80mLPFStart"; this.ud80mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud80mLPFStart.TabIndex = 64; this.toolTip1.SetToolTip(this.ud80mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud80mLPFStart.Value = new System.Decimal(new int[] { 35, 0, 0, 65536}); // // labelTS30 // this.labelTS30.Image = null; this.labelTS30.Location = new System.Drawing.Point(293, 35); this.labelTS30.Name = "labelTS30"; this.labelTS30.Size = new System.Drawing.Size(27, 15); this.labelTS30.TabIndex = 63; this.labelTS30.Text = "MHz"; this.toolTip1.SetToolTip(this.labelTS30, "LPF HW Line selection"); // // ud160mLPFEnd // this.ud160mLPFEnd.DecimalPlaces = 1; this.ud160mLPFEnd.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud160mLPFEnd.Location = new System.Drawing.Point(327, 35); this.ud160mLPFEnd.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud160mLPFEnd.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud160mLPFEnd.Name = "ud160mLPFEnd"; this.ud160mLPFEnd.Size = new System.Drawing.Size(40, 20); this.ud160mLPFEnd.TabIndex = 62; this.toolTip1.SetToolTip(this.ud160mLPFEnd, "Delay to compensate for longer Parallel cables."); this.ud160mLPFEnd.Value = new System.Decimal(new int[] { 2, 0, 0, 0}); this.ud160mLPFEnd.ValueChanged += new System.EventHandler(this.ud160mLPFEnd_ValueChanged); // // labelTS29 // this.labelTS29.Image = null; this.labelTS29.Location = new System.Drawing.Point(313, 14); this.labelTS29.Name = "labelTS29"; this.labelTS29.Size = new System.Drawing.Size(60, 15); this.labelTS29.TabIndex = 61; this.labelTS29.Text = "Freq. End"; this.toolTip1.SetToolTip(this.labelTS29, "LPF HW Line selection"); // // labelTS28 // this.labelTS28.Image = null; this.labelTS28.Location = new System.Drawing.Point(240, 14); this.labelTS28.Name = "labelTS28"; this.labelTS28.Size = new System.Drawing.Size(60, 15); this.labelTS28.TabIndex = 60; this.labelTS28.Text = "Freq. Start"; this.toolTip1.SetToolTip(this.labelTS28, "LPF HW Line selection"); // // ud160mLPFStart // this.ud160mLPFStart.DecimalPlaces = 1; this.ud160mLPFStart.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.ud160mLPFStart.Location = new System.Drawing.Point(253, 35); this.ud160mLPFStart.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud160mLPFStart.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud160mLPFStart.Name = "ud160mLPFStart"; this.ud160mLPFStart.Size = new System.Drawing.Size(40, 20); this.ud160mLPFStart.TabIndex = 59; this.toolTip1.SetToolTip(this.ud160mLPFStart, "Delay to compensate for longer Parallel cables."); this.ud160mLPFStart.Value = new System.Decimal(new int[] { 18, 0, 0, 65536}); // // labelTS27 // this.labelTS27.Image = null; this.labelTS27.Location = new System.Drawing.Point(180, 14); this.labelTS27.Name = "labelTS27"; this.labelTS27.Size = new System.Drawing.Size(47, 15); this.labelTS27.TabIndex = 58; this.labelTS27.Text = "Value"; this.toolTip1.SetToolTip(this.labelTS27, "LPF HW Line selection"); // // labelTS16 // this.labelTS16.Image = null; this.labelTS16.Location = new System.Drawing.Point(13, 14); this.labelTS16.Name = "labelTS16"; this.labelTS16.Size = new System.Drawing.Size(129, 15); this.labelTS16.TabIndex = 57; this.labelTS16.Text = "Band/LPF data bit Cntrl"; this.toolTip1.SetToolTip(this.labelTS16, "LPF HW Line selection"); // // ud6m // this.ud6m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud6m.Location = new System.Drawing.Point(180, 243); this.ud6m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud6m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud6m.Name = "ud6m"; this.ud6m.Size = new System.Drawing.Size(32, 20); this.ud6m.TabIndex = 56; this.toolTip1.SetToolTip(this.ud6m, "Delay to compensate for longer Parallel cables."); this.ud6m.Value = new System.Decimal(new int[] { 32, 0, 0, 0}); this.ud6m.ValueChanged += new System.EventHandler(this.ud6m_ValueChanged); // // ud10m // this.ud10m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud10m.Location = new System.Drawing.Point(180, 222); this.ud10m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud10m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud10m.Name = "ud10m"; this.ud10m.Size = new System.Drawing.Size(32, 20); this.ud10m.TabIndex = 55; this.toolTip1.SetToolTip(this.ud10m, "Delay to compensate for longer Parallel cables."); this.ud10m.Value = new System.Decimal(new int[] { 16, 0, 0, 0}); this.ud10m.ValueChanged += new System.EventHandler(this.ud10m_ValueChanged); // // ud12m // this.ud12m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud12m.Location = new System.Drawing.Point(180, 201); this.ud12m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud12m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud12m.Name = "ud12m"; this.ud12m.Size = new System.Drawing.Size(32, 20); this.ud12m.TabIndex = 54; this.toolTip1.SetToolTip(this.ud12m, "Delay to compensate for longer Parallel cables."); this.ud12m.Value = new System.Decimal(new int[] { 16, 0, 0, 0}); this.ud12m.ValueChanged += new System.EventHandler(this.ud12m_ValueChanged); // // ud15m // this.ud15m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud15m.Location = new System.Drawing.Point(180, 180); this.ud15m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud15m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud15m.Name = "ud15m"; this.ud15m.Size = new System.Drawing.Size(32, 20); this.ud15m.TabIndex = 53; this.toolTip1.SetToolTip(this.ud15m, "Delay to compensate for longer Parallel cables."); this.ud15m.Value = new System.Decimal(new int[] { 16, 0, 0, 0}); this.ud15m.ValueChanged += new System.EventHandler(this.ud15m_ValueChanged); // // ud17m // this.ud17m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud17m.Location = new System.Drawing.Point(180, 159); this.ud17m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud17m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud17m.Name = "ud17m"; this.ud17m.Size = new System.Drawing.Size(32, 20); this.ud17m.TabIndex = 52; this.toolTip1.SetToolTip(this.ud17m, "Delay to compensate for longer Parallel cables."); this.ud17m.Value = new System.Decimal(new int[] { 8, 0, 0, 0}); this.ud17m.ValueChanged += new System.EventHandler(this.ud17m_ValueChanged); // // ud20m // this.ud20m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud20m.Location = new System.Drawing.Point(180, 139); this.ud20m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud20m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud20m.Name = "ud20m"; this.ud20m.Size = new System.Drawing.Size(32, 20); this.ud20m.TabIndex = 51; this.toolTip1.SetToolTip(this.ud20m, "Delay to compensate for longer Parallel cables."); this.ud20m.Value = new System.Decimal(new int[] { 8, 0, 0, 0}); this.ud20m.ValueChanged += new System.EventHandler(this.ud20m_ValueChanged); // // ud30m // this.ud30m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud30m.Location = new System.Drawing.Point(180, 118); this.ud30m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud30m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud30m.Name = "ud30m"; this.ud30m.Size = new System.Drawing.Size(32, 20); this.ud30m.TabIndex = 50; this.toolTip1.SetToolTip(this.ud30m, "Delay to compensate for longer Parallel cables."); this.ud30m.Value = new System.Decimal(new int[] { 8, 0, 0, 0}); this.ud30m.ValueChanged += new System.EventHandler(this.ud30m_ValueChanged); // // ud40m // this.ud40m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud40m.Location = new System.Drawing.Point(180, 97); this.ud40m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud40m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud40m.Name = "ud40m"; this.ud40m.Size = new System.Drawing.Size(32, 20); this.ud40m.TabIndex = 49; this.toolTip1.SetToolTip(this.ud40m, "Delay to compensate for longer Parallel cables."); this.ud40m.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); this.ud40m.ValueChanged += new System.EventHandler(this.ud40m_ValueChanged); // // ud60m // this.ud60m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud60m.Location = new System.Drawing.Point(180, 76); this.ud60m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud60m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud60m.Name = "ud60m"; this.ud60m.Size = new System.Drawing.Size(32, 20); this.ud60m.TabIndex = 48; this.toolTip1.SetToolTip(this.ud60m, "Delay to compensate for longer Parallel cables."); this.ud60m.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); this.ud60m.ValueChanged += new System.EventHandler(this.ud60m_ValueChanged); // // ud80m // this.ud80m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud80m.Location = new System.Drawing.Point(180, 55); this.ud80m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud80m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud80m.Name = "ud80m"; this.ud80m.Size = new System.Drawing.Size(32, 20); this.ud80m.TabIndex = 47; this.toolTip1.SetToolTip(this.ud80m, "Delay to compensate for longer Parallel cables."); this.ud80m.Value = new System.Decimal(new int[] { 4, 0, 0, 0}); this.ud80m.ValueChanged += new System.EventHandler(this.ud80m_ValueChanged); // // ud160m // this.ud160m.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud160m.Location = new System.Drawing.Point(180, 35); this.ud160m.Maximum = new System.Decimal(new int[] { 63, 0, 0, 0}); this.ud160m.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.ud160m.Name = "ud160m"; this.ud160m.Size = new System.Drawing.Size(32, 20); this.ud160m.TabIndex = 46; this.toolTip1.SetToolTip(this.ud160m, "Delay to compensate for longer Parallel cables."); this.ud160m.Value = new System.Decimal(new int[] { 1, 0, 0, 0}); this.ud160m.ValueChanged += new System.EventHandler(this.ud160m_ValueChanged); // // labelTS15 // this.labelTS15.Image = null; this.labelTS15.Location = new System.Drawing.Point(153, 243); this.labelTS15.Name = "labelTS15"; this.labelTS15.Size = new System.Drawing.Size(24, 15); this.labelTS15.TabIndex = 45; this.labelTS15.Text = "6m"; // // labelTS14 // this.labelTS14.Image = null; this.labelTS14.Location = new System.Drawing.Point(147, 222); this.labelTS14.Name = "labelTS14"; this.labelTS14.Size = new System.Drawing.Size(31, 16); this.labelTS14.TabIndex = 44; this.labelTS14.Text = "10m"; // // labelTS13 // this.labelTS13.Image = null; this.labelTS13.Location = new System.Drawing.Point(147, 201); this.labelTS13.Name = "labelTS13"; this.labelTS13.Size = new System.Drawing.Size(31, 16); this.labelTS13.TabIndex = 43; this.labelTS13.Text = "12m"; // // labelTS12 // this.labelTS12.Image = null; this.labelTS12.Location = new System.Drawing.Point(147, 180); this.labelTS12.Name = "labelTS12"; this.labelTS12.Size = new System.Drawing.Size(31, 17); this.labelTS12.TabIndex = 42; this.labelTS12.Text = "15m"; // // labelTS11 // this.labelTS11.Image = null; this.labelTS11.Location = new System.Drawing.Point(147, 159); this.labelTS11.Name = "labelTS11"; this.labelTS11.Size = new System.Drawing.Size(31, 16); this.labelTS11.TabIndex = 41; this.labelTS11.Text = "17m"; // // labelTS10 // this.labelTS10.Image = null; this.labelTS10.Location = new System.Drawing.Point(147, 139); this.labelTS10.Name = "labelTS10"; this.labelTS10.Size = new System.Drawing.Size(31, 16); this.labelTS10.TabIndex = 40; this.labelTS10.Text = "20m"; // // labelTS9 // this.labelTS9.Image = null; this.labelTS9.Location = new System.Drawing.Point(147, 118); this.labelTS9.Name = "labelTS9"; this.labelTS9.Size = new System.Drawing.Size(31, 15); this.labelTS9.TabIndex = 39; this.labelTS9.Text = "30m"; // // labelTS8 // this.labelTS8.Image = null; this.labelTS8.Location = new System.Drawing.Point(147, 97); this.labelTS8.Name = "labelTS8"; this.labelTS8.Size = new System.Drawing.Size(31, 17); this.labelTS8.TabIndex = 38; this.labelTS8.Text = "40m"; // // labelTS7 // this.labelTS7.Image = null; this.labelTS7.Location = new System.Drawing.Point(147, 76); this.labelTS7.Name = "labelTS7"; this.labelTS7.Size = new System.Drawing.Size(31, 16); this.labelTS7.TabIndex = 37; this.labelTS7.Text = "60m"; // // labelTS6 // this.labelTS6.Image = null; this.labelTS6.Location = new System.Drawing.Point(147, 55); this.labelTS6.Name = "labelTS6"; this.labelTS6.Size = new System.Drawing.Size(31, 17); this.labelTS6.TabIndex = 36; this.labelTS6.Text = "80m"; // // labelTS5 // this.labelTS5.Image = null; this.labelTS5.Location = new System.Drawing.Point(147, 35); this.labelTS5.Name = "labelTS5"; this.labelTS5.Size = new System.Drawing.Size(31, 15); this.labelTS5.TabIndex = 35; this.labelTS5.Text = "160m"; // // tpSerial // this.tpSerial.Controls.Add(this.grpGeneralSerial); this.tpSerial.Location = new System.Drawing.Point(4, 22); this.tpSerial.Name = "tpSerial"; this.tpSerial.Size = new System.Drawing.Size(592, 318); this.tpSerial.TabIndex = 8; this.tpSerial.Text = "Serial"; // // grpGeneralSerial // this.grpGeneralSerial.Controls.Add(this.labelTS48); this.grpGeneralSerial.Controls.Add(this.udSerialDelay); this.grpGeneralSerial.Controls.Add(this.comboBoxTS1); this.grpGeneralSerial.Controls.Add(this.chkGeneralSerialBPFLPF); this.grpGeneralSerial.Controls.Add(this.labelTS41); this.grpGeneralSerial.Controls.Add(this.chkGeneralSerialVFO); this.grpGeneralSerial.Controls.Add(this.comboSerialRgstrsChar); this.grpGeneralSerial.Controls.Add(this.comboSerialLOChar); this.grpGeneralSerial.Controls.Add(this.comboSerialVFOChar); this.grpGeneralSerial.Controls.Add(this.chkGeneralSerialRgstrs); this.grpGeneralSerial.Controls.Add(this.chkGeneralSerialLO); this.grpGeneralSerial.Controls.Add(this.comboKeyerSerial_Si570); this.grpGeneralSerial.Controls.Add(this.labelTS26); this.grpGeneralSerial.Location = new System.Drawing.Point(13, 14); this.grpGeneralSerial.Name = "grpGeneralSerial"; this.grpGeneralSerial.Size = new System.Drawing.Size(220, 241); this.grpGeneralSerial.TabIndex = 29; this.grpGeneralSerial.TabStop = false; this.grpGeneralSerial.Text = "Serial Output"; // // labelTS48 // this.labelTS48.Image = null; this.labelTS48.Location = new System.Drawing.Point(16, 192); this.labelTS48.Name = "labelTS48"; this.labelTS48.Size = new System.Drawing.Size(80, 14); this.labelTS48.TabIndex = 58; this.labelTS48.Text = "Data Delay ms"; this.labelTS48.Visible = false; // // udSerialDelay // this.udSerialDelay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udSerialDelay.Location = new System.Drawing.Point(16, 208); this.udSerialDelay.Maximum = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udSerialDelay.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udSerialDelay.Name = "udSerialDelay"; this.udSerialDelay.Size = new System.Drawing.Size(64, 20); this.udSerialDelay.TabIndex = 57; this.toolTip1.SetToolTip(this.udSerialDelay, "Delay to compensate for longer Parallel cables."); this.udSerialDelay.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udSerialDelay.ValueChanged += new System.EventHandler(this.udSerialDelay_ValueChanged); // // comboBoxTS1 // this.comboBoxTS1.DisplayMember = "LPT"; this.comboBoxTS1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboBoxTS1.DropDownWidth = 64; this.comboBoxTS1.Items.AddRange(new object[] { "", "V", "F", "R", "B", "v", "f", "r", "b", ":", ";", ",", "."}); this.comboBoxTS1.Location = new System.Drawing.Point(167, 208); this.comboBoxTS1.Name = "comboBoxTS1"; this.comboBoxTS1.Size = new System.Drawing.Size(38, 21); this.comboBoxTS1.TabIndex = 50; this.toolTip1.SetToolTip(this.comboBoxTS1, "Sets Frequency and Si570 Register Output port"); this.comboBoxTS1.ValueMember = "LPT"; this.comboBoxTS1.Visible = false; // // chkGeneralSerialBPFLPF // this.chkGeneralSerialBPFLPF.Image = null; this.chkGeneralSerialBPFLPF.Location = new System.Drawing.Point(140, 187); this.chkGeneralSerialBPFLPF.Name = "chkGeneralSerialBPFLPF"; this.chkGeneralSerialBPFLPF.Size = new System.Drawing.Size(76, 20); this.chkGeneralSerialBPFLPF.TabIndex = 49; this.chkGeneralSerialBPFLPF.Text = "BPF/LPF"; this.chkGeneralSerialBPFLPF.Visible = false; // // labelTS41 // this.labelTS41.Image = null; this.labelTS41.Location = new System.Drawing.Point(133, 21); this.labelTS41.Name = "labelTS41"; this.labelTS41.Size = new System.Drawing.Size(54, 14); this.labelTS41.TabIndex = 48; this.labelTS41.Text = "ReadOut"; this.labelTS41.Visible = false; // // chkGeneralSerialVFO // this.chkGeneralSerialVFO.Image = null; this.chkGeneralSerialVFO.Location = new System.Drawing.Point(140, 42); this.chkGeneralSerialVFO.Name = "chkGeneralSerialVFO"; this.chkGeneralSerialVFO.Size = new System.Drawing.Size(55, 13); this.chkGeneralSerialVFO.TabIndex = 47; this.chkGeneralSerialVFO.Text = "VFO"; this.chkGeneralSerialVFO.CheckedChanged += new System.EventHandler(this.chkGeneralSerialVFO_CheckedChanged); // // comboSerialRgstrsChar // this.comboSerialRgstrsChar.DisplayMember = "LPT"; this.comboSerialRgstrsChar.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSerialRgstrsChar.DropDownWidth = 64; this.comboSerialRgstrsChar.Items.AddRange(new object[] { "", "V", "F", "R", "B", "v", "f", "r", "b", ":", ";", ",", "."}); this.comboSerialRgstrsChar.Location = new System.Drawing.Point(167, 159); this.comboSerialRgstrsChar.Name = "comboSerialRgstrsChar"; this.comboSerialRgstrsChar.Size = new System.Drawing.Size(38, 21); this.comboSerialRgstrsChar.TabIndex = 46; this.toolTip1.SetToolTip(this.comboSerialRgstrsChar, "Sets Frequency and Si570 Register Output port"); this.comboSerialRgstrsChar.ValueMember = "LPT"; this.comboSerialRgstrsChar.SelectedIndexChanged += new System.EventHandler(this.comboSerialRgstrsChar_SelectedIndexChanged); // // comboSerialLOChar // this.comboSerialLOChar.DisplayMember = "LPT"; this.comboSerialLOChar.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSerialLOChar.DropDownWidth = 64; this.comboSerialLOChar.Items.AddRange(new object[] { "", "V", "F", "R", "B", "v", "f", "r", "b", ":", ";", ",", "."}); this.comboSerialLOChar.Location = new System.Drawing.Point(167, 111); this.comboSerialLOChar.Name = "comboSerialLOChar"; this.comboSerialLOChar.Size = new System.Drawing.Size(38, 21); this.comboSerialLOChar.TabIndex = 45; this.toolTip1.SetToolTip(this.comboSerialLOChar, "Sets Frequency and Si570 Register Output port"); this.comboSerialLOChar.ValueMember = "LPT"; this.comboSerialLOChar.SelectedIndexChanged += new System.EventHandler(this.comboSerialLOChar_SelectedIndexChanged); // // comboSerialVFOChar // this.comboSerialVFOChar.DisplayMember = "LPT"; this.comboSerialVFOChar.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboSerialVFOChar.DropDownWidth = 64; this.comboSerialVFOChar.Items.AddRange(new object[] { "", "V", "F", "R", "B", "v", "f", "r", "b", ":", ";", ",", "."}); this.comboSerialVFOChar.Location = new System.Drawing.Point(167, 62); this.comboSerialVFOChar.Name = "comboSerialVFOChar"; this.comboSerialVFOChar.Size = new System.Drawing.Size(38, 21); this.comboSerialVFOChar.TabIndex = 44; this.toolTip1.SetToolTip(this.comboSerialVFOChar, "Sets Frequency and Si570 Register Output port"); this.comboSerialVFOChar.ValueMember = "LPT"; this.comboSerialVFOChar.SelectedIndexChanged += new System.EventHandler(this.comboSerialVFOChar_SelectedIndexChanged); // // chkGeneralSerialRgstrs // this.chkGeneralSerialRgstrs.Image = null; this.chkGeneralSerialRgstrs.Location = new System.Drawing.Point(140, 139); this.chkGeneralSerialRgstrs.Name = "chkGeneralSerialRgstrs"; this.chkGeneralSerialRgstrs.Size = new System.Drawing.Size(57, 20); this.chkGeneralSerialRgstrs.TabIndex = 43; this.chkGeneralSerialRgstrs.Text = "Rgstrs"; this.chkGeneralSerialRgstrs.CheckedChanged += new System.EventHandler(this.chkGeneralSerialRgstrs_CheckedChanged); // // chkGeneralSerialLO // this.chkGeneralSerialLO.Image = null; this.chkGeneralSerialLO.Location = new System.Drawing.Point(140, 90); this.chkGeneralSerialLO.Name = "chkGeneralSerialLO"; this.chkGeneralSerialLO.Size = new System.Drawing.Size(55, 14); this.chkGeneralSerialLO.TabIndex = 42; this.chkGeneralSerialLO.Text = "LO"; this.chkGeneralSerialLO.CheckedChanged += new System.EventHandler(this.chkGeneralSerialLO_CheckedChanged); // // comboKeyerSerial_Si570 // this.comboKeyerSerial_Si570.DisplayMember = "LPT"; this.comboKeyerSerial_Si570.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerSerial_Si570.DropDownWidth = 64; this.comboKeyerSerial_Si570.Items.AddRange(new object[] { "5000"}); this.comboKeyerSerial_Si570.Location = new System.Drawing.Point(7, 49); this.comboKeyerSerial_Si570.Name = "comboKeyerSerial_Si570"; this.comboKeyerSerial_Si570.Size = new System.Drawing.Size(64, 21); this.comboKeyerSerial_Si570.TabIndex = 41; this.toolTip1.SetToolTip(this.comboKeyerSerial_Si570, "Sets Frequency and Si570 Register Output port"); this.comboKeyerSerial_Si570.ValueMember = "LPT"; this.comboKeyerSerial_Si570.SelectedIndexChanged += new System.EventHandler(this.comboKeyerSerial_Si570_SelectedIndexChanged); // // labelTS26 // this.labelTS26.Image = null; this.labelTS26.Location = new System.Drawing.Point(7, 28); this.labelTS26.Name = "labelTS26"; this.labelTS26.Size = new System.Drawing.Size(53, 14); this.labelTS26.TabIndex = 15; this.labelTS26.Text = "Port"; this.labelTS26.Visible = false; // // tpExtCtrl // this.tpExtCtrl.Controls.Add(this.chkExtEnable); this.tpExtCtrl.Controls.Add(this.grpExtTX); this.tpExtCtrl.Controls.Add(this.grpExtRX); this.tpExtCtrl.Location = new System.Drawing.Point(4, 22); this.tpExtCtrl.Name = "tpExtCtrl"; this.tpExtCtrl.Size = new System.Drawing.Size(584, 286); this.tpExtCtrl.TabIndex = 11; this.tpExtCtrl.Text = "Ext. Ctrl"; // // chkExtEnable // this.chkExtEnable.Image = null; this.chkExtEnable.Location = new System.Drawing.Point(360, 16); this.chkExtEnable.Name = "chkExtEnable"; this.chkExtEnable.Size = new System.Drawing.Size(64, 24); this.chkExtEnable.TabIndex = 9; this.chkExtEnable.Text = "Enable"; this.toolTip1.SetToolTip(this.chkExtEnable, "Check this box to enable the matrix to the left to control the X2 pins."); this.chkExtEnable.CheckedChanged += new System.EventHandler(this.chkExtEnable_CheckedChanged); // // grpExtTX // this.grpExtTX.Controls.Add(this.lblExtTXX26); this.grpExtTX.Controls.Add(this.chkExtTX26); this.grpExtTX.Controls.Add(this.chkExtTX66); this.grpExtTX.Controls.Add(this.chkExtTX106); this.grpExtTX.Controls.Add(this.chkExtTX126); this.grpExtTX.Controls.Add(this.chkExtTX156); this.grpExtTX.Controls.Add(this.chkExtTX176); this.grpExtTX.Controls.Add(this.chkExtTX206); this.grpExtTX.Controls.Add(this.chkExtTX306); this.grpExtTX.Controls.Add(this.chkExtTX406); this.grpExtTX.Controls.Add(this.chkExtTX606); this.grpExtTX.Controls.Add(this.chkExtTX806); this.grpExtTX.Controls.Add(this.chkExtTX1606); this.grpExtTX.Controls.Add(this.lblExtTXX25); this.grpExtTX.Controls.Add(this.lblExtTXX24); this.grpExtTX.Controls.Add(this.lblExtTXX23); this.grpExtTX.Controls.Add(this.lblExtTXX22); this.grpExtTX.Controls.Add(this.lblExtTX2); this.grpExtTX.Controls.Add(this.chkExtTX23); this.grpExtTX.Controls.Add(this.chkExtTX22); this.grpExtTX.Controls.Add(this.chkExtTX21); this.grpExtTX.Controls.Add(this.chkExtTX25); this.grpExtTX.Controls.Add(this.chkExtTX24); this.grpExtTX.Controls.Add(this.lblExtTX6); this.grpExtTX.Controls.Add(this.chkExtTX63); this.grpExtTX.Controls.Add(this.chkExtTX62); this.grpExtTX.Controls.Add(this.chkExtTX61); this.grpExtTX.Controls.Add(this.chkExtTX65); this.grpExtTX.Controls.Add(this.chkExtTX64); this.grpExtTX.Controls.Add(this.lblExtTX10); this.grpExtTX.Controls.Add(this.chkExtTX103); this.grpExtTX.Controls.Add(this.chkExtTX102); this.grpExtTX.Controls.Add(this.chkExtTX101); this.grpExtTX.Controls.Add(this.chkExtTX105); this.grpExtTX.Controls.Add(this.chkExtTX104); this.grpExtTX.Controls.Add(this.lblExtTX12); this.grpExtTX.Controls.Add(this.chkExtTX123); this.grpExtTX.Controls.Add(this.chkExtTX122); this.grpExtTX.Controls.Add(this.chkExtTX121); this.grpExtTX.Controls.Add(this.chkExtTX125); this.grpExtTX.Controls.Add(this.chkExtTX124); this.grpExtTX.Controls.Add(this.lblExtTX15); this.grpExtTX.Controls.Add(this.chkExtTX153); this.grpExtTX.Controls.Add(this.chkExtTX152); this.grpExtTX.Controls.Add(this.chkExtTX151); this.grpExtTX.Controls.Add(this.chkExtTX155); this.grpExtTX.Controls.Add(this.chkExtTX154); this.grpExtTX.Controls.Add(this.lblExtTX17); this.grpExtTX.Controls.Add(this.chkExtTX173); this.grpExtTX.Controls.Add(this.chkExtTX172); this.grpExtTX.Controls.Add(this.chkExtTX171); this.grpExtTX.Controls.Add(this.chkExtTX175); this.grpExtTX.Controls.Add(this.chkExtTX174); this.grpExtTX.Controls.Add(this.lblExtTX20); this.grpExtTX.Controls.Add(this.chkExtTX203); this.grpExtTX.Controls.Add(this.chkExtTX202); this.grpExtTX.Controls.Add(this.chkExtTX201); this.grpExtTX.Controls.Add(this.chkExtTX205); this.grpExtTX.Controls.Add(this.chkExtTX204); this.grpExtTX.Controls.Add(this.lblExtTX30); this.grpExtTX.Controls.Add(this.chkExtTX303); this.grpExtTX.Controls.Add(this.chkExtTX302); this.grpExtTX.Controls.Add(this.chkExtTX301); this.grpExtTX.Controls.Add(this.chkExtTX305); this.grpExtTX.Controls.Add(this.chkExtTX304); this.grpExtTX.Controls.Add(this.lblExtTX40); this.grpExtTX.Controls.Add(this.chkExtTX403); this.grpExtTX.Controls.Add(this.chkExtTX402); this.grpExtTX.Controls.Add(this.chkExtTX401); this.grpExtTX.Controls.Add(this.chkExtTX405); this.grpExtTX.Controls.Add(this.chkExtTX404); this.grpExtTX.Controls.Add(this.lblExtTX60); this.grpExtTX.Controls.Add(this.chkExtTX603); this.grpExtTX.Controls.Add(this.chkExtTX602); this.grpExtTX.Controls.Add(this.chkExtTX601); this.grpExtTX.Controls.Add(this.chkExtTX605); this.grpExtTX.Controls.Add(this.chkExtTX604); this.grpExtTX.Controls.Add(this.lblExtTX80); this.grpExtTX.Controls.Add(this.chkExtTX803); this.grpExtTX.Controls.Add(this.chkExtTX802); this.grpExtTX.Controls.Add(this.chkExtTX801); this.grpExtTX.Controls.Add(this.chkExtTX805); this.grpExtTX.Controls.Add(this.chkExtTX804); this.grpExtTX.Controls.Add(this.lblExtTXX2Pins); this.grpExtTX.Controls.Add(this.lblExtTXBand); this.grpExtTX.Controls.Add(this.lblExtTX160); this.grpExtTX.Controls.Add(this.chkExtTX1603); this.grpExtTX.Controls.Add(this.chkExtTX1602); this.grpExtTX.Controls.Add(this.chkExtTX1601); this.grpExtTX.Controls.Add(this.lblExtTXX21); this.grpExtTX.Controls.Add(this.chkExtTX1605); this.grpExtTX.Controls.Add(this.chkExtTX1604); this.grpExtTX.Enabled = false; this.grpExtTX.Location = new System.Drawing.Point(184, 8); this.grpExtTX.Name = "grpExtTX"; this.grpExtTX.Size = new System.Drawing.Size(168, 264); this.grpExtTX.TabIndex = 8; this.grpExtTX.TabStop = false; this.grpExtTX.Text = "Transmit"; // // lblExtTXX26 // this.lblExtTXX26.Image = null; this.lblExtTXX26.Location = new System.Drawing.Point(144, 40); this.lblExtTXX26.Name = "lblExtTXX26"; this.lblExtTXX26.Size = new System.Drawing.Size(16, 16); this.lblExtTXX26.TabIndex = 171; this.lblExtTXX26.Text = "6"; this.lblExtTXX26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtTX26 // this.chkExtTX26.Image = null; this.chkExtTX26.Location = new System.Drawing.Point(144, 240); this.chkExtTX26.Name = "chkExtTX26"; this.chkExtTX26.Size = new System.Drawing.Size(16, 16); this.chkExtTX26.TabIndex = 170; this.chkExtTX26.Text = "checkBox5"; this.chkExtTX26.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX66 // this.chkExtTX66.Image = null; this.chkExtTX66.Location = new System.Drawing.Point(144, 224); this.chkExtTX66.Name = "chkExtTX66"; this.chkExtTX66.Size = new System.Drawing.Size(16, 16); this.chkExtTX66.TabIndex = 169; this.chkExtTX66.Text = "checkBox5"; this.chkExtTX66.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX106 // this.chkExtTX106.Image = null; this.chkExtTX106.Location = new System.Drawing.Point(144, 208); this.chkExtTX106.Name = "chkExtTX106"; this.chkExtTX106.Size = new System.Drawing.Size(16, 16); this.chkExtTX106.TabIndex = 168; this.chkExtTX106.Text = "checkBox5"; this.chkExtTX106.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX126 // this.chkExtTX126.Image = null; this.chkExtTX126.Location = new System.Drawing.Point(144, 192); this.chkExtTX126.Name = "chkExtTX126"; this.chkExtTX126.Size = new System.Drawing.Size(16, 16); this.chkExtTX126.TabIndex = 167; this.chkExtTX126.Text = "checkBox5"; this.chkExtTX126.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX156 // this.chkExtTX156.Image = null; this.chkExtTX156.Location = new System.Drawing.Point(144, 176); this.chkExtTX156.Name = "chkExtTX156"; this.chkExtTX156.Size = new System.Drawing.Size(16, 16); this.chkExtTX156.TabIndex = 166; this.chkExtTX156.Text = "checkBox5"; this.chkExtTX156.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX176 // this.chkExtTX176.Image = null; this.chkExtTX176.Location = new System.Drawing.Point(144, 160); this.chkExtTX176.Name = "chkExtTX176"; this.chkExtTX176.Size = new System.Drawing.Size(16, 16); this.chkExtTX176.TabIndex = 165; this.chkExtTX176.Text = "checkBox5"; this.chkExtTX176.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX206 // this.chkExtTX206.Image = null; this.chkExtTX206.Location = new System.Drawing.Point(144, 144); this.chkExtTX206.Name = "chkExtTX206"; this.chkExtTX206.Size = new System.Drawing.Size(16, 16); this.chkExtTX206.TabIndex = 164; this.chkExtTX206.Text = "checkBox5"; this.chkExtTX206.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX306 // this.chkExtTX306.Image = null; this.chkExtTX306.Location = new System.Drawing.Point(144, 128); this.chkExtTX306.Name = "chkExtTX306"; this.chkExtTX306.Size = new System.Drawing.Size(16, 16); this.chkExtTX306.TabIndex = 163; this.chkExtTX306.Text = "checkBox5"; this.chkExtTX306.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX406 // this.chkExtTX406.Image = null; this.chkExtTX406.Location = new System.Drawing.Point(144, 112); this.chkExtTX406.Name = "chkExtTX406"; this.chkExtTX406.Size = new System.Drawing.Size(16, 16); this.chkExtTX406.TabIndex = 162; this.chkExtTX406.Text = "checkBox5"; this.chkExtTX406.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX606 // this.chkExtTX606.Image = null; this.chkExtTX606.Location = new System.Drawing.Point(144, 96); this.chkExtTX606.Name = "chkExtTX606"; this.chkExtTX606.Size = new System.Drawing.Size(16, 16); this.chkExtTX606.TabIndex = 161; this.chkExtTX606.Text = "checkBox5"; this.chkExtTX606.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX806 // this.chkExtTX806.Image = null; this.chkExtTX806.Location = new System.Drawing.Point(144, 80); this.chkExtTX806.Name = "chkExtTX806"; this.chkExtTX806.Size = new System.Drawing.Size(16, 16); this.chkExtTX806.TabIndex = 160; this.chkExtTX806.Text = "checkBox5"; this.chkExtTX806.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX1606 // this.chkExtTX1606.Image = null; this.chkExtTX1606.Location = new System.Drawing.Point(144, 64); this.chkExtTX1606.Name = "chkExtTX1606"; this.chkExtTX1606.Size = new System.Drawing.Size(16, 16); this.chkExtTX1606.TabIndex = 159; this.chkExtTX1606.Text = "checkBox5"; this.chkExtTX1606.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // lblExtTXX25 // this.lblExtTXX25.Image = null; this.lblExtTXX25.Location = new System.Drawing.Point(128, 40); this.lblExtTXX25.Name = "lblExtTXX25"; this.lblExtTXX25.Size = new System.Drawing.Size(16, 16); this.lblExtTXX25.TabIndex = 158; this.lblExtTXX25.Text = "5"; this.lblExtTXX25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXX24 // this.lblExtTXX24.Image = null; this.lblExtTXX24.Location = new System.Drawing.Point(112, 40); this.lblExtTXX24.Name = "lblExtTXX24"; this.lblExtTXX24.Size = new System.Drawing.Size(16, 16); this.lblExtTXX24.TabIndex = 157; this.lblExtTXX24.Text = "4"; this.lblExtTXX24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXX23 // this.lblExtTXX23.Image = null; this.lblExtTXX23.Location = new System.Drawing.Point(96, 40); this.lblExtTXX23.Name = "lblExtTXX23"; this.lblExtTXX23.Size = new System.Drawing.Size(16, 16); this.lblExtTXX23.TabIndex = 156; this.lblExtTXX23.Text = "3"; this.lblExtTXX23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXX22 // this.lblExtTXX22.Image = null; this.lblExtTXX22.Location = new System.Drawing.Point(80, 40); this.lblExtTXX22.Name = "lblExtTXX22"; this.lblExtTXX22.Size = new System.Drawing.Size(16, 16); this.lblExtTXX22.TabIndex = 155; this.lblExtTXX22.Text = "2"; this.lblExtTXX22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTX2 // this.lblExtTX2.Image = null; this.lblExtTX2.Location = new System.Drawing.Point(12, 240); this.lblExtTX2.Name = "lblExtTX2"; this.lblExtTX2.Size = new System.Drawing.Size(40, 16); this.lblExtTX2.TabIndex = 154; this.lblExtTX2.Text = "2m"; // // chkExtTX23 // this.chkExtTX23.Image = null; this.chkExtTX23.Location = new System.Drawing.Point(96, 240); this.chkExtTX23.Name = "chkExtTX23"; this.chkExtTX23.Size = new System.Drawing.Size(16, 16); this.chkExtTX23.TabIndex = 151; this.chkExtTX23.Text = "checkBox3"; this.chkExtTX23.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX22 // this.chkExtTX22.Image = null; this.chkExtTX22.Location = new System.Drawing.Point(80, 240); this.chkExtTX22.Name = "chkExtTX22"; this.chkExtTX22.Size = new System.Drawing.Size(16, 16); this.chkExtTX22.TabIndex = 150; this.chkExtTX22.Text = "checkBox2"; this.chkExtTX22.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX21 // this.chkExtTX21.Image = null; this.chkExtTX21.Location = new System.Drawing.Point(64, 240); this.chkExtTX21.Name = "chkExtTX21"; this.chkExtTX21.Size = new System.Drawing.Size(16, 16); this.chkExtTX21.TabIndex = 149; this.chkExtTX21.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX25 // this.chkExtTX25.Image = null; this.chkExtTX25.Location = new System.Drawing.Point(128, 240); this.chkExtTX25.Name = "chkExtTX25"; this.chkExtTX25.Size = new System.Drawing.Size(16, 16); this.chkExtTX25.TabIndex = 153; this.chkExtTX25.Text = "checkBox5"; this.chkExtTX25.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // chkExtTX24 // this.chkExtTX24.Image = null; this.chkExtTX24.Location = new System.Drawing.Point(112, 240); this.chkExtTX24.Name = "chkExtTX24"; this.chkExtTX24.Size = new System.Drawing.Size(16, 16); this.chkExtTX24.TabIndex = 152; this.chkExtTX24.Text = "checkBox4"; this.chkExtTX24.CheckedChanged += new System.EventHandler(this.chkExtTX2_CheckedChanged); // // lblExtTX6 // this.lblExtTX6.Image = null; this.lblExtTX6.Location = new System.Drawing.Point(12, 224); this.lblExtTX6.Name = "lblExtTX6"; this.lblExtTX6.Size = new System.Drawing.Size(40, 16); this.lblExtTX6.TabIndex = 148; this.lblExtTX6.Text = "6m"; // // chkExtTX63 // this.chkExtTX63.Image = null; this.chkExtTX63.Location = new System.Drawing.Point(96, 224); this.chkExtTX63.Name = "chkExtTX63"; this.chkExtTX63.Size = new System.Drawing.Size(16, 16); this.chkExtTX63.TabIndex = 145; this.chkExtTX63.Text = "checkBox3"; this.chkExtTX63.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX62 // this.chkExtTX62.Image = null; this.chkExtTX62.Location = new System.Drawing.Point(80, 224); this.chkExtTX62.Name = "chkExtTX62"; this.chkExtTX62.Size = new System.Drawing.Size(16, 16); this.chkExtTX62.TabIndex = 144; this.chkExtTX62.Text = "checkBox2"; this.chkExtTX62.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX61 // this.chkExtTX61.Image = null; this.chkExtTX61.Location = new System.Drawing.Point(64, 224); this.chkExtTX61.Name = "chkExtTX61"; this.chkExtTX61.Size = new System.Drawing.Size(16, 16); this.chkExtTX61.TabIndex = 143; this.chkExtTX61.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX65 // this.chkExtTX65.Image = null; this.chkExtTX65.Location = new System.Drawing.Point(128, 224); this.chkExtTX65.Name = "chkExtTX65"; this.chkExtTX65.Size = new System.Drawing.Size(16, 16); this.chkExtTX65.TabIndex = 147; this.chkExtTX65.Text = "checkBox5"; this.chkExtTX65.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // chkExtTX64 // this.chkExtTX64.Image = null; this.chkExtTX64.Location = new System.Drawing.Point(112, 224); this.chkExtTX64.Name = "chkExtTX64"; this.chkExtTX64.Size = new System.Drawing.Size(16, 16); this.chkExtTX64.TabIndex = 146; this.chkExtTX64.Text = "checkBox4"; this.chkExtTX64.CheckedChanged += new System.EventHandler(this.chkExtTX6_CheckedChanged); // // lblExtTX10 // this.lblExtTX10.Image = null; this.lblExtTX10.Location = new System.Drawing.Point(12, 208); this.lblExtTX10.Name = "lblExtTX10"; this.lblExtTX10.Size = new System.Drawing.Size(40, 16); this.lblExtTX10.TabIndex = 142; this.lblExtTX10.Text = "10m"; // // chkExtTX103 // this.chkExtTX103.Image = null; this.chkExtTX103.Location = new System.Drawing.Point(96, 208); this.chkExtTX103.Name = "chkExtTX103"; this.chkExtTX103.Size = new System.Drawing.Size(16, 16); this.chkExtTX103.TabIndex = 139; this.chkExtTX103.Text = "checkBox3"; this.chkExtTX103.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX102 // this.chkExtTX102.Image = null; this.chkExtTX102.Location = new System.Drawing.Point(80, 208); this.chkExtTX102.Name = "chkExtTX102"; this.chkExtTX102.Size = new System.Drawing.Size(16, 16); this.chkExtTX102.TabIndex = 138; this.chkExtTX102.Text = "checkBox2"; this.chkExtTX102.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX101 // this.chkExtTX101.Image = null; this.chkExtTX101.Location = new System.Drawing.Point(64, 208); this.chkExtTX101.Name = "chkExtTX101"; this.chkExtTX101.Size = new System.Drawing.Size(16, 16); this.chkExtTX101.TabIndex = 137; this.chkExtTX101.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX105 // this.chkExtTX105.Image = null; this.chkExtTX105.Location = new System.Drawing.Point(128, 208); this.chkExtTX105.Name = "chkExtTX105"; this.chkExtTX105.Size = new System.Drawing.Size(16, 16); this.chkExtTX105.TabIndex = 141; this.chkExtTX105.Text = "checkBox5"; this.chkExtTX105.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // chkExtTX104 // this.chkExtTX104.Image = null; this.chkExtTX104.Location = new System.Drawing.Point(112, 208); this.chkExtTX104.Name = "chkExtTX104"; this.chkExtTX104.Size = new System.Drawing.Size(16, 16); this.chkExtTX104.TabIndex = 140; this.chkExtTX104.Text = "checkBox4"; this.chkExtTX104.CheckedChanged += new System.EventHandler(this.chkExtTX10_CheckedChanged); // // lblExtTX12 // this.lblExtTX12.Image = null; this.lblExtTX12.Location = new System.Drawing.Point(12, 192); this.lblExtTX12.Name = "lblExtTX12"; this.lblExtTX12.Size = new System.Drawing.Size(40, 16); this.lblExtTX12.TabIndex = 136; this.lblExtTX12.Text = "12m"; // // chkExtTX123 // this.chkExtTX123.Image = null; this.chkExtTX123.Location = new System.Drawing.Point(96, 192); this.chkExtTX123.Name = "chkExtTX123"; this.chkExtTX123.Size = new System.Drawing.Size(16, 16); this.chkExtTX123.TabIndex = 133; this.chkExtTX123.Text = "checkBox3"; this.chkExtTX123.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX122 // this.chkExtTX122.Image = null; this.chkExtTX122.Location = new System.Drawing.Point(80, 192); this.chkExtTX122.Name = "chkExtTX122"; this.chkExtTX122.Size = new System.Drawing.Size(16, 16); this.chkExtTX122.TabIndex = 132; this.chkExtTX122.Text = "checkBox2"; this.chkExtTX122.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX121 // this.chkExtTX121.Image = null; this.chkExtTX121.Location = new System.Drawing.Point(64, 192); this.chkExtTX121.Name = "chkExtTX121"; this.chkExtTX121.Size = new System.Drawing.Size(16, 16); this.chkExtTX121.TabIndex = 131; this.chkExtTX121.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX125 // this.chkExtTX125.Image = null; this.chkExtTX125.Location = new System.Drawing.Point(128, 192); this.chkExtTX125.Name = "chkExtTX125"; this.chkExtTX125.Size = new System.Drawing.Size(16, 16); this.chkExtTX125.TabIndex = 135; this.chkExtTX125.Text = "checkBox5"; this.chkExtTX125.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // chkExtTX124 // this.chkExtTX124.Image = null; this.chkExtTX124.Location = new System.Drawing.Point(112, 192); this.chkExtTX124.Name = "chkExtTX124"; this.chkExtTX124.Size = new System.Drawing.Size(16, 16); this.chkExtTX124.TabIndex = 134; this.chkExtTX124.Text = "checkBox4"; this.chkExtTX124.CheckedChanged += new System.EventHandler(this.chkExtTX12_CheckedChanged); // // lblExtTX15 // this.lblExtTX15.Image = null; this.lblExtTX15.Location = new System.Drawing.Point(12, 176); this.lblExtTX15.Name = "lblExtTX15"; this.lblExtTX15.Size = new System.Drawing.Size(40, 16); this.lblExtTX15.TabIndex = 130; this.lblExtTX15.Text = "15m"; // // chkExtTX153 // this.chkExtTX153.Image = null; this.chkExtTX153.Location = new System.Drawing.Point(96, 176); this.chkExtTX153.Name = "chkExtTX153"; this.chkExtTX153.Size = new System.Drawing.Size(16, 16); this.chkExtTX153.TabIndex = 127; this.chkExtTX153.Text = "checkBox3"; this.chkExtTX153.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX152 // this.chkExtTX152.Image = null; this.chkExtTX152.Location = new System.Drawing.Point(80, 176); this.chkExtTX152.Name = "chkExtTX152"; this.chkExtTX152.Size = new System.Drawing.Size(16, 16); this.chkExtTX152.TabIndex = 126; this.chkExtTX152.Text = "checkBox2"; this.chkExtTX152.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX151 // this.chkExtTX151.Image = null; this.chkExtTX151.Location = new System.Drawing.Point(64, 176); this.chkExtTX151.Name = "chkExtTX151"; this.chkExtTX151.Size = new System.Drawing.Size(16, 16); this.chkExtTX151.TabIndex = 125; this.chkExtTX151.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX155 // this.chkExtTX155.Image = null; this.chkExtTX155.Location = new System.Drawing.Point(128, 176); this.chkExtTX155.Name = "chkExtTX155"; this.chkExtTX155.Size = new System.Drawing.Size(16, 16); this.chkExtTX155.TabIndex = 129; this.chkExtTX155.Text = "checkBox5"; this.chkExtTX155.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // chkExtTX154 // this.chkExtTX154.Image = null; this.chkExtTX154.Location = new System.Drawing.Point(112, 176); this.chkExtTX154.Name = "chkExtTX154"; this.chkExtTX154.Size = new System.Drawing.Size(16, 16); this.chkExtTX154.TabIndex = 128; this.chkExtTX154.Text = "checkBox4"; this.chkExtTX154.CheckedChanged += new System.EventHandler(this.chkExtTX15_CheckedChanged); // // lblExtTX17 // this.lblExtTX17.Image = null; this.lblExtTX17.Location = new System.Drawing.Point(12, 160); this.lblExtTX17.Name = "lblExtTX17"; this.lblExtTX17.Size = new System.Drawing.Size(40, 16); this.lblExtTX17.TabIndex = 124; this.lblExtTX17.Text = "17m"; // // chkExtTX173 // this.chkExtTX173.Image = null; this.chkExtTX173.Location = new System.Drawing.Point(96, 160); this.chkExtTX173.Name = "chkExtTX173"; this.chkExtTX173.Size = new System.Drawing.Size(16, 16); this.chkExtTX173.TabIndex = 121; this.chkExtTX173.Text = "checkBox3"; this.chkExtTX173.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX172 // this.chkExtTX172.Image = null; this.chkExtTX172.Location = new System.Drawing.Point(80, 160); this.chkExtTX172.Name = "chkExtTX172"; this.chkExtTX172.Size = new System.Drawing.Size(16, 16); this.chkExtTX172.TabIndex = 120; this.chkExtTX172.Text = "checkBox2"; this.chkExtTX172.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX171 // this.chkExtTX171.Image = null; this.chkExtTX171.Location = new System.Drawing.Point(64, 160); this.chkExtTX171.Name = "chkExtTX171"; this.chkExtTX171.Size = new System.Drawing.Size(16, 16); this.chkExtTX171.TabIndex = 119; this.chkExtTX171.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX175 // this.chkExtTX175.Image = null; this.chkExtTX175.Location = new System.Drawing.Point(128, 160); this.chkExtTX175.Name = "chkExtTX175"; this.chkExtTX175.Size = new System.Drawing.Size(16, 16); this.chkExtTX175.TabIndex = 123; this.chkExtTX175.Text = "checkBox5"; this.chkExtTX175.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // chkExtTX174 // this.chkExtTX174.Image = null; this.chkExtTX174.Location = new System.Drawing.Point(112, 160); this.chkExtTX174.Name = "chkExtTX174"; this.chkExtTX174.Size = new System.Drawing.Size(16, 16); this.chkExtTX174.TabIndex = 122; this.chkExtTX174.Text = "checkBox4"; this.chkExtTX174.CheckedChanged += new System.EventHandler(this.chkExtTX17_CheckedChanged); // // lblExtTX20 // this.lblExtTX20.Image = null; this.lblExtTX20.Location = new System.Drawing.Point(12, 144); this.lblExtTX20.Name = "lblExtTX20"; this.lblExtTX20.Size = new System.Drawing.Size(40, 16); this.lblExtTX20.TabIndex = 118; this.lblExtTX20.Text = "20m"; // // chkExtTX203 // this.chkExtTX203.Image = null; this.chkExtTX203.Location = new System.Drawing.Point(96, 144); this.chkExtTX203.Name = "chkExtTX203"; this.chkExtTX203.Size = new System.Drawing.Size(16, 16); this.chkExtTX203.TabIndex = 115; this.chkExtTX203.Text = "checkBox3"; this.chkExtTX203.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX202 // this.chkExtTX202.Image = null; this.chkExtTX202.Location = new System.Drawing.Point(80, 144); this.chkExtTX202.Name = "chkExtTX202"; this.chkExtTX202.Size = new System.Drawing.Size(16, 16); this.chkExtTX202.TabIndex = 114; this.chkExtTX202.Text = "checkBox2"; this.chkExtTX202.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX201 // this.chkExtTX201.Image = null; this.chkExtTX201.Location = new System.Drawing.Point(64, 144); this.chkExtTX201.Name = "chkExtTX201"; this.chkExtTX201.Size = new System.Drawing.Size(16, 16); this.chkExtTX201.TabIndex = 113; this.chkExtTX201.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX205 // this.chkExtTX205.Image = null; this.chkExtTX205.Location = new System.Drawing.Point(128, 144); this.chkExtTX205.Name = "chkExtTX205"; this.chkExtTX205.Size = new System.Drawing.Size(16, 16); this.chkExtTX205.TabIndex = 117; this.chkExtTX205.Text = "checkBox5"; this.chkExtTX205.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // chkExtTX204 // this.chkExtTX204.Image = null; this.chkExtTX204.Location = new System.Drawing.Point(112, 144); this.chkExtTX204.Name = "chkExtTX204"; this.chkExtTX204.Size = new System.Drawing.Size(16, 16); this.chkExtTX204.TabIndex = 116; this.chkExtTX204.Text = "checkBox4"; this.chkExtTX204.CheckedChanged += new System.EventHandler(this.chkExtTX20_CheckedChanged); // // lblExtTX30 // this.lblExtTX30.Image = null; this.lblExtTX30.Location = new System.Drawing.Point(12, 128); this.lblExtTX30.Name = "lblExtTX30"; this.lblExtTX30.Size = new System.Drawing.Size(40, 16); this.lblExtTX30.TabIndex = 112; this.lblExtTX30.Text = "30m"; // // chkExtTX303 // this.chkExtTX303.Image = null; this.chkExtTX303.Location = new System.Drawing.Point(96, 128); this.chkExtTX303.Name = "chkExtTX303"; this.chkExtTX303.Size = new System.Drawing.Size(16, 16); this.chkExtTX303.TabIndex = 109; this.chkExtTX303.Text = "checkBox3"; this.chkExtTX303.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX302 // this.chkExtTX302.Image = null; this.chkExtTX302.Location = new System.Drawing.Point(80, 128); this.chkExtTX302.Name = "chkExtTX302"; this.chkExtTX302.Size = new System.Drawing.Size(16, 16); this.chkExtTX302.TabIndex = 108; this.chkExtTX302.Text = "checkBox2"; this.chkExtTX302.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX301 // this.chkExtTX301.Image = null; this.chkExtTX301.Location = new System.Drawing.Point(64, 128); this.chkExtTX301.Name = "chkExtTX301"; this.chkExtTX301.Size = new System.Drawing.Size(16, 16); this.chkExtTX301.TabIndex = 107; this.chkExtTX301.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX305 // this.chkExtTX305.Image = null; this.chkExtTX305.Location = new System.Drawing.Point(128, 128); this.chkExtTX305.Name = "chkExtTX305"; this.chkExtTX305.Size = new System.Drawing.Size(16, 16); this.chkExtTX305.TabIndex = 111; this.chkExtTX305.Text = "checkBox5"; this.chkExtTX305.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // chkExtTX304 // this.chkExtTX304.Image = null; this.chkExtTX304.Location = new System.Drawing.Point(112, 128); this.chkExtTX304.Name = "chkExtTX304"; this.chkExtTX304.Size = new System.Drawing.Size(16, 16); this.chkExtTX304.TabIndex = 110; this.chkExtTX304.Text = "checkBox4"; this.chkExtTX304.CheckedChanged += new System.EventHandler(this.chkExtTX30_CheckedChanged); // // lblExtTX40 // this.lblExtTX40.Image = null; this.lblExtTX40.Location = new System.Drawing.Point(12, 112); this.lblExtTX40.Name = "lblExtTX40"; this.lblExtTX40.Size = new System.Drawing.Size(40, 16); this.lblExtTX40.TabIndex = 106; this.lblExtTX40.Text = "40m"; // // chkExtTX403 // this.chkExtTX403.Image = null; this.chkExtTX403.Location = new System.Drawing.Point(96, 112); this.chkExtTX403.Name = "chkExtTX403"; this.chkExtTX403.Size = new System.Drawing.Size(16, 16); this.chkExtTX403.TabIndex = 103; this.chkExtTX403.Text = "checkBox3"; this.chkExtTX403.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX402 // this.chkExtTX402.Image = null; this.chkExtTX402.Location = new System.Drawing.Point(80, 112); this.chkExtTX402.Name = "chkExtTX402"; this.chkExtTX402.Size = new System.Drawing.Size(16, 16); this.chkExtTX402.TabIndex = 102; this.chkExtTX402.Text = "checkBox2"; this.chkExtTX402.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX401 // this.chkExtTX401.Image = null; this.chkExtTX401.Location = new System.Drawing.Point(64, 112); this.chkExtTX401.Name = "chkExtTX401"; this.chkExtTX401.Size = new System.Drawing.Size(16, 16); this.chkExtTX401.TabIndex = 101; this.chkExtTX401.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX405 // this.chkExtTX405.Image = null; this.chkExtTX405.Location = new System.Drawing.Point(128, 112); this.chkExtTX405.Name = "chkExtTX405"; this.chkExtTX405.Size = new System.Drawing.Size(16, 16); this.chkExtTX405.TabIndex = 105; this.chkExtTX405.Text = "checkBox5"; this.chkExtTX405.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // chkExtTX404 // this.chkExtTX404.Image = null; this.chkExtTX404.Location = new System.Drawing.Point(112, 112); this.chkExtTX404.Name = "chkExtTX404"; this.chkExtTX404.Size = new System.Drawing.Size(16, 16); this.chkExtTX404.TabIndex = 104; this.chkExtTX404.Text = "checkBox4"; this.chkExtTX404.CheckedChanged += new System.EventHandler(this.chkExtTX40_CheckedChanged); // // lblExtTX60 // this.lblExtTX60.Image = null; this.lblExtTX60.Location = new System.Drawing.Point(12, 96); this.lblExtTX60.Name = "lblExtTX60"; this.lblExtTX60.Size = new System.Drawing.Size(40, 16); this.lblExtTX60.TabIndex = 100; this.lblExtTX60.Text = "60m"; // // chkExtTX603 // this.chkExtTX603.Image = null; this.chkExtTX603.Location = new System.Drawing.Point(96, 96); this.chkExtTX603.Name = "chkExtTX603"; this.chkExtTX603.Size = new System.Drawing.Size(16, 16); this.chkExtTX603.TabIndex = 97; this.chkExtTX603.Text = "checkBox3"; this.chkExtTX603.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX602 // this.chkExtTX602.Image = null; this.chkExtTX602.Location = new System.Drawing.Point(80, 96); this.chkExtTX602.Name = "chkExtTX602"; this.chkExtTX602.Size = new System.Drawing.Size(16, 16); this.chkExtTX602.TabIndex = 96; this.chkExtTX602.Text = "checkBox2"; this.chkExtTX602.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX601 // this.chkExtTX601.Image = null; this.chkExtTX601.Location = new System.Drawing.Point(64, 96); this.chkExtTX601.Name = "chkExtTX601"; this.chkExtTX601.Size = new System.Drawing.Size(16, 16); this.chkExtTX601.TabIndex = 95; this.chkExtTX601.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX605 // this.chkExtTX605.Image = null; this.chkExtTX605.Location = new System.Drawing.Point(128, 96); this.chkExtTX605.Name = "chkExtTX605"; this.chkExtTX605.Size = new System.Drawing.Size(16, 16); this.chkExtTX605.TabIndex = 99; this.chkExtTX605.Text = "checkBox5"; this.chkExtTX605.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // chkExtTX604 // this.chkExtTX604.Image = null; this.chkExtTX604.Location = new System.Drawing.Point(112, 96); this.chkExtTX604.Name = "chkExtTX604"; this.chkExtTX604.Size = new System.Drawing.Size(16, 16); this.chkExtTX604.TabIndex = 98; this.chkExtTX604.Text = "checkBox4"; this.chkExtTX604.CheckedChanged += new System.EventHandler(this.chkExtTX60_CheckedChanged); // // lblExtTX80 // this.lblExtTX80.Image = null; this.lblExtTX80.Location = new System.Drawing.Point(12, 80); this.lblExtTX80.Name = "lblExtTX80"; this.lblExtTX80.Size = new System.Drawing.Size(40, 16); this.lblExtTX80.TabIndex = 94; this.lblExtTX80.Text = "80m"; // // chkExtTX803 // this.chkExtTX803.Image = null; this.chkExtTX803.Location = new System.Drawing.Point(96, 80); this.chkExtTX803.Name = "chkExtTX803"; this.chkExtTX803.Size = new System.Drawing.Size(16, 16); this.chkExtTX803.TabIndex = 91; this.chkExtTX803.Text = "checkBox3"; this.chkExtTX803.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX802 // this.chkExtTX802.Image = null; this.chkExtTX802.Location = new System.Drawing.Point(80, 80); this.chkExtTX802.Name = "chkExtTX802"; this.chkExtTX802.Size = new System.Drawing.Size(16, 16); this.chkExtTX802.TabIndex = 90; this.chkExtTX802.Text = "checkBox107"; this.chkExtTX802.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX801 // this.chkExtTX801.Image = null; this.chkExtTX801.Location = new System.Drawing.Point(64, 80); this.chkExtTX801.Name = "chkExtTX801"; this.chkExtTX801.Size = new System.Drawing.Size(16, 16); this.chkExtTX801.TabIndex = 89; this.chkExtTX801.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX805 // this.chkExtTX805.Image = null; this.chkExtTX805.Location = new System.Drawing.Point(128, 80); this.chkExtTX805.Name = "chkExtTX805"; this.chkExtTX805.Size = new System.Drawing.Size(16, 16); this.chkExtTX805.TabIndex = 93; this.chkExtTX805.Text = "checkBox5"; this.chkExtTX805.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // chkExtTX804 // this.chkExtTX804.Image = null; this.chkExtTX804.Location = new System.Drawing.Point(112, 80); this.chkExtTX804.Name = "chkExtTX804"; this.chkExtTX804.Size = new System.Drawing.Size(16, 16); this.chkExtTX804.TabIndex = 92; this.chkExtTX804.Text = "checkBox4"; this.chkExtTX804.CheckedChanged += new System.EventHandler(this.chkExtTX80_CheckedChanged); // // lblExtTXX2Pins // this.lblExtTXX2Pins.Image = null; this.lblExtTXX2Pins.Location = new System.Drawing.Point(60, 24); this.lblExtTXX2Pins.Name = "lblExtTXX2Pins"; this.lblExtTXX2Pins.Size = new System.Drawing.Size(100, 16); this.lblExtTXX2Pins.TabIndex = 88; this.lblExtTXX2Pins.Text = "X2 Pins"; this.lblExtTXX2Pins.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtTXBand // this.lblExtTXBand.Image = null; this.lblExtTXBand.Location = new System.Drawing.Point(12, 24); this.lblExtTXBand.Name = "lblExtTXBand"; this.lblExtTXBand.Size = new System.Drawing.Size(32, 16); this.lblExtTXBand.TabIndex = 87; this.lblExtTXBand.Text = "Band"; // // lblExtTX160 // this.lblExtTX160.Image = null; this.lblExtTX160.Location = new System.Drawing.Point(12, 64); this.lblExtTX160.Name = "lblExtTX160"; this.lblExtTX160.Size = new System.Drawing.Size(40, 16); this.lblExtTX160.TabIndex = 86; this.lblExtTX160.Text = "160m"; // // chkExtTX1603 // this.chkExtTX1603.Image = null; this.chkExtTX1603.Location = new System.Drawing.Point(96, 64); this.chkExtTX1603.Name = "chkExtTX1603"; this.chkExtTX1603.Size = new System.Drawing.Size(16, 16); this.chkExtTX1603.TabIndex = 82; this.chkExtTX1603.Text = "checkBox3"; this.chkExtTX1603.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // chkExtTX1602 // this.chkExtTX1602.Image = null; this.chkExtTX1602.Location = new System.Drawing.Point(80, 64); this.chkExtTX1602.Name = "chkExtTX1602"; this.chkExtTX1602.Size = new System.Drawing.Size(16, 16); this.chkExtTX1602.TabIndex = 81; this.chkExtTX1602.Text = "checkBox2"; this.chkExtTX1602.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // chkExtTX1601 // this.chkExtTX1601.Image = null; this.chkExtTX1601.Location = new System.Drawing.Point(64, 64); this.chkExtTX1601.Name = "chkExtTX1601"; this.chkExtTX1601.Size = new System.Drawing.Size(16, 16); this.chkExtTX1601.TabIndex = 80; this.chkExtTX1601.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // lblExtTXX21 // this.lblExtTXX21.Image = null; this.lblExtTXX21.Location = new System.Drawing.Point(64, 40); this.lblExtTXX21.Name = "lblExtTXX21"; this.lblExtTXX21.Size = new System.Drawing.Size(16, 16); this.lblExtTXX21.TabIndex = 85; this.lblExtTXX21.Text = "1"; this.lblExtTXX21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtTX1605 // this.chkExtTX1605.Image = null; this.chkExtTX1605.Location = new System.Drawing.Point(128, 64); this.chkExtTX1605.Name = "chkExtTX1605"; this.chkExtTX1605.Size = new System.Drawing.Size(16, 16); this.chkExtTX1605.TabIndex = 84; this.chkExtTX1605.Text = "checkBox5"; this.chkExtTX1605.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // chkExtTX1604 // this.chkExtTX1604.Image = null; this.chkExtTX1604.Location = new System.Drawing.Point(112, 64); this.chkExtTX1604.Name = "chkExtTX1604"; this.chkExtTX1604.Size = new System.Drawing.Size(16, 16); this.chkExtTX1604.TabIndex = 83; this.chkExtTX1604.Text = "checkBox4"; this.chkExtTX1604.CheckedChanged += new System.EventHandler(this.chkExtTX160_CheckedChanged); // // grpExtRX // this.grpExtRX.Controls.Add(this.lblExtRXX26); this.grpExtRX.Controls.Add(this.chkExtRX26); this.grpExtRX.Controls.Add(this.chkExtRX66); this.grpExtRX.Controls.Add(this.chkExtRX106); this.grpExtRX.Controls.Add(this.chkExtRX126); this.grpExtRX.Controls.Add(this.chkExtRX156); this.grpExtRX.Controls.Add(this.chkExtRX176); this.grpExtRX.Controls.Add(this.chkExtRX206); this.grpExtRX.Controls.Add(this.chkExtRX306); this.grpExtRX.Controls.Add(this.chkExtRX406); this.grpExtRX.Controls.Add(this.chkExtRX606); this.grpExtRX.Controls.Add(this.chkExtRX806); this.grpExtRX.Controls.Add(this.chkExtRX1606); this.grpExtRX.Controls.Add(this.lblExtRXX25); this.grpExtRX.Controls.Add(this.lblExtRXX24); this.grpExtRX.Controls.Add(this.lblExtRXX23); this.grpExtRX.Controls.Add(this.lblExtRXX22); this.grpExtRX.Controls.Add(this.lblExtRX2); this.grpExtRX.Controls.Add(this.chkExtRX23); this.grpExtRX.Controls.Add(this.chkExtRX22); this.grpExtRX.Controls.Add(this.chkExtRX21); this.grpExtRX.Controls.Add(this.chkExtRX25); this.grpExtRX.Controls.Add(this.chkExtRX24); this.grpExtRX.Controls.Add(this.lblExtRX6); this.grpExtRX.Controls.Add(this.chkExtRX63); this.grpExtRX.Controls.Add(this.chkExtRX62); this.grpExtRX.Controls.Add(this.chkExtRX61); this.grpExtRX.Controls.Add(this.chkExtRX65); this.grpExtRX.Controls.Add(this.chkExtRX64); this.grpExtRX.Controls.Add(this.lblExtRX10); this.grpExtRX.Controls.Add(this.chkExtRX103); this.grpExtRX.Controls.Add(this.chkExtRX102); this.grpExtRX.Controls.Add(this.chkExtRX101); this.grpExtRX.Controls.Add(this.chkExtRX105); this.grpExtRX.Controls.Add(this.chkExtRX104); this.grpExtRX.Controls.Add(this.lblExtRX12); this.grpExtRX.Controls.Add(this.chkExtRX123); this.grpExtRX.Controls.Add(this.chkExtRX122); this.grpExtRX.Controls.Add(this.chkExtRX121); this.grpExtRX.Controls.Add(this.chkExtRX125); this.grpExtRX.Controls.Add(this.chkExtRX124); this.grpExtRX.Controls.Add(this.lblExtRX15); this.grpExtRX.Controls.Add(this.chkExtRX153); this.grpExtRX.Controls.Add(this.chkExtRX152); this.grpExtRX.Controls.Add(this.chkExtRX151); this.grpExtRX.Controls.Add(this.chkExtRX155); this.grpExtRX.Controls.Add(this.chkExtRX154); this.grpExtRX.Controls.Add(this.lblExtRX17); this.grpExtRX.Controls.Add(this.chkExtRX173); this.grpExtRX.Controls.Add(this.chkExtRX172); this.grpExtRX.Controls.Add(this.chkExtRX171); this.grpExtRX.Controls.Add(this.chkExtRX175); this.grpExtRX.Controls.Add(this.chkExtRX174); this.grpExtRX.Controls.Add(this.lblExtRX20); this.grpExtRX.Controls.Add(this.chkExtRX203); this.grpExtRX.Controls.Add(this.chkExtRX202); this.grpExtRX.Controls.Add(this.chkExtRX201); this.grpExtRX.Controls.Add(this.chkExtRX205); this.grpExtRX.Controls.Add(this.chkExtRX204); this.grpExtRX.Controls.Add(this.lblExtRX30); this.grpExtRX.Controls.Add(this.chkExtRX303); this.grpExtRX.Controls.Add(this.chkExtRX302); this.grpExtRX.Controls.Add(this.chkExtRX301); this.grpExtRX.Controls.Add(this.chkExtRX305); this.grpExtRX.Controls.Add(this.chkExtRX304); this.grpExtRX.Controls.Add(this.lblExtRX40); this.grpExtRX.Controls.Add(this.chkExtRX403); this.grpExtRX.Controls.Add(this.chkExtRX402); this.grpExtRX.Controls.Add(this.chkExtRX401); this.grpExtRX.Controls.Add(this.chkExtRX405); this.grpExtRX.Controls.Add(this.chkExtRX404); this.grpExtRX.Controls.Add(this.lblExtRX60); this.grpExtRX.Controls.Add(this.chkExtRX603); this.grpExtRX.Controls.Add(this.chkExtRX602); this.grpExtRX.Controls.Add(this.chkExtRX601); this.grpExtRX.Controls.Add(this.chkExtRX605); this.grpExtRX.Controls.Add(this.chkExtRX604); this.grpExtRX.Controls.Add(this.lblExtRX80); this.grpExtRX.Controls.Add(this.chkExtRX803); this.grpExtRX.Controls.Add(this.chkExtRX802); this.grpExtRX.Controls.Add(this.chkExtRX801); this.grpExtRX.Controls.Add(this.chkExtRX805); this.grpExtRX.Controls.Add(this.chkExtRX804); this.grpExtRX.Controls.Add(this.lblExtRXX2Pins); this.grpExtRX.Controls.Add(this.lblExtRXBand); this.grpExtRX.Controls.Add(this.lblExtRX160); this.grpExtRX.Controls.Add(this.chkExtRX1603); this.grpExtRX.Controls.Add(this.chkExtRX1602); this.grpExtRX.Controls.Add(this.chkExtRX1601); this.grpExtRX.Controls.Add(this.lblExtRXX21); this.grpExtRX.Controls.Add(this.chkExtRX1605); this.grpExtRX.Controls.Add(this.chkExtRX1604); this.grpExtRX.Enabled = false; this.grpExtRX.Location = new System.Drawing.Point(8, 8); this.grpExtRX.Name = "grpExtRX"; this.grpExtRX.Size = new System.Drawing.Size(168, 264); this.grpExtRX.TabIndex = 7; this.grpExtRX.TabStop = false; this.grpExtRX.Text = "Receive"; // // lblExtRXX26 // this.lblExtRXX26.Image = null; this.lblExtRXX26.Location = new System.Drawing.Point(144, 40); this.lblExtRXX26.Name = "lblExtRXX26"; this.lblExtRXX26.Size = new System.Drawing.Size(16, 16); this.lblExtRXX26.TabIndex = 92; this.lblExtRXX26.Text = "6"; this.lblExtRXX26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtRX26 // this.chkExtRX26.Image = null; this.chkExtRX26.Location = new System.Drawing.Point(144, 240); this.chkExtRX26.Name = "chkExtRX26"; this.chkExtRX26.Size = new System.Drawing.Size(16, 16); this.chkExtRX26.TabIndex = 91; this.chkExtRX26.Text = "checkBox5"; this.chkExtRX26.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX66 // this.chkExtRX66.Image = null; this.chkExtRX66.Location = new System.Drawing.Point(144, 224); this.chkExtRX66.Name = "chkExtRX66"; this.chkExtRX66.Size = new System.Drawing.Size(16, 16); this.chkExtRX66.TabIndex = 90; this.chkExtRX66.Text = "checkBox5"; this.chkExtRX66.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX106 // this.chkExtRX106.Image = null; this.chkExtRX106.Location = new System.Drawing.Point(144, 208); this.chkExtRX106.Name = "chkExtRX106"; this.chkExtRX106.Size = new System.Drawing.Size(16, 16); this.chkExtRX106.TabIndex = 89; this.chkExtRX106.Text = "checkBox5"; this.chkExtRX106.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX126 // this.chkExtRX126.Image = null; this.chkExtRX126.Location = new System.Drawing.Point(144, 192); this.chkExtRX126.Name = "chkExtRX126"; this.chkExtRX126.Size = new System.Drawing.Size(16, 16); this.chkExtRX126.TabIndex = 88; this.chkExtRX126.Text = "checkBox5"; this.chkExtRX126.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX156 // this.chkExtRX156.Image = null; this.chkExtRX156.Location = new System.Drawing.Point(144, 176); this.chkExtRX156.Name = "chkExtRX156"; this.chkExtRX156.Size = new System.Drawing.Size(16, 16); this.chkExtRX156.TabIndex = 87; this.chkExtRX156.Text = "checkBox5"; this.chkExtRX156.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX176 // this.chkExtRX176.Image = null; this.chkExtRX176.Location = new System.Drawing.Point(144, 160); this.chkExtRX176.Name = "chkExtRX176"; this.chkExtRX176.Size = new System.Drawing.Size(16, 16); this.chkExtRX176.TabIndex = 86; this.chkExtRX176.Text = "checkBox5"; this.chkExtRX176.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX206 // this.chkExtRX206.Image = null; this.chkExtRX206.Location = new System.Drawing.Point(144, 144); this.chkExtRX206.Name = "chkExtRX206"; this.chkExtRX206.Size = new System.Drawing.Size(16, 16); this.chkExtRX206.TabIndex = 85; this.chkExtRX206.Text = "checkBox5"; this.chkExtRX206.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX306 // this.chkExtRX306.Image = null; this.chkExtRX306.Location = new System.Drawing.Point(144, 128); this.chkExtRX306.Name = "chkExtRX306"; this.chkExtRX306.Size = new System.Drawing.Size(16, 16); this.chkExtRX306.TabIndex = 84; this.chkExtRX306.Text = "checkBox5"; this.chkExtRX306.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX406 // this.chkExtRX406.Image = null; this.chkExtRX406.Location = new System.Drawing.Point(144, 112); this.chkExtRX406.Name = "chkExtRX406"; this.chkExtRX406.Size = new System.Drawing.Size(16, 16); this.chkExtRX406.TabIndex = 83; this.chkExtRX406.Text = "checkBox5"; this.chkExtRX406.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX606 // this.chkExtRX606.Image = null; this.chkExtRX606.Location = new System.Drawing.Point(144, 96); this.chkExtRX606.Name = "chkExtRX606"; this.chkExtRX606.Size = new System.Drawing.Size(16, 16); this.chkExtRX606.TabIndex = 82; this.chkExtRX606.Text = "checkBox5"; this.chkExtRX606.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX806 // this.chkExtRX806.Image = null; this.chkExtRX806.Location = new System.Drawing.Point(144, 80); this.chkExtRX806.Name = "chkExtRX806"; this.chkExtRX806.Size = new System.Drawing.Size(16, 16); this.chkExtRX806.TabIndex = 81; this.chkExtRX806.Text = "checkBox5"; this.chkExtRX806.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX1606 // this.chkExtRX1606.Image = null; this.chkExtRX1606.Location = new System.Drawing.Point(144, 64); this.chkExtRX1606.Name = "chkExtRX1606"; this.chkExtRX1606.Size = new System.Drawing.Size(16, 16); this.chkExtRX1606.TabIndex = 80; this.chkExtRX1606.Text = "checkBox5"; this.chkExtRX1606.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // lblExtRXX25 // this.lblExtRXX25.Image = null; this.lblExtRXX25.Location = new System.Drawing.Point(128, 40); this.lblExtRXX25.Name = "lblExtRXX25"; this.lblExtRXX25.Size = new System.Drawing.Size(16, 16); this.lblExtRXX25.TabIndex = 79; this.lblExtRXX25.Text = "5"; this.lblExtRXX25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXX24 // this.lblExtRXX24.Image = null; this.lblExtRXX24.Location = new System.Drawing.Point(112, 40); this.lblExtRXX24.Name = "lblExtRXX24"; this.lblExtRXX24.Size = new System.Drawing.Size(16, 16); this.lblExtRXX24.TabIndex = 78; this.lblExtRXX24.Text = "4"; this.lblExtRXX24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXX23 // this.lblExtRXX23.Image = null; this.lblExtRXX23.Location = new System.Drawing.Point(96, 40); this.lblExtRXX23.Name = "lblExtRXX23"; this.lblExtRXX23.Size = new System.Drawing.Size(16, 16); this.lblExtRXX23.TabIndex = 77; this.lblExtRXX23.Text = "3"; this.lblExtRXX23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXX22 // this.lblExtRXX22.Image = null; this.lblExtRXX22.Location = new System.Drawing.Point(80, 40); this.lblExtRXX22.Name = "lblExtRXX22"; this.lblExtRXX22.Size = new System.Drawing.Size(16, 16); this.lblExtRXX22.TabIndex = 76; this.lblExtRXX22.Text = "2"; this.lblExtRXX22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRX2 // this.lblExtRX2.Image = null; this.lblExtRX2.Location = new System.Drawing.Point(16, 240); this.lblExtRX2.Name = "lblExtRX2"; this.lblExtRX2.Size = new System.Drawing.Size(40, 16); this.lblExtRX2.TabIndex = 75; this.lblExtRX2.Text = "2m"; // // chkExtRX23 // this.chkExtRX23.Image = null; this.chkExtRX23.Location = new System.Drawing.Point(96, 240); this.chkExtRX23.Name = "chkExtRX23"; this.chkExtRX23.Size = new System.Drawing.Size(16, 16); this.chkExtRX23.TabIndex = 72; this.chkExtRX23.Text = "checkBox3"; this.chkExtRX23.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX22 // this.chkExtRX22.Image = null; this.chkExtRX22.Location = new System.Drawing.Point(80, 240); this.chkExtRX22.Name = "chkExtRX22"; this.chkExtRX22.Size = new System.Drawing.Size(16, 16); this.chkExtRX22.TabIndex = 71; this.chkExtRX22.Text = "checkBox2"; this.chkExtRX22.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX21 // this.chkExtRX21.Image = null; this.chkExtRX21.Location = new System.Drawing.Point(64, 240); this.chkExtRX21.Name = "chkExtRX21"; this.chkExtRX21.Size = new System.Drawing.Size(16, 16); this.chkExtRX21.TabIndex = 70; this.chkExtRX21.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX25 // this.chkExtRX25.Image = null; this.chkExtRX25.Location = new System.Drawing.Point(128, 240); this.chkExtRX25.Name = "chkExtRX25"; this.chkExtRX25.Size = new System.Drawing.Size(16, 16); this.chkExtRX25.TabIndex = 74; this.chkExtRX25.Text = "checkBox5"; this.chkExtRX25.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // chkExtRX24 // this.chkExtRX24.Image = null; this.chkExtRX24.Location = new System.Drawing.Point(112, 240); this.chkExtRX24.Name = "chkExtRX24"; this.chkExtRX24.Size = new System.Drawing.Size(16, 16); this.chkExtRX24.TabIndex = 73; this.chkExtRX24.Text = "checkBox4"; this.chkExtRX24.CheckedChanged += new System.EventHandler(this.chkExtRX2_CheckedChanged); // // lblExtRX6 // this.lblExtRX6.Image = null; this.lblExtRX6.Location = new System.Drawing.Point(16, 224); this.lblExtRX6.Name = "lblExtRX6"; this.lblExtRX6.Size = new System.Drawing.Size(40, 16); this.lblExtRX6.TabIndex = 69; this.lblExtRX6.Text = "6m"; // // chkExtRX63 // this.chkExtRX63.Image = null; this.chkExtRX63.Location = new System.Drawing.Point(96, 224); this.chkExtRX63.Name = "chkExtRX63"; this.chkExtRX63.Size = new System.Drawing.Size(16, 16); this.chkExtRX63.TabIndex = 66; this.chkExtRX63.Text = "checkBox3"; this.chkExtRX63.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX62 // this.chkExtRX62.Image = null; this.chkExtRX62.Location = new System.Drawing.Point(80, 224); this.chkExtRX62.Name = "chkExtRX62"; this.chkExtRX62.Size = new System.Drawing.Size(16, 16); this.chkExtRX62.TabIndex = 65; this.chkExtRX62.Text = "checkBox2"; this.chkExtRX62.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX61 // this.chkExtRX61.Image = null; this.chkExtRX61.Location = new System.Drawing.Point(64, 224); this.chkExtRX61.Name = "chkExtRX61"; this.chkExtRX61.Size = new System.Drawing.Size(16, 16); this.chkExtRX61.TabIndex = 64; this.chkExtRX61.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX65 // this.chkExtRX65.Image = null; this.chkExtRX65.Location = new System.Drawing.Point(128, 224); this.chkExtRX65.Name = "chkExtRX65"; this.chkExtRX65.Size = new System.Drawing.Size(16, 16); this.chkExtRX65.TabIndex = 68; this.chkExtRX65.Text = "checkBox5"; this.chkExtRX65.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // chkExtRX64 // this.chkExtRX64.Image = null; this.chkExtRX64.Location = new System.Drawing.Point(112, 224); this.chkExtRX64.Name = "chkExtRX64"; this.chkExtRX64.Size = new System.Drawing.Size(16, 16); this.chkExtRX64.TabIndex = 67; this.chkExtRX64.Text = "checkBox4"; this.chkExtRX64.CheckedChanged += new System.EventHandler(this.chkExtRX6_CheckedChanged); // // lblExtRX10 // this.lblExtRX10.Image = null; this.lblExtRX10.Location = new System.Drawing.Point(16, 208); this.lblExtRX10.Name = "lblExtRX10"; this.lblExtRX10.Size = new System.Drawing.Size(40, 16); this.lblExtRX10.TabIndex = 63; this.lblExtRX10.Text = "10m"; // // chkExtRX103 // this.chkExtRX103.Image = null; this.chkExtRX103.Location = new System.Drawing.Point(96, 208); this.chkExtRX103.Name = "chkExtRX103"; this.chkExtRX103.Size = new System.Drawing.Size(16, 16); this.chkExtRX103.TabIndex = 60; this.chkExtRX103.Text = "checkBox3"; this.chkExtRX103.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX102 // this.chkExtRX102.Image = null; this.chkExtRX102.Location = new System.Drawing.Point(80, 208); this.chkExtRX102.Name = "chkExtRX102"; this.chkExtRX102.Size = new System.Drawing.Size(16, 16); this.chkExtRX102.TabIndex = 59; this.chkExtRX102.Text = "checkBox2"; this.chkExtRX102.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX101 // this.chkExtRX101.Image = null; this.chkExtRX101.Location = new System.Drawing.Point(64, 208); this.chkExtRX101.Name = "chkExtRX101"; this.chkExtRX101.Size = new System.Drawing.Size(16, 16); this.chkExtRX101.TabIndex = 58; this.chkExtRX101.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX105 // this.chkExtRX105.Image = null; this.chkExtRX105.Location = new System.Drawing.Point(128, 208); this.chkExtRX105.Name = "chkExtRX105"; this.chkExtRX105.Size = new System.Drawing.Size(16, 16); this.chkExtRX105.TabIndex = 62; this.chkExtRX105.Text = "checkBox5"; this.chkExtRX105.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // chkExtRX104 // this.chkExtRX104.Image = null; this.chkExtRX104.Location = new System.Drawing.Point(112, 208); this.chkExtRX104.Name = "chkExtRX104"; this.chkExtRX104.Size = new System.Drawing.Size(16, 16); this.chkExtRX104.TabIndex = 61; this.chkExtRX104.Text = "checkBox4"; this.chkExtRX104.CheckedChanged += new System.EventHandler(this.chkExtRX10_CheckedChanged); // // lblExtRX12 // this.lblExtRX12.Image = null; this.lblExtRX12.Location = new System.Drawing.Point(16, 192); this.lblExtRX12.Name = "lblExtRX12"; this.lblExtRX12.Size = new System.Drawing.Size(40, 16); this.lblExtRX12.TabIndex = 57; this.lblExtRX12.Text = "12m"; // // chkExtRX123 // this.chkExtRX123.Image = null; this.chkExtRX123.Location = new System.Drawing.Point(96, 192); this.chkExtRX123.Name = "chkExtRX123"; this.chkExtRX123.Size = new System.Drawing.Size(16, 16); this.chkExtRX123.TabIndex = 54; this.chkExtRX123.Text = "checkBox3"; this.chkExtRX123.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX122 // this.chkExtRX122.Image = null; this.chkExtRX122.Location = new System.Drawing.Point(80, 192); this.chkExtRX122.Name = "chkExtRX122"; this.chkExtRX122.Size = new System.Drawing.Size(16, 16); this.chkExtRX122.TabIndex = 53; this.chkExtRX122.Text = "checkBox2"; this.chkExtRX122.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX121 // this.chkExtRX121.Image = null; this.chkExtRX121.Location = new System.Drawing.Point(64, 192); this.chkExtRX121.Name = "chkExtRX121"; this.chkExtRX121.Size = new System.Drawing.Size(16, 16); this.chkExtRX121.TabIndex = 52; this.chkExtRX121.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX125 // this.chkExtRX125.Image = null; this.chkExtRX125.Location = new System.Drawing.Point(128, 192); this.chkExtRX125.Name = "chkExtRX125"; this.chkExtRX125.Size = new System.Drawing.Size(16, 16); this.chkExtRX125.TabIndex = 56; this.chkExtRX125.Text = "checkBox5"; this.chkExtRX125.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // chkExtRX124 // this.chkExtRX124.Image = null; this.chkExtRX124.Location = new System.Drawing.Point(112, 192); this.chkExtRX124.Name = "chkExtRX124"; this.chkExtRX124.Size = new System.Drawing.Size(16, 16); this.chkExtRX124.TabIndex = 55; this.chkExtRX124.Text = "checkBox4"; this.chkExtRX124.CheckedChanged += new System.EventHandler(this.chkExtRX12_CheckedChanged); // // lblExtRX15 // this.lblExtRX15.Image = null; this.lblExtRX15.Location = new System.Drawing.Point(16, 176); this.lblExtRX15.Name = "lblExtRX15"; this.lblExtRX15.Size = new System.Drawing.Size(40, 16); this.lblExtRX15.TabIndex = 51; this.lblExtRX15.Text = "15m"; // // chkExtRX153 // this.chkExtRX153.Image = null; this.chkExtRX153.Location = new System.Drawing.Point(96, 176); this.chkExtRX153.Name = "chkExtRX153"; this.chkExtRX153.Size = new System.Drawing.Size(16, 16); this.chkExtRX153.TabIndex = 48; this.chkExtRX153.Text = "checkBox3"; this.chkExtRX153.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX152 // this.chkExtRX152.Image = null; this.chkExtRX152.Location = new System.Drawing.Point(80, 176); this.chkExtRX152.Name = "chkExtRX152"; this.chkExtRX152.Size = new System.Drawing.Size(16, 16); this.chkExtRX152.TabIndex = 47; this.chkExtRX152.Text = "checkBox2"; this.chkExtRX152.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX151 // this.chkExtRX151.Image = null; this.chkExtRX151.Location = new System.Drawing.Point(64, 176); this.chkExtRX151.Name = "chkExtRX151"; this.chkExtRX151.Size = new System.Drawing.Size(16, 16); this.chkExtRX151.TabIndex = 46; this.chkExtRX151.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX155 // this.chkExtRX155.Image = null; this.chkExtRX155.Location = new System.Drawing.Point(128, 176); this.chkExtRX155.Name = "chkExtRX155"; this.chkExtRX155.Size = new System.Drawing.Size(16, 16); this.chkExtRX155.TabIndex = 50; this.chkExtRX155.Text = "checkBox5"; this.chkExtRX155.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // chkExtRX154 // this.chkExtRX154.Image = null; this.chkExtRX154.Location = new System.Drawing.Point(112, 176); this.chkExtRX154.Name = "chkExtRX154"; this.chkExtRX154.Size = new System.Drawing.Size(16, 16); this.chkExtRX154.TabIndex = 49; this.chkExtRX154.Text = "checkBox4"; this.chkExtRX154.CheckedChanged += new System.EventHandler(this.chkExtRX15_CheckedChanged); // // lblExtRX17 // this.lblExtRX17.Image = null; this.lblExtRX17.Location = new System.Drawing.Point(16, 160); this.lblExtRX17.Name = "lblExtRX17"; this.lblExtRX17.Size = new System.Drawing.Size(40, 16); this.lblExtRX17.TabIndex = 45; this.lblExtRX17.Text = "17m"; // // chkExtRX173 // this.chkExtRX173.Image = null; this.chkExtRX173.Location = new System.Drawing.Point(96, 160); this.chkExtRX173.Name = "chkExtRX173"; this.chkExtRX173.Size = new System.Drawing.Size(16, 16); this.chkExtRX173.TabIndex = 42; this.chkExtRX173.Text = "checkBox3"; this.chkExtRX173.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX172 // this.chkExtRX172.Image = null; this.chkExtRX172.Location = new System.Drawing.Point(80, 160); this.chkExtRX172.Name = "chkExtRX172"; this.chkExtRX172.Size = new System.Drawing.Size(16, 16); this.chkExtRX172.TabIndex = 41; this.chkExtRX172.Text = "checkBox2"; this.chkExtRX172.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX171 // this.chkExtRX171.Image = null; this.chkExtRX171.Location = new System.Drawing.Point(64, 160); this.chkExtRX171.Name = "chkExtRX171"; this.chkExtRX171.Size = new System.Drawing.Size(16, 16); this.chkExtRX171.TabIndex = 40; this.chkExtRX171.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX175 // this.chkExtRX175.Image = null; this.chkExtRX175.Location = new System.Drawing.Point(128, 160); this.chkExtRX175.Name = "chkExtRX175"; this.chkExtRX175.Size = new System.Drawing.Size(16, 16); this.chkExtRX175.TabIndex = 44; this.chkExtRX175.Text = "checkBox5"; this.chkExtRX175.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // chkExtRX174 // this.chkExtRX174.Image = null; this.chkExtRX174.Location = new System.Drawing.Point(112, 160); this.chkExtRX174.Name = "chkExtRX174"; this.chkExtRX174.Size = new System.Drawing.Size(16, 16); this.chkExtRX174.TabIndex = 43; this.chkExtRX174.Text = "checkBox4"; this.chkExtRX174.CheckedChanged += new System.EventHandler(this.chkExtRX17_CheckedChanged); // // lblExtRX20 // this.lblExtRX20.Image = null; this.lblExtRX20.Location = new System.Drawing.Point(16, 144); this.lblExtRX20.Name = "lblExtRX20"; this.lblExtRX20.Size = new System.Drawing.Size(40, 16); this.lblExtRX20.TabIndex = 39; this.lblExtRX20.Text = "20m"; // // chkExtRX203 // this.chkExtRX203.Image = null; this.chkExtRX203.Location = new System.Drawing.Point(96, 144); this.chkExtRX203.Name = "chkExtRX203"; this.chkExtRX203.Size = new System.Drawing.Size(16, 16); this.chkExtRX203.TabIndex = 36; this.chkExtRX203.Text = "checkBox3"; this.chkExtRX203.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX202 // this.chkExtRX202.Image = null; this.chkExtRX202.Location = new System.Drawing.Point(80, 144); this.chkExtRX202.Name = "chkExtRX202"; this.chkExtRX202.Size = new System.Drawing.Size(16, 16); this.chkExtRX202.TabIndex = 35; this.chkExtRX202.Text = "checkBox2"; this.chkExtRX202.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX201 // this.chkExtRX201.Image = null; this.chkExtRX201.Location = new System.Drawing.Point(64, 144); this.chkExtRX201.Name = "chkExtRX201"; this.chkExtRX201.Size = new System.Drawing.Size(16, 16); this.chkExtRX201.TabIndex = 34; this.chkExtRX201.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX205 // this.chkExtRX205.Image = null; this.chkExtRX205.Location = new System.Drawing.Point(128, 144); this.chkExtRX205.Name = "chkExtRX205"; this.chkExtRX205.Size = new System.Drawing.Size(16, 16); this.chkExtRX205.TabIndex = 38; this.chkExtRX205.Text = "checkBox5"; this.chkExtRX205.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // chkExtRX204 // this.chkExtRX204.Image = null; this.chkExtRX204.Location = new System.Drawing.Point(112, 144); this.chkExtRX204.Name = "chkExtRX204"; this.chkExtRX204.Size = new System.Drawing.Size(16, 16); this.chkExtRX204.TabIndex = 37; this.chkExtRX204.Text = "checkBox4"; this.chkExtRX204.CheckedChanged += new System.EventHandler(this.chkExtRX20_CheckedChanged); // // lblExtRX30 // this.lblExtRX30.Image = null; this.lblExtRX30.Location = new System.Drawing.Point(16, 128); this.lblExtRX30.Name = "lblExtRX30"; this.lblExtRX30.Size = new System.Drawing.Size(40, 16); this.lblExtRX30.TabIndex = 33; this.lblExtRX30.Text = "30m"; // // chkExtRX303 // this.chkExtRX303.Image = null; this.chkExtRX303.Location = new System.Drawing.Point(96, 128); this.chkExtRX303.Name = "chkExtRX303"; this.chkExtRX303.Size = new System.Drawing.Size(16, 16); this.chkExtRX303.TabIndex = 30; this.chkExtRX303.Text = "checkBox3"; this.chkExtRX303.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX302 // this.chkExtRX302.Image = null; this.chkExtRX302.Location = new System.Drawing.Point(80, 128); this.chkExtRX302.Name = "chkExtRX302"; this.chkExtRX302.Size = new System.Drawing.Size(16, 16); this.chkExtRX302.TabIndex = 29; this.chkExtRX302.Text = "checkBox2"; this.chkExtRX302.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX301 // this.chkExtRX301.Image = null; this.chkExtRX301.Location = new System.Drawing.Point(64, 128); this.chkExtRX301.Name = "chkExtRX301"; this.chkExtRX301.Size = new System.Drawing.Size(16, 16); this.chkExtRX301.TabIndex = 28; this.chkExtRX301.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX305 // this.chkExtRX305.Image = null; this.chkExtRX305.Location = new System.Drawing.Point(128, 128); this.chkExtRX305.Name = "chkExtRX305"; this.chkExtRX305.Size = new System.Drawing.Size(16, 16); this.chkExtRX305.TabIndex = 32; this.chkExtRX305.Text = "checkBox5"; this.chkExtRX305.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // chkExtRX304 // this.chkExtRX304.Image = null; this.chkExtRX304.Location = new System.Drawing.Point(112, 128); this.chkExtRX304.Name = "chkExtRX304"; this.chkExtRX304.Size = new System.Drawing.Size(16, 16); this.chkExtRX304.TabIndex = 31; this.chkExtRX304.Text = "checkBox4"; this.chkExtRX304.CheckedChanged += new System.EventHandler(this.chkExtRX30_CheckedChanged); // // lblExtRX40 // this.lblExtRX40.Image = null; this.lblExtRX40.Location = new System.Drawing.Point(16, 112); this.lblExtRX40.Name = "lblExtRX40"; this.lblExtRX40.Size = new System.Drawing.Size(40, 16); this.lblExtRX40.TabIndex = 27; this.lblExtRX40.Text = "40m"; // // chkExtRX403 // this.chkExtRX403.Image = null; this.chkExtRX403.Location = new System.Drawing.Point(96, 112); this.chkExtRX403.Name = "chkExtRX403"; this.chkExtRX403.Size = new System.Drawing.Size(16, 16); this.chkExtRX403.TabIndex = 24; this.chkExtRX403.Text = "checkBox3"; this.chkExtRX403.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX402 // this.chkExtRX402.Image = null; this.chkExtRX402.Location = new System.Drawing.Point(80, 112); this.chkExtRX402.Name = "chkExtRX402"; this.chkExtRX402.Size = new System.Drawing.Size(16, 16); this.chkExtRX402.TabIndex = 23; this.chkExtRX402.Text = "checkBox2"; this.chkExtRX402.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX401 // this.chkExtRX401.Image = null; this.chkExtRX401.Location = new System.Drawing.Point(64, 112); this.chkExtRX401.Name = "chkExtRX401"; this.chkExtRX401.Size = new System.Drawing.Size(16, 16); this.chkExtRX401.TabIndex = 22; this.chkExtRX401.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX405 // this.chkExtRX405.Image = null; this.chkExtRX405.Location = new System.Drawing.Point(128, 112); this.chkExtRX405.Name = "chkExtRX405"; this.chkExtRX405.Size = new System.Drawing.Size(16, 16); this.chkExtRX405.TabIndex = 26; this.chkExtRX405.Text = "checkBox5"; this.chkExtRX405.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // chkExtRX404 // this.chkExtRX404.Image = null; this.chkExtRX404.Location = new System.Drawing.Point(112, 112); this.chkExtRX404.Name = "chkExtRX404"; this.chkExtRX404.Size = new System.Drawing.Size(16, 16); this.chkExtRX404.TabIndex = 25; this.chkExtRX404.Text = "checkBox4"; this.chkExtRX404.CheckedChanged += new System.EventHandler(this.chkExtRX40_CheckedChanged); // // lblExtRX60 // this.lblExtRX60.Image = null; this.lblExtRX60.Location = new System.Drawing.Point(16, 96); this.lblExtRX60.Name = "lblExtRX60"; this.lblExtRX60.Size = new System.Drawing.Size(40, 16); this.lblExtRX60.TabIndex = 21; this.lblExtRX60.Text = "60m"; // // chkExtRX603 // this.chkExtRX603.Image = null; this.chkExtRX603.Location = new System.Drawing.Point(96, 96); this.chkExtRX603.Name = "chkExtRX603"; this.chkExtRX603.Size = new System.Drawing.Size(16, 16); this.chkExtRX603.TabIndex = 18; this.chkExtRX603.Text = "checkBox3"; this.chkExtRX603.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX602 // this.chkExtRX602.Image = null; this.chkExtRX602.Location = new System.Drawing.Point(80, 96); this.chkExtRX602.Name = "chkExtRX602"; this.chkExtRX602.Size = new System.Drawing.Size(16, 16); this.chkExtRX602.TabIndex = 17; this.chkExtRX602.Text = "checkBox2"; this.chkExtRX602.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX601 // this.chkExtRX601.Image = null; this.chkExtRX601.Location = new System.Drawing.Point(64, 96); this.chkExtRX601.Name = "chkExtRX601"; this.chkExtRX601.Size = new System.Drawing.Size(16, 16); this.chkExtRX601.TabIndex = 16; this.chkExtRX601.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX605 // this.chkExtRX605.Image = null; this.chkExtRX605.Location = new System.Drawing.Point(128, 96); this.chkExtRX605.Name = "chkExtRX605"; this.chkExtRX605.Size = new System.Drawing.Size(16, 16); this.chkExtRX605.TabIndex = 20; this.chkExtRX605.Text = "checkBox5"; this.chkExtRX605.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // chkExtRX604 // this.chkExtRX604.Image = null; this.chkExtRX604.Location = new System.Drawing.Point(112, 96); this.chkExtRX604.Name = "chkExtRX604"; this.chkExtRX604.Size = new System.Drawing.Size(16, 16); this.chkExtRX604.TabIndex = 19; this.chkExtRX604.Text = "checkBox4"; this.chkExtRX604.CheckedChanged += new System.EventHandler(this.chkExtRX60_CheckedChanged); // // lblExtRX80 // this.lblExtRX80.Image = null; this.lblExtRX80.Location = new System.Drawing.Point(16, 80); this.lblExtRX80.Name = "lblExtRX80"; this.lblExtRX80.Size = new System.Drawing.Size(40, 16); this.lblExtRX80.TabIndex = 15; this.lblExtRX80.Text = "80m"; // // chkExtRX803 // this.chkExtRX803.Image = null; this.chkExtRX803.Location = new System.Drawing.Point(96, 80); this.chkExtRX803.Name = "chkExtRX803"; this.chkExtRX803.Size = new System.Drawing.Size(16, 16); this.chkExtRX803.TabIndex = 12; this.chkExtRX803.Text = "checkBox3"; this.chkExtRX803.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX802 // this.chkExtRX802.Image = null; this.chkExtRX802.Location = new System.Drawing.Point(80, 80); this.chkExtRX802.Name = "chkExtRX802"; this.chkExtRX802.Size = new System.Drawing.Size(16, 16); this.chkExtRX802.TabIndex = 11; this.chkExtRX802.Text = "checkBox2"; this.chkExtRX802.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX801 // this.chkExtRX801.Image = null; this.chkExtRX801.Location = new System.Drawing.Point(64, 80); this.chkExtRX801.Name = "chkExtRX801"; this.chkExtRX801.Size = new System.Drawing.Size(16, 16); this.chkExtRX801.TabIndex = 10; this.chkExtRX801.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX805 // this.chkExtRX805.Image = null; this.chkExtRX805.Location = new System.Drawing.Point(128, 80); this.chkExtRX805.Name = "chkExtRX805"; this.chkExtRX805.Size = new System.Drawing.Size(16, 16); this.chkExtRX805.TabIndex = 14; this.chkExtRX805.Text = "checkBox5"; this.chkExtRX805.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // chkExtRX804 // this.chkExtRX804.Image = null; this.chkExtRX804.Location = new System.Drawing.Point(112, 80); this.chkExtRX804.Name = "chkExtRX804"; this.chkExtRX804.Size = new System.Drawing.Size(16, 16); this.chkExtRX804.TabIndex = 13; this.chkExtRX804.Text = "checkBox4"; this.chkExtRX804.CheckedChanged += new System.EventHandler(this.chkExtRX80_CheckedChanged); // // lblExtRXX2Pins // this.lblExtRXX2Pins.Image = null; this.lblExtRXX2Pins.Location = new System.Drawing.Point(64, 24); this.lblExtRXX2Pins.Name = "lblExtRXX2Pins"; this.lblExtRXX2Pins.Size = new System.Drawing.Size(96, 16); this.lblExtRXX2Pins.TabIndex = 9; this.lblExtRXX2Pins.Text = "X2 Pins"; this.lblExtRXX2Pins.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblExtRXBand // this.lblExtRXBand.Image = null; this.lblExtRXBand.Location = new System.Drawing.Point(16, 24); this.lblExtRXBand.Name = "lblExtRXBand"; this.lblExtRXBand.Size = new System.Drawing.Size(32, 16); this.lblExtRXBand.TabIndex = 8; this.lblExtRXBand.Text = "Band"; // // lblExtRX160 // this.lblExtRX160.Image = null; this.lblExtRX160.Location = new System.Drawing.Point(16, 64); this.lblExtRX160.Name = "lblExtRX160"; this.lblExtRX160.Size = new System.Drawing.Size(40, 16); this.lblExtRX160.TabIndex = 7; this.lblExtRX160.Text = "160m"; // // chkExtRX1603 // this.chkExtRX1603.Image = null; this.chkExtRX1603.Location = new System.Drawing.Point(96, 64); this.chkExtRX1603.Name = "chkExtRX1603"; this.chkExtRX1603.Size = new System.Drawing.Size(16, 16); this.chkExtRX1603.TabIndex = 3; this.chkExtRX1603.Text = "checkBox3"; this.chkExtRX1603.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // chkExtRX1602 // this.chkExtRX1602.Image = null; this.chkExtRX1602.Location = new System.Drawing.Point(80, 64); this.chkExtRX1602.Name = "chkExtRX1602"; this.chkExtRX1602.Size = new System.Drawing.Size(16, 16); this.chkExtRX1602.TabIndex = 2; this.chkExtRX1602.Text = "checkBox2"; this.chkExtRX1602.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // chkExtRX1601 // this.chkExtRX1601.Image = null; this.chkExtRX1601.Location = new System.Drawing.Point(64, 64); this.chkExtRX1601.Name = "chkExtRX1601"; this.chkExtRX1601.Size = new System.Drawing.Size(16, 16); this.chkExtRX1601.TabIndex = 1; this.chkExtRX1601.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // lblExtRXX21 // this.lblExtRXX21.Image = null; this.lblExtRXX21.Location = new System.Drawing.Point(64, 40); this.lblExtRXX21.Name = "lblExtRXX21"; this.lblExtRXX21.Size = new System.Drawing.Size(16, 16); this.lblExtRXX21.TabIndex = 6; this.lblExtRXX21.Text = "1"; this.lblExtRXX21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // chkExtRX1605 // this.chkExtRX1605.Image = null; this.chkExtRX1605.Location = new System.Drawing.Point(128, 64); this.chkExtRX1605.Name = "chkExtRX1605"; this.chkExtRX1605.Size = new System.Drawing.Size(16, 16); this.chkExtRX1605.TabIndex = 5; this.chkExtRX1605.Text = "checkBox5"; this.chkExtRX1605.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // chkExtRX1604 // this.chkExtRX1604.Image = null; this.chkExtRX1604.Location = new System.Drawing.Point(112, 64); this.chkExtRX1604.Name = "chkExtRX1604"; this.chkExtRX1604.Size = new System.Drawing.Size(16, 16); this.chkExtRX1604.TabIndex = 4; this.chkExtRX1604.Text = "checkBox4"; this.chkExtRX1604.CheckedChanged += new System.EventHandler(this.chkExtRX160_CheckedChanged); // // tpAudio // this.tpAudio.Controls.Add(this.tcAudio); this.tpAudio.Location = new System.Drawing.Point(4, 22); this.tpAudio.Name = "tpAudio"; this.tpAudio.Size = new System.Drawing.Size(584, 286); this.tpAudio.TabIndex = 0; this.tpAudio.Text = "Audio"; // // tcAudio // this.tcAudio.Controls.Add(this.tpAudioCard1); this.tcAudio.Controls.Add(this.tpVAC); this.tcAudio.Location = new System.Drawing.Point(0, 0); this.tcAudio.Name = "tcAudio"; this.tcAudio.SelectedIndex = 0; this.tcAudio.Size = new System.Drawing.Size(600, 344); this.tcAudio.TabIndex = 35; // // tpAudioCard1 // this.tpAudioCard1.Controls.Add(this.groupBoxTS1); this.tpAudioCard1.Controls.Add(this.chkAudioExpert); this.tpAudioCard1.Controls.Add(this.grpAudioMicBoost); this.tpAudioCard1.Controls.Add(this.grpAudioChannels); this.tpAudioCard1.Controls.Add(this.grpAudioMicInGain1); this.tpAudioCard1.Controls.Add(this.grpAudioLineInGain1); this.tpAudioCard1.Controls.Add(this.grpAudioVolts1); this.tpAudioCard1.Controls.Add(this.grpAudioDetails1); this.tpAudioCard1.Controls.Add(this.grpAudioLatency1); this.tpAudioCard1.Controls.Add(this.grpAudioCard); this.tpAudioCard1.Controls.Add(this.grpAudioBufferSize1); this.tpAudioCard1.Controls.Add(this.grpAudioSampleRate1); this.tpAudioCard1.Location = new System.Drawing.Point(4, 22); this.tpAudioCard1.Name = "tpAudioCard1"; this.tpAudioCard1.Size = new System.Drawing.Size(592, 318); this.tpAudioCard1.TabIndex = 0; this.tpAudioCard1.Text = "Primary"; // // groupBoxTS1 // this.groupBoxTS1.Controls.Add(this.udIQCorrection); this.groupBoxTS1.Location = new System.Drawing.Point(472, 8); this.groupBoxTS1.Name = "groupBoxTS1"; this.groupBoxTS1.Size = new System.Drawing.Size(104, 56); this.groupBoxTS1.TabIndex = 51; this.groupBoxTS1.TabStop = false; this.groupBoxTS1.Text = "IQ Correction"; this.groupBoxTS1.Enter += new System.EventHandler(this.groupBoxTS1_Enter); // // udIQCorrection // this.udIQCorrection.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udIQCorrection.Location = new System.Drawing.Point(16, 24); this.udIQCorrection.Maximum = new System.Decimal(new int[] { 32, 0, 0, 0}); this.udIQCorrection.Minimum = new System.Decimal(new int[] { 32, 0, 0, -2147483648}); this.udIQCorrection.Name = "udIQCorrection"; this.udIQCorrection.Size = new System.Drawing.Size(72, 20); this.udIQCorrection.TabIndex = 51; this.toolTip1.SetToolTip(this.udIQCorrection, "Corrects sample shift for Left and Right Soundcard input. "); this.udIQCorrection.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udIQCorrection.ValueChanged += new System.EventHandler(this.udIQCorrection_ValueChanged); // // chkAudioExpert // this.chkAudioExpert.Image = null; this.chkAudioExpert.Location = new System.Drawing.Point(520, 232); this.chkAudioExpert.Name = "chkAudioExpert"; this.chkAudioExpert.Size = new System.Drawing.Size(56, 24); this.chkAudioExpert.TabIndex = 50; this.chkAudioExpert.Text = "Expert"; this.chkAudioExpert.CheckedChanged += new System.EventHandler(this.chkAudioExpert_CheckedChanged); // // grpAudioMicBoost // this.grpAudioMicBoost.Controls.Add(this.chkAudioMicBoost); this.grpAudioMicBoost.Location = new System.Drawing.Point(440, 216); this.grpAudioMicBoost.Name = "grpAudioMicBoost"; this.grpAudioMicBoost.Size = new System.Drawing.Size(72, 48); this.grpAudioMicBoost.TabIndex = 43; this.grpAudioMicBoost.TabStop = false; this.grpAudioMicBoost.Text = "Mic Boost"; // // chkAudioMicBoost // this.chkAudioMicBoost.Image = null; this.chkAudioMicBoost.Location = new System.Drawing.Point(16, 20); this.chkAudioMicBoost.Name = "chkAudioMicBoost"; this.chkAudioMicBoost.Size = new System.Drawing.Size(40, 16); this.chkAudioMicBoost.TabIndex = 6; this.chkAudioMicBoost.Text = "On"; this.chkAudioMicBoost.CheckedChanged += new System.EventHandler(this.chkAudioMicBoost_CheckedChanged); // // grpAudioChannels // this.grpAudioChannels.Controls.Add(this.comboAudioChannels1); this.grpAudioChannels.Location = new System.Drawing.Point(440, 72); this.grpAudioChannels.Name = "grpAudioChannels"; this.grpAudioChannels.Size = new System.Drawing.Size(96, 56); this.grpAudioChannels.TabIndex = 42; this.grpAudioChannels.TabStop = false; this.grpAudioChannels.Text = "Channels"; // // comboAudioChannels1 // this.comboAudioChannels1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioChannels1.DropDownWidth = 56; this.comboAudioChannels1.Items.AddRange(new object[] { "2", "4", "6"}); this.comboAudioChannels1.Location = new System.Drawing.Point(16, 24); this.comboAudioChannels1.Name = "comboAudioChannels1"; this.comboAudioChannels1.Size = new System.Drawing.Size(56, 20); this.comboAudioChannels1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioChannels1, "Number of channels to open"); this.comboAudioChannels1.SelectedIndexChanged += new System.EventHandler(this.comboAudioChannels1_SelectedIndexChanged); // // grpAudioMicInGain1 // this.grpAudioMicInGain1.Controls.Add(this.udAudioMicGain1); this.grpAudioMicInGain1.Location = new System.Drawing.Point(344, 136); this.grpAudioMicInGain1.Name = "grpAudioMicInGain1"; this.grpAudioMicInGain1.Size = new System.Drawing.Size(88, 56); this.grpAudioMicInGain1.TabIndex = 41; this.grpAudioMicInGain1.TabStop = false; this.grpAudioMicInGain1.Text = "Mic In Gain"; // // udAudioMicGain1 // this.udAudioMicGain1.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAudioMicGain1.Location = new System.Drawing.Point(16, 24); this.udAudioMicGain1.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udAudioMicGain1.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAudioMicGain1.Name = "udAudioMicGain1"; this.udAudioMicGain1.Size = new System.Drawing.Size(40, 20); this.udAudioMicGain1.TabIndex = 51; this.toolTip1.SetToolTip(this.udAudioMicGain1, "MIC Gain - Input Volume"); this.udAudioMicGain1.Value = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udAudioMicGain1.LostFocus += new System.EventHandler(this.udAudioMicGain1_LostFocus); this.udAudioMicGain1.ValueChanged += new System.EventHandler(this.udAudioMicGain1_ValueChanged); // // grpAudioLineInGain1 // this.grpAudioLineInGain1.Controls.Add(this.udAudioLineIn1); this.grpAudioLineInGain1.Location = new System.Drawing.Point(344, 72); this.grpAudioLineInGain1.Name = "grpAudioLineInGain1"; this.grpAudioLineInGain1.Size = new System.Drawing.Size(88, 56); this.grpAudioLineInGain1.TabIndex = 40; this.grpAudioLineInGain1.TabStop = false; this.grpAudioLineInGain1.Text = "Line In Gain"; // // udAudioLineIn1 // this.udAudioLineIn1.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAudioLineIn1.Location = new System.Drawing.Point(16, 24); this.udAudioLineIn1.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udAudioLineIn1.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAudioLineIn1.Name = "udAudioLineIn1"; this.udAudioLineIn1.Size = new System.Drawing.Size(40, 20); this.udAudioLineIn1.TabIndex = 51; this.toolTip1.SetToolTip(this.udAudioLineIn1, "IF Gain - Input Volume"); this.udAudioLineIn1.Value = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udAudioLineIn1.LostFocus += new System.EventHandler(this.udAudioLineIn1_LostFocus); this.udAudioLineIn1.ValueChanged += new System.EventHandler(this.udAudioLineIn1_ValueChanged); // // grpAudioVolts1 // this.grpAudioVolts1.Controls.Add(this.btnAudioVoltTest1); this.grpAudioVolts1.Controls.Add(this.udAudioVoltage1); this.grpAudioVolts1.Location = new System.Drawing.Point(240, 200); this.grpAudioVolts1.Name = "grpAudioVolts1"; this.grpAudioVolts1.Size = new System.Drawing.Size(128, 56); this.grpAudioVolts1.TabIndex = 39; this.grpAudioVolts1.TabStop = false; this.grpAudioVolts1.Text = "Output Voltage"; // // btnAudioVoltTest1 // this.btnAudioVoltTest1.Image = null; this.btnAudioVoltTest1.Location = new System.Drawing.Point(72, 24); this.btnAudioVoltTest1.Name = "btnAudioVoltTest1"; this.btnAudioVoltTest1.Size = new System.Drawing.Size(40, 23); this.btnAudioVoltTest1.TabIndex = 2; this.btnAudioVoltTest1.Text = "Test"; this.toolTip1.SetToolTip(this.btnAudioVoltTest1, "Outputs a full scale sinewave at the CW pitch for determining the RMS Voltage of " + "the sound card."); this.btnAudioVoltTest1.Click += new System.EventHandler(this.btnAudioVoltTest1_Click); // // udAudioVoltage1 // this.udAudioVoltage1.DecimalPlaces = 2; this.udAudioVoltage1.Increment = new System.Decimal(new int[] { 1, 0, 0, 131072}); this.udAudioVoltage1.Location = new System.Drawing.Point(16, 24); this.udAudioVoltage1.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udAudioVoltage1.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAudioVoltage1.Name = "udAudioVoltage1"; this.udAudioVoltage1.Size = new System.Drawing.Size(48, 20); this.udAudioVoltage1.TabIndex = 1; this.toolTip1.SetToolTip(this.udAudioVoltage1, "The measured VRMS on the sound card output when outputting a full range tone."); this.udAudioVoltage1.Value = new System.Decimal(new int[] { 223, 0, 0, 131072}); this.udAudioVoltage1.LostFocus += new System.EventHandler(this.udAudioVoltage1_LostFocus); this.udAudioVoltage1.ValueChanged += new System.EventHandler(this.udAudioVoltage1_ValueChanged); // // grpAudioDetails1 // this.grpAudioDetails1.Controls.Add(this.comboAudioTransmit1); this.grpAudioDetails1.Controls.Add(this.lblAudioMixer1); this.grpAudioDetails1.Controls.Add(this.lblAudioOutput1); this.grpAudioDetails1.Controls.Add(this.comboAudioOutput1); this.grpAudioDetails1.Controls.Add(this.lblAudioInput1); this.grpAudioDetails1.Controls.Add(this.lblAudioDriver1); this.grpAudioDetails1.Controls.Add(this.comboAudioInput1); this.grpAudioDetails1.Controls.Add(this.comboAudioDriver1); this.grpAudioDetails1.Controls.Add(this.comboAudioMixer1); this.grpAudioDetails1.Controls.Add(this.lblAudioTransmit1); this.grpAudioDetails1.Controls.Add(this.lblAudioReceive1); this.grpAudioDetails1.Controls.Add(this.comboAudioReceive1); this.grpAudioDetails1.Location = new System.Drawing.Point(8, 8); this.grpAudioDetails1.Name = "grpAudioDetails1"; this.grpAudioDetails1.Size = new System.Drawing.Size(224, 216); this.grpAudioDetails1.TabIndex = 34; this.grpAudioDetails1.TabStop = false; this.grpAudioDetails1.Text = "Primary Sound Card Setup Details"; // // comboAudioTransmit1 // this.comboAudioTransmit1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioTransmit1.DropDownWidth = 160; this.comboAudioTransmit1.ItemHeight = 13; this.comboAudioTransmit1.Location = new System.Drawing.Point(56, 184); this.comboAudioTransmit1.Name = "comboAudioTransmit1"; this.comboAudioTransmit1.Size = new System.Drawing.Size(160, 20); this.comboAudioTransmit1.TabIndex = 2; this.toolTip1.SetToolTip(this.comboAudioTransmit1, "Transmit mode mixer MUX setting."); this.comboAudioTransmit1.SelectedIndexChanged += new System.EventHandler(this.comboAudioTransmit1_SelectedIndexChanged); // // lblAudioMixer1 // this.lblAudioMixer1.Image = null; this.lblAudioMixer1.Location = new System.Drawing.Point(8, 120); this.lblAudioMixer1.Name = "lblAudioMixer1"; this.lblAudioMixer1.Size = new System.Drawing.Size(48, 23); this.lblAudioMixer1.TabIndex = 22; this.lblAudioMixer1.Text = "Mixer:"; // // lblAudioOutput1 // this.lblAudioOutput1.Image = null; this.lblAudioOutput1.Location = new System.Drawing.Point(8, 88); this.lblAudioOutput1.Name = "lblAudioOutput1"; this.lblAudioOutput1.Size = new System.Drawing.Size(48, 16); this.lblAudioOutput1.TabIndex = 6; this.lblAudioOutput1.Text = "Output:"; // // comboAudioOutput1 // this.comboAudioOutput1.DisplayMember = "sdfg"; this.comboAudioOutput1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioOutput1.DropDownWidth = 160; this.comboAudioOutput1.ItemHeight = 13; this.comboAudioOutput1.Location = new System.Drawing.Point(56, 88); this.comboAudioOutput1.Name = "comboAudioOutput1"; this.comboAudioOutput1.Size = new System.Drawing.Size(160, 20); this.comboAudioOutput1.TabIndex = 5; this.toolTip1.SetToolTip(this.comboAudioOutput1, "Output Audio Device"); this.comboAudioOutput1.SelectedIndexChanged += new System.EventHandler(this.comboAudioOutput1_SelectedIndexChanged); // // lblAudioInput1 // this.lblAudioInput1.Image = null; this.lblAudioInput1.Location = new System.Drawing.Point(8, 56); this.lblAudioInput1.Name = "lblAudioInput1"; this.lblAudioInput1.Size = new System.Drawing.Size(48, 16); this.lblAudioInput1.TabIndex = 4; this.lblAudioInput1.Text = "Input:"; // // lblAudioDriver1 // this.lblAudioDriver1.Image = null; this.lblAudioDriver1.Location = new System.Drawing.Point(8, 24); this.lblAudioDriver1.Name = "lblAudioDriver1"; this.lblAudioDriver1.Size = new System.Drawing.Size(48, 16); this.lblAudioDriver1.TabIndex = 3; this.lblAudioDriver1.Text = "Driver:"; // // comboAudioInput1 // this.comboAudioInput1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioInput1.DropDownWidth = 160; this.comboAudioInput1.ItemHeight = 13; this.comboAudioInput1.Location = new System.Drawing.Point(56, 56); this.comboAudioInput1.Name = "comboAudioInput1"; this.comboAudioInput1.Size = new System.Drawing.Size(160, 20); this.comboAudioInput1.TabIndex = 1; this.toolTip1.SetToolTip(this.comboAudioInput1, "Input Audio Device"); this.comboAudioInput1.SelectedIndexChanged += new System.EventHandler(this.comboAudioInput1_SelectedIndexChanged); // // comboAudioDriver1 // this.comboAudioDriver1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioDriver1.DropDownWidth = 160; this.comboAudioDriver1.ItemHeight = 13; this.comboAudioDriver1.Location = new System.Drawing.Point(56, 24); this.comboAudioDriver1.Name = "comboAudioDriver1"; this.comboAudioDriver1.Size = new System.Drawing.Size(160, 20); this.comboAudioDriver1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioDriver1, "Sound Card Driver Selection"); this.comboAudioDriver1.SelectedIndexChanged += new System.EventHandler(this.comboAudioDriver1_SelectedIndexChanged); // // comboAudioMixer1 // this.comboAudioMixer1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioMixer1.DropDownWidth = 160; this.comboAudioMixer1.ItemHeight = 13; this.comboAudioMixer1.Location = new System.Drawing.Point(56, 120); this.comboAudioMixer1.Name = "comboAudioMixer1"; this.comboAudioMixer1.Size = new System.Drawing.Size(160, 20); this.comboAudioMixer1.TabIndex = 21; this.toolTip1.SetToolTip(this.comboAudioMixer1, "Audio Mixer Device "); this.comboAudioMixer1.SelectedIndexChanged += new System.EventHandler(this.comboAudioMixer1_SelectedIndexChanged); // // lblAudioTransmit1 // this.lblAudioTransmit1.Image = null; this.lblAudioTransmit1.Location = new System.Drawing.Point(8, 184); this.lblAudioTransmit1.Name = "lblAudioTransmit1"; this.lblAudioTransmit1.Size = new System.Drawing.Size(56, 16); this.lblAudioTransmit1.TabIndex = 3; this.lblAudioTransmit1.Text = "Transmit:"; // // lblAudioReceive1 // this.lblAudioReceive1.Image = null; this.lblAudioReceive1.Location = new System.Drawing.Point(8, 152); this.lblAudioReceive1.Name = "lblAudioReceive1"; this.lblAudioReceive1.Size = new System.Drawing.Size(48, 16); this.lblAudioReceive1.TabIndex = 1; this.lblAudioReceive1.Text = "Receive:"; // // comboAudioReceive1 // this.comboAudioReceive1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioReceive1.DropDownWidth = 160; this.comboAudioReceive1.ItemHeight = 13; this.comboAudioReceive1.Location = new System.Drawing.Point(56, 152); this.comboAudioReceive1.Name = "comboAudioReceive1"; this.comboAudioReceive1.Size = new System.Drawing.Size(160, 20); this.comboAudioReceive1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioReceive1, "Receive mode Mixer MUX setting"); this.comboAudioReceive1.SelectedIndexChanged += new System.EventHandler(this.comboAudioReceive1_SelectedIndexChanged); // // grpAudioLatency1 // this.grpAudioLatency1.Controls.Add(this.chkAudioLatencyManual1); this.grpAudioLatency1.Controls.Add(this.udAudioLatency1); this.grpAudioLatency1.Location = new System.Drawing.Point(440, 136); this.grpAudioLatency1.Name = "grpAudioLatency1"; this.grpAudioLatency1.Size = new System.Drawing.Size(96, 80); this.grpAudioLatency1.TabIndex = 38; this.grpAudioLatency1.TabStop = false; this.grpAudioLatency1.Text = "Latency (ms)"; this.grpAudioLatency1.Visible = false; // // chkAudioLatencyManual1 // this.chkAudioLatencyManual1.Image = null; this.chkAudioLatencyManual1.Location = new System.Drawing.Point(16, 24); this.chkAudioLatencyManual1.Name = "chkAudioLatencyManual1"; this.chkAudioLatencyManual1.Size = new System.Drawing.Size(64, 16); this.chkAudioLatencyManual1.TabIndex = 5; this.chkAudioLatencyManual1.Text = "Manual"; this.chkAudioLatencyManual1.CheckedChanged += new System.EventHandler(this.chkAudioLatencyManual1_CheckedChanged); // // udAudioLatency1 // this.udAudioLatency1.Enabled = false; this.udAudioLatency1.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAudioLatency1.Location = new System.Drawing.Point(16, 48); this.udAudioLatency1.Maximum = new System.Decimal(new int[] { 240, 0, 0, 0}); this.udAudioLatency1.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAudioLatency1.Name = "udAudioLatency1"; this.udAudioLatency1.Size = new System.Drawing.Size(48, 20); this.udAudioLatency1.TabIndex = 0; this.toolTip1.SetToolTip(this.udAudioLatency1, "Adds latency/stability to the audio subsystem. Not needed when using ASIO driver" + ". Mainly for compatibility. The Manual setting should only be used for unsuppo" + "rted cards."); this.udAudioLatency1.Value = new System.Decimal(new int[] { 120, 0, 0, 0}); this.udAudioLatency1.LostFocus += new System.EventHandler(this.udAudioLatency1_LostFocus); this.udAudioLatency1.ValueChanged += new System.EventHandler(this.udAudioLatency1_ValueChanged); // // grpAudioCard // this.grpAudioCard.Controls.Add(this.comboAudioSoundCard); this.grpAudioCard.Location = new System.Drawing.Point(240, 8); this.grpAudioCard.Name = "grpAudioCard"; this.grpAudioCard.Size = new System.Drawing.Size(224, 56); this.grpAudioCard.TabIndex = 37; this.grpAudioCard.TabStop = false; this.grpAudioCard.Text = "Sound Card Selection"; // // comboAudioSoundCard // this.comboAudioSoundCard.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSoundCard.DropDownWidth = 184; this.comboAudioSoundCard.Items.AddRange(new object[] { "M-Audio Delta 44 (PCI)", "PreSonus FireBox (FireWire)", "Edirol FA-66 (FireWire)", "SB Audigy (PCI)", "SB Audigy 2 (PCI)", "SB Audigy 2 ZS (PCI)", "HPSDR Janus/Ozy (USB2)", "Sound Blaster Extigy (USB)", "Sound Blaster MP3+ (USB)", "Turtle Beach Santa Cruz (PCI)", "Unsupported Card"}); this.comboAudioSoundCard.Location = new System.Drawing.Point(24, 24); this.comboAudioSoundCard.MaxDropDownItems = 11; this.comboAudioSoundCard.Name = "comboAudioSoundCard"; this.comboAudioSoundCard.Size = new System.Drawing.Size(184, 20); this.comboAudioSoundCard.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioSoundCard, "Sound Card Selection (use Unsupported Card if your card isn\'t in the list -- this" + " will require manual setup of the below controls)."); this.comboAudioSoundCard.SelectedIndexChanged += new System.EventHandler(this.comboAudioSoundCard_SelectedIndexChanged); // // grpAudioBufferSize1 // this.grpAudioBufferSize1.Controls.Add(this.comboAudioBuffer1); this.grpAudioBufferSize1.Location = new System.Drawing.Point(240, 72); this.grpAudioBufferSize1.Name = "grpAudioBufferSize1"; this.grpAudioBufferSize1.Size = new System.Drawing.Size(96, 56); this.grpAudioBufferSize1.TabIndex = 36; this.grpAudioBufferSize1.TabStop = false; this.grpAudioBufferSize1.Text = "Buffer Size"; // // comboAudioBuffer1 // this.comboAudioBuffer1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioBuffer1.DropDownWidth = 56; this.comboAudioBuffer1.Items.AddRange(new object[] { "256", "512", "1024", "2048"}); this.comboAudioBuffer1.Location = new System.Drawing.Point(16, 24); this.comboAudioBuffer1.Name = "comboAudioBuffer1"; this.comboAudioBuffer1.Size = new System.Drawing.Size(56, 20); this.comboAudioBuffer1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboAudioBuffer1, "Samples per audio buffer. Smaller settings give less latency, more CPU load."); this.comboAudioBuffer1.SelectedIndexChanged += new System.EventHandler(this.comboAudioBuffer1_SelectedIndexChanged); // // grpAudioSampleRate1 // this.grpAudioSampleRate1.Controls.Add(this.comboAudioSampleRate1); this.grpAudioSampleRate1.Location = new System.Drawing.Point(240, 136); this.grpAudioSampleRate1.Name = "grpAudioSampleRate1"; this.grpAudioSampleRate1.Size = new System.Drawing.Size(96, 56); this.grpAudioSampleRate1.TabIndex = 35; this.grpAudioSampleRate1.TabStop = false; this.grpAudioSampleRate1.Text = "Sample Rate"; // // comboAudioSampleRate1 // this.comboAudioSampleRate1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSampleRate1.DropDownWidth = 64; this.comboAudioSampleRate1.Items.AddRange(new object[] { "48000"}); this.comboAudioSampleRate1.Location = new System.Drawing.Point(16, 24); this.comboAudioSampleRate1.Name = "comboAudioSampleRate1"; this.comboAudioSampleRate1.Size = new System.Drawing.Size(64, 20); this.comboAudioSampleRate1.TabIndex = 4; this.toolTip1.SetToolTip(this.comboAudioSampleRate1, "Sample Rate -- Higher sampling rates yield a wider panadapter and less latency at" + " a cost of CPU% and filter sharpness"); this.comboAudioSampleRate1.SelectedIndexChanged += new System.EventHandler(this.comboAudioSampleRate1_SelectedIndexChanged); // // tpVAC // this.tpVAC.Controls.Add(this.chkEnableLoopAudio); this.tpVAC.Controls.Add(this.grpDirectIQOutput); this.tpVAC.Controls.Add(this.chkVACCombine); this.tpVAC.Controls.Add(this.chkVACAllowBypass); this.tpVAC.Controls.Add(this.grpAudioVACAutoEnable); this.tpVAC.Controls.Add(this.grpAudioVACGain); this.tpVAC.Controls.Add(this.grpAudio2Stereo); this.tpVAC.Controls.Add(this.grpAudioLatency2); this.tpVAC.Controls.Add(this.grpAudioSampleRate2); this.tpVAC.Controls.Add(this.grpAudioBuffer2); this.tpVAC.Controls.Add(this.grpAudioDetails2); this.tpVAC.Controls.Add(this.chkAudioEnableVAC); this.tpVAC.Location = new System.Drawing.Point(4, 22); this.tpVAC.Name = "tpVAC"; this.tpVAC.Size = new System.Drawing.Size(592, 318); this.tpVAC.TabIndex = 1; this.tpVAC.Text = "VAC"; this.tpVAC.Click += new System.EventHandler(this.tpVAC_Click); // // chkEnableLoopAudio // this.chkEnableLoopAudio.Image = null; this.chkEnableLoopAudio.Location = new System.Drawing.Point(136, 8); this.chkEnableLoopAudio.Name = "chkEnableLoopAudio"; this.chkEnableLoopAudio.Size = new System.Drawing.Size(88, 24); this.chkEnableLoopAudio.TabIndex = 79; this.chkEnableLoopAudio.Text = "Enable Loop"; this.toolTip1.SetToolTip(this.chkEnableLoopAudio, "Enable Virtual Audio Cable Support using the settings on this form."); this.chkEnableLoopAudio.CheckedChanged += new System.EventHandler(this.chkEnableLoopAudio_CheckedChanged); // // grpDirectIQOutput // this.grpDirectIQOutput.Controls.Add(this.chkAudioCorrectIQ); this.grpDirectIQOutput.Controls.Add(this.chkAudioIQtoVAC); this.grpDirectIQOutput.Location = new System.Drawing.Point(448, 56); this.grpDirectIQOutput.Name = "grpDirectIQOutput"; this.grpDirectIQOutput.Size = new System.Drawing.Size(120, 88); this.grpDirectIQOutput.TabIndex = 78; this.grpDirectIQOutput.TabStop = false; this.grpDirectIQOutput.Text = "Direct I/Q"; // // chkAudioCorrectIQ // this.chkAudioCorrectIQ.Checked = true; this.chkAudioCorrectIQ.CheckState = System.Windows.Forms.CheckState.Checked; this.chkAudioCorrectIQ.Enabled = false; this.chkAudioCorrectIQ.Image = null; this.chkAudioCorrectIQ.Location = new System.Drawing.Point(16, 56); this.chkAudioCorrectIQ.Name = "chkAudioCorrectIQ"; this.chkAudioCorrectIQ.Size = new System.Drawing.Size(88, 16); this.chkAudioCorrectIQ.TabIndex = 1; this.chkAudioCorrectIQ.Text = "Calibrate I/Q"; this.chkAudioCorrectIQ.CheckedChanged += new System.EventHandler(this.chkAudioCorrectIQ_CheckChanged); // // chkAudioIQtoVAC // this.chkAudioIQtoVAC.Image = null; this.chkAudioIQtoVAC.Location = new System.Drawing.Point(16, 24); this.chkAudioIQtoVAC.Name = "chkAudioIQtoVAC"; this.chkAudioIQtoVAC.Size = new System.Drawing.Size(96, 16); this.chkAudioIQtoVAC.TabIndex = 0; this.chkAudioIQtoVAC.Text = "Output to VAC"; this.chkAudioIQtoVAC.CheckedChanged += new System.EventHandler(this.chkAudioIQtoVAC_CheckedChanged); // // chkVACCombine // this.chkVACCombine.Enabled = false; this.chkVACCombine.Image = null; this.chkVACCombine.Location = new System.Drawing.Point(448, 16); this.chkVACCombine.Name = "chkVACCombine"; this.chkVACCombine.Size = new System.Drawing.Size(104, 40); this.chkVACCombine.TabIndex = 76; this.chkVACCombine.Text = "Combine VAC Input Channels"; this.toolTip1.SetToolTip(this.chkVACCombine, "When this feature is enabled, the left and right VAC channels are combined into t" + "he DSP transmit channel (left)."); this.chkVACCombine.CheckedChanged += new System.EventHandler(this.chkVACCombine_CheckedChanged); // // chkVACAllowBypass // this.chkVACAllowBypass.Checked = true; this.chkVACAllowBypass.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVACAllowBypass.Image = null; this.chkVACAllowBypass.Location = new System.Drawing.Point(240, 200); this.chkVACAllowBypass.Name = "chkVACAllowBypass"; this.chkVACAllowBypass.Size = new System.Drawing.Size(184, 32); this.chkVACAllowBypass.TabIndex = 75; this.chkVACAllowBypass.Text = "Allow PTT to override/bypass VAC for Phone"; this.toolTip1.SetToolTip(this.chkVACAllowBypass, "Using the hardware PTT inputs will override the PTT input to allow for easy phone" + " operation while VAC is enabled."); this.chkVACAllowBypass.CheckedChanged += new System.EventHandler(this.chkVACAllowBypass_CheckedChanged); // // grpAudioVACAutoEnable // this.grpAudioVACAutoEnable.Controls.Add(this.chkAudioVACAutoEnable); this.grpAudioVACAutoEnable.Location = new System.Drawing.Point(8, 168); this.grpAudioVACAutoEnable.Name = "grpAudioVACAutoEnable"; this.grpAudioVACAutoEnable.Size = new System.Drawing.Size(224, 64); this.grpAudioVACAutoEnable.TabIndex = 74; this.grpAudioVACAutoEnable.TabStop = false; this.grpAudioVACAutoEnable.Text = "Auto Enable"; // // chkAudioVACAutoEnable // this.chkAudioVACAutoEnable.Image = null; this.chkAudioVACAutoEnable.Location = new System.Drawing.Point(16, 24); this.chkAudioVACAutoEnable.Name = "chkAudioVACAutoEnable"; this.chkAudioVACAutoEnable.Size = new System.Drawing.Size(200, 32); this.chkAudioVACAutoEnable.TabIndex = 0; this.chkAudioVACAutoEnable.Text = "Enable for Digital modes, Disable for all others"; this.toolTip1.SetToolTip(this.chkAudioVACAutoEnable, "Click this button to automatically enable VAC when in Digital modes (DIGL, DIGU, " + "DRM)"); this.chkAudioVACAutoEnable.CheckedChanged += new System.EventHandler(this.chkAudioVACAutoEnable_CheckedChanged); // // grpAudioVACGain // this.grpAudioVACGain.Controls.Add(this.lblAudioVACGainTX); this.grpAudioVACGain.Controls.Add(this.udAudioVACGainTX); this.grpAudioVACGain.Controls.Add(this.lblAudioVACGainRX); this.grpAudioVACGain.Controls.Add(this.udAudioVACGainRX); this.grpAudioVACGain.Location = new System.Drawing.Point(344, 8); this.grpAudioVACGain.Name = "grpAudioVACGain"; this.grpAudioVACGain.Size = new System.Drawing.Size(96, 80); this.grpAudioVACGain.TabIndex = 72; this.grpAudioVACGain.TabStop = false; this.grpAudioVACGain.Text = "Gain (dB)"; // // lblAudioVACGainTX // this.lblAudioVACGainTX.Image = null; this.lblAudioVACGainTX.Location = new System.Drawing.Point(16, 48); this.lblAudioVACGainTX.Name = "lblAudioVACGainTX"; this.lblAudioVACGainTX.Size = new System.Drawing.Size(32, 16); this.lblAudioVACGainTX.TabIndex = 39; this.lblAudioVACGainTX.Text = "TX:"; // // udAudioVACGainTX // this.udAudioVACGainTX.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAudioVACGainTX.Location = new System.Drawing.Point(48, 48); this.udAudioVACGainTX.Maximum = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udAudioVACGainTX.Minimum = new System.Decimal(new int[] { 40, 0, 0, -2147483648}); this.udAudioVACGainTX.Name = "udAudioVACGainTX"; this.udAudioVACGainTX.Size = new System.Drawing.Size(40, 20); this.udAudioVACGainTX.TabIndex = 38; this.toolTip1.SetToolTip(this.udAudioVACGainTX, "Controls the gain on the audio coming from third party applications."); this.udAudioVACGainTX.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAudioVACGainTX.LostFocus += new System.EventHandler(this.udAudioVACGainTX_LostFocus); this.udAudioVACGainTX.ValueChanged += new System.EventHandler(this.udAudioVACGainTX_ValueChanged); // // lblAudioVACGainRX // this.lblAudioVACGainRX.Image = null; this.lblAudioVACGainRX.Location = new System.Drawing.Point(16, 24); this.lblAudioVACGainRX.Name = "lblAudioVACGainRX"; this.lblAudioVACGainRX.Size = new System.Drawing.Size(24, 16); this.lblAudioVACGainRX.TabIndex = 37; this.lblAudioVACGainRX.Text = "RX:"; // // udAudioVACGainRX // this.udAudioVACGainRX.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAudioVACGainRX.Location = new System.Drawing.Point(48, 24); this.udAudioVACGainRX.Maximum = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udAudioVACGainRX.Minimum = new System.Decimal(new int[] { 40, 0, 0, -2147483648}); this.udAudioVACGainRX.Name = "udAudioVACGainRX"; this.udAudioVACGainRX.Size = new System.Drawing.Size(40, 20); this.udAudioVACGainRX.TabIndex = 36; this.toolTip1.SetToolTip(this.udAudioVACGainRX, "Controls the gain applied to the RX audio before it is sent to the third party ap" + "plication."); this.udAudioVACGainRX.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAudioVACGainRX.LostFocus += new System.EventHandler(this.udAudioVACGainRX_LostFocus); this.udAudioVACGainRX.ValueChanged += new System.EventHandler(this.udAudioVACGainRX_ValueChanged); // // grpAudio2Stereo // this.grpAudio2Stereo.Controls.Add(this.chkAudio2Stereo); this.grpAudio2Stereo.Location = new System.Drawing.Point(240, 136); this.grpAudio2Stereo.Name = "grpAudio2Stereo"; this.grpAudio2Stereo.Size = new System.Drawing.Size(96, 56); this.grpAudio2Stereo.TabIndex = 71; this.grpAudio2Stereo.TabStop = false; this.grpAudio2Stereo.Text = "Mono/Stereo"; // // chkAudio2Stereo // this.chkAudio2Stereo.Image = null; this.chkAudio2Stereo.Location = new System.Drawing.Point(16, 24); this.chkAudio2Stereo.Name = "chkAudio2Stereo"; this.chkAudio2Stereo.Size = new System.Drawing.Size(64, 16); this.chkAudio2Stereo.TabIndex = 0; this.chkAudio2Stereo.Text = "Stereo"; this.toolTip1.SetToolTip(this.chkAudio2Stereo, "Click this button if the third party software will open the Virtual Audio Cable i" + "n 2 channel (stereo) mode."); this.chkAudio2Stereo.CheckedChanged += new System.EventHandler(this.chkAudio2Stereo_CheckedChanged); // // grpAudioLatency2 // this.grpAudioLatency2.Controls.Add(this.chkAudioLatencyManual2); this.grpAudioLatency2.Controls.Add(this.udAudioLatency2); this.grpAudioLatency2.Location = new System.Drawing.Point(344, 112); this.grpAudioLatency2.Name = "grpAudioLatency2"; this.grpAudioLatency2.Size = new System.Drawing.Size(96, 80); this.grpAudioLatency2.TabIndex = 67; this.grpAudioLatency2.TabStop = false; this.grpAudioLatency2.Text = "Latency (ms)"; // // chkAudioLatencyManual2 // this.chkAudioLatencyManual2.Image = null; this.chkAudioLatencyManual2.Location = new System.Drawing.Point(16, 24); this.chkAudioLatencyManual2.Name = "chkAudioLatencyManual2"; this.chkAudioLatencyManual2.Size = new System.Drawing.Size(64, 16); this.chkAudioLatencyManual2.TabIndex = 5; this.chkAudioLatencyManual2.Text = "Manual"; this.chkAudioLatencyManual2.CheckedChanged += new System.EventHandler(this.chkAudioLatencyManual2_CheckedChanged); // // udAudioLatency2 // this.udAudioLatency2.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAudioLatency2.Location = new System.Drawing.Point(16, 48); this.udAudioLatency2.Maximum = new System.Decimal(new int[] { 240, 0, 0, 0}); this.udAudioLatency2.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAudioLatency2.Name = "udAudioLatency2"; this.udAudioLatency2.Size = new System.Drawing.Size(48, 20); this.udAudioLatency2.TabIndex = 36; this.udAudioLatency2.Value = new System.Decimal(new int[] { 120, 0, 0, 0}); this.udAudioLatency2.LostFocus += new System.EventHandler(this.udAudioLatency2_LostFocus); this.udAudioLatency2.ValueChanged += new System.EventHandler(this.udAudioLatency2_ValueChanged); // // grpAudioSampleRate2 // this.grpAudioSampleRate2.Controls.Add(this.comboAudioSampleRate2); this.grpAudioSampleRate2.Location = new System.Drawing.Point(240, 72); this.grpAudioSampleRate2.Name = "grpAudioSampleRate2"; this.grpAudioSampleRate2.Size = new System.Drawing.Size(96, 56); this.grpAudioSampleRate2.TabIndex = 66; this.grpAudioSampleRate2.TabStop = false; this.grpAudioSampleRate2.Text = "Sample Rate"; // // comboAudioSampleRate2 // this.comboAudioSampleRate2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioSampleRate2.DropDownWidth = 64; this.comboAudioSampleRate2.Items.AddRange(new object[] { "6000", "8000", "11025", "12000", "24000", "22050", "44100", "48000"}); this.comboAudioSampleRate2.Location = new System.Drawing.Point(16, 24); this.comboAudioSampleRate2.Name = "comboAudioSampleRate2"; this.comboAudioSampleRate2.Size = new System.Drawing.Size(64, 20); this.comboAudioSampleRate2.TabIndex = 60; this.toolTip1.SetToolTip(this.comboAudioSampleRate2, "Samples per second. Set to match the third party software program."); this.comboAudioSampleRate2.SelectedIndexChanged += new System.EventHandler(this.comboAudioSampleRate2_SelectedIndexChanged); // // grpAudioBuffer2 // this.grpAudioBuffer2.Controls.Add(this.comboAudioBuffer2); this.grpAudioBuffer2.Location = new System.Drawing.Point(240, 8); this.grpAudioBuffer2.Name = "grpAudioBuffer2"; this.grpAudioBuffer2.Size = new System.Drawing.Size(96, 56); this.grpAudioBuffer2.TabIndex = 65; this.grpAudioBuffer2.TabStop = false; this.grpAudioBuffer2.Text = "Buffer Size"; // // comboAudioBuffer2 // this.comboAudioBuffer2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioBuffer2.DropDownWidth = 56; this.comboAudioBuffer2.Items.AddRange(new object[] { "512", "1024", "2048"}); this.comboAudioBuffer2.Location = new System.Drawing.Point(16, 24); this.comboAudioBuffer2.Name = "comboAudioBuffer2"; this.comboAudioBuffer2.Size = new System.Drawing.Size(56, 20); this.comboAudioBuffer2.TabIndex = 58; this.toolTip1.SetToolTip(this.comboAudioBuffer2, "Samples per buffer."); this.comboAudioBuffer2.SelectedIndexChanged += new System.EventHandler(this.comboAudioBuffer2_SelectedIndexChanged); // // grpAudioDetails2 // this.grpAudioDetails2.Controls.Add(this.lblAudioOutput2); this.grpAudioDetails2.Controls.Add(this.comboAudioOutput2); this.grpAudioDetails2.Controls.Add(this.lblAudioInput2); this.grpAudioDetails2.Controls.Add(this.lblAudioDriver2); this.grpAudioDetails2.Controls.Add(this.comboAudioInput2); this.grpAudioDetails2.Controls.Add(this.comboAudioDriver2); this.grpAudioDetails2.Location = new System.Drawing.Point(8, 40); this.grpAudioDetails2.Name = "grpAudioDetails2"; this.grpAudioDetails2.Size = new System.Drawing.Size(224, 120); this.grpAudioDetails2.TabIndex = 35; this.grpAudioDetails2.TabStop = false; this.grpAudioDetails2.Text = "Virtual Audio Cable Setup"; // // lblAudioOutput2 // this.lblAudioOutput2.Image = null; this.lblAudioOutput2.Location = new System.Drawing.Point(8, 88); this.lblAudioOutput2.Name = "lblAudioOutput2"; this.lblAudioOutput2.Size = new System.Drawing.Size(48, 16); this.lblAudioOutput2.TabIndex = 35; this.lblAudioOutput2.Text = "Output:"; // // comboAudioOutput2 // this.comboAudioOutput2.DisplayMember = "sdfg"; this.comboAudioOutput2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioOutput2.DropDownWidth = 160; this.comboAudioOutput2.ItemHeight = 16; this.comboAudioOutput2.Location = new System.Drawing.Point(56, 88); this.comboAudioOutput2.Name = "comboAudioOutput2"; this.comboAudioOutput2.Size = new System.Drawing.Size(160, 20); this.comboAudioOutput2.TabIndex = 34; this.toolTip1.SetToolTip(this.comboAudioOutput2, "Output Audio Device"); this.comboAudioOutput2.SelectedIndexChanged += new System.EventHandler(this.comboAudioOutput2_SelectedIndexChanged); // // lblAudioInput2 // this.lblAudioInput2.Image = null; this.lblAudioInput2.Location = new System.Drawing.Point(8, 56); this.lblAudioInput2.Name = "lblAudioInput2"; this.lblAudioInput2.Size = new System.Drawing.Size(40, 16); this.lblAudioInput2.TabIndex = 33; this.lblAudioInput2.Text = "Input:"; // // lblAudioDriver2 // this.lblAudioDriver2.Image = null; this.lblAudioDriver2.Location = new System.Drawing.Point(8, 24); this.lblAudioDriver2.Name = "lblAudioDriver2"; this.lblAudioDriver2.Size = new System.Drawing.Size(40, 16); this.lblAudioDriver2.TabIndex = 32; this.lblAudioDriver2.Text = "Driver:"; // // comboAudioInput2 // this.comboAudioInput2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioInput2.DropDownWidth = 160; this.comboAudioInput2.ItemHeight = 16; this.comboAudioInput2.Location = new System.Drawing.Point(56, 56); this.comboAudioInput2.Name = "comboAudioInput2"; this.comboAudioInput2.Size = new System.Drawing.Size(160, 20); this.comboAudioInput2.TabIndex = 28; this.toolTip1.SetToolTip(this.comboAudioInput2, "Input Audio Device"); this.comboAudioInput2.SelectedIndexChanged += new System.EventHandler(this.comboAudioInput2_SelectedIndexChanged); // // comboAudioDriver2 // this.comboAudioDriver2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboAudioDriver2.DropDownWidth = 160; this.comboAudioDriver2.ItemHeight = 16; this.comboAudioDriver2.Location = new System.Drawing.Point(56, 24); this.comboAudioDriver2.Name = "comboAudioDriver2"; this.comboAudioDriver2.Size = new System.Drawing.Size(160, 20); this.comboAudioDriver2.TabIndex = 26; this.toolTip1.SetToolTip(this.comboAudioDriver2, "Sound Card Driver Selection"); this.comboAudioDriver2.SelectedIndexChanged += new System.EventHandler(this.comboAudioDriver2_SelectedIndexChanged); // // chkAudioEnableVAC // this.chkAudioEnableVAC.Image = null; this.chkAudioEnableVAC.Location = new System.Drawing.Point(16, 8); this.chkAudioEnableVAC.Name = "chkAudioEnableVAC"; this.chkAudioEnableVAC.Size = new System.Drawing.Size(88, 24); this.chkAudioEnableVAC.TabIndex = 25; this.chkAudioEnableVAC.Text = "Enable VAC"; this.toolTip1.SetToolTip(this.chkAudioEnableVAC, "Enable Virtual Audio Cable Support using the settings on this form."); this.chkAudioEnableVAC.CheckedChanged += new System.EventHandler(this.chkAudioEnableVAC_CheckedChanged); // // tpDSP // this.tpDSP.Controls.Add(this.tcDSP); this.tpDSP.Location = new System.Drawing.Point(4, 22); this.tpDSP.Name = "tpDSP"; this.tpDSP.Size = new System.Drawing.Size(584, 286); this.tpDSP.TabIndex = 1; this.tpDSP.Text = "DSP"; // // tcDSP // this.tcDSP.Controls.Add(this.tpDSPOptions); this.tcDSP.Controls.Add(this.tpDSPImageReject); this.tcDSP.Controls.Add(this.tpDSPKeyer); this.tcDSP.Controls.Add(this.tpDSPAGCALC); this.tcDSP.Location = new System.Drawing.Point(0, 0); this.tcDSP.Name = "tcDSP"; this.tcDSP.SelectedIndex = 0; this.tcDSP.Size = new System.Drawing.Size(600, 344); this.tcDSP.TabIndex = 0; // // tpDSPOptions // this.tpDSPOptions.Controls.Add(this.chkDSPTXMeterPeak); this.tpDSPOptions.Controls.Add(this.grpDSPBufferSize); this.tpDSPOptions.Controls.Add(this.grpDSPNB); this.tpDSPOptions.Controls.Add(this.grpDSPLMSNR); this.tpDSPOptions.Controls.Add(this.grpDSPLMSANF); this.tpDSPOptions.Controls.Add(this.grpDSPWindow); this.tpDSPOptions.Controls.Add(this.grpDSPNB2); this.tpDSPOptions.Location = new System.Drawing.Point(4, 22); this.tpDSPOptions.Name = "tpDSPOptions"; this.tpDSPOptions.Size = new System.Drawing.Size(592, 318); this.tpDSPOptions.TabIndex = 2; this.tpDSPOptions.Text = "Options"; // // chkDSPTXMeterPeak // this.chkDSPTXMeterPeak.Checked = true; this.chkDSPTXMeterPeak.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDSPTXMeterPeak.Location = new System.Drawing.Point(16, 144); this.chkDSPTXMeterPeak.Name = "chkDSPTXMeterPeak"; this.chkDSPTXMeterPeak.Size = new System.Drawing.Size(144, 32); this.chkDSPTXMeterPeak.TabIndex = 38; this.chkDSPTXMeterPeak.Text = "Use Peak Readings for TX Meter DSP Values"; this.chkDSPTXMeterPeak.CheckedChanged += new System.EventHandler(this.chkDSPTXMeterPeak_CheckedChanged); // // grpDSPBufferSize // this.grpDSPBufferSize.Controls.Add(this.grpDSPBufDig); this.grpDSPBufferSize.Controls.Add(this.grpDSPBufCW); this.grpDSPBufferSize.Controls.Add(this.grpDSPBufPhone); this.grpDSPBufferSize.Location = new System.Drawing.Point(256, 8); this.grpDSPBufferSize.Name = "grpDSPBufferSize"; this.grpDSPBufferSize.Size = new System.Drawing.Size(120, 248); this.grpDSPBufferSize.TabIndex = 37; this.grpDSPBufferSize.TabStop = false; this.grpDSPBufferSize.Text = "Buffer Size"; // // grpDSPBufDig // this.grpDSPBufDig.Controls.Add(this.comboDSPDigTXBuf); this.grpDSPBufDig.Controls.Add(this.lblDSPDigBufferRX); this.grpDSPBufDig.Controls.Add(this.comboDSPDigRXBuf); this.grpDSPBufDig.Controls.Add(this.lblDSPDigBufferTX); this.grpDSPBufDig.Location = new System.Drawing.Point(8, 160); this.grpDSPBufDig.Name = "grpDSPBufDig"; this.grpDSPBufDig.Size = new System.Drawing.Size(104, 72); this.grpDSPBufDig.TabIndex = 41; this.grpDSPBufDig.TabStop = false; this.grpDSPBufDig.Text = "Digital"; // // comboDSPDigTXBuf // this.comboDSPDigTXBuf.DisplayMember = "2048"; this.comboDSPDigTXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPDigTXBuf.DropDownWidth = 64; this.comboDSPDigTXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPDigTXBuf.Location = new System.Drawing.Point(32, 48); this.comboDSPDigTXBuf.Name = "comboDSPDigTXBuf"; this.comboDSPDigTXBuf.Size = new System.Drawing.Size(64, 20); this.comboDSPDigTXBuf.TabIndex = 20; this.toolTip1.SetToolTip(this.comboDSPDigTXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPDigTXBuf.ValueMember = "1024"; this.comboDSPDigTXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPDigTXBuf_SelectedIndexChanged); // // lblDSPDigBufferRX // this.lblDSPDigBufferRX.Image = null; this.lblDSPDigBufferRX.Location = new System.Drawing.Point(8, 24); this.lblDSPDigBufferRX.Name = "lblDSPDigBufferRX"; this.lblDSPDigBufferRX.Size = new System.Drawing.Size(24, 16); this.lblDSPDigBufferRX.TabIndex = 19; this.lblDSPDigBufferRX.Text = "RX:"; // // comboDSPDigRXBuf // this.comboDSPDigRXBuf.DisplayMember = "2048"; this.comboDSPDigRXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPDigRXBuf.DropDownWidth = 64; this.comboDSPDigRXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPDigRXBuf.Location = new System.Drawing.Point(32, 24); this.comboDSPDigRXBuf.Name = "comboDSPDigRXBuf"; this.comboDSPDigRXBuf.Size = new System.Drawing.Size(64, 20); this.comboDSPDigRXBuf.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPDigRXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPDigRXBuf.ValueMember = "1024"; this.comboDSPDigRXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPDigRXBuf_SelectedIndexChanged); // // lblDSPDigBufferTX // this.lblDSPDigBufferTX.Image = null; this.lblDSPDigBufferTX.Location = new System.Drawing.Point(8, 48); this.lblDSPDigBufferTX.Name = "lblDSPDigBufferTX"; this.lblDSPDigBufferTX.Size = new System.Drawing.Size(24, 16); this.lblDSPDigBufferTX.TabIndex = 21; this.lblDSPDigBufferTX.Text = "TX:"; // // grpDSPBufCW // this.grpDSPBufCW.Controls.Add(this.comboDSPCWTXBuf); this.grpDSPBufCW.Controls.Add(this.lblDSPCWBufferRX); this.grpDSPBufCW.Controls.Add(this.comboDSPCWRXBuf); this.grpDSPBufCW.Controls.Add(this.lblDSPCWBufferTX); this.grpDSPBufCW.Location = new System.Drawing.Point(8, 88); this.grpDSPBufCW.Name = "grpDSPBufCW"; this.grpDSPBufCW.Size = new System.Drawing.Size(104, 72); this.grpDSPBufCW.TabIndex = 40; this.grpDSPBufCW.TabStop = false; this.grpDSPBufCW.Text = "CW"; // // comboDSPCWTXBuf // this.comboDSPCWTXBuf.DisplayMember = "2048"; this.comboDSPCWTXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPCWTXBuf.DropDownWidth = 64; this.comboDSPCWTXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPCWTXBuf.Location = new System.Drawing.Point(32, 48); this.comboDSPCWTXBuf.Name = "comboDSPCWTXBuf"; this.comboDSPCWTXBuf.Size = new System.Drawing.Size(64, 20); this.comboDSPCWTXBuf.TabIndex = 20; this.toolTip1.SetToolTip(this.comboDSPCWTXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPCWTXBuf.ValueMember = "1024"; this.comboDSPCWTXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPCWTXBuf_SelectedIndexChanged); // // lblDSPCWBufferRX // this.lblDSPCWBufferRX.Image = null; this.lblDSPCWBufferRX.Location = new System.Drawing.Point(8, 24); this.lblDSPCWBufferRX.Name = "lblDSPCWBufferRX"; this.lblDSPCWBufferRX.Size = new System.Drawing.Size(24, 16); this.lblDSPCWBufferRX.TabIndex = 19; this.lblDSPCWBufferRX.Text = "RX:"; // // comboDSPCWRXBuf // this.comboDSPCWRXBuf.DisplayMember = "2048"; this.comboDSPCWRXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPCWRXBuf.DropDownWidth = 64; this.comboDSPCWRXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPCWRXBuf.Location = new System.Drawing.Point(32, 24); this.comboDSPCWRXBuf.Name = "comboDSPCWRXBuf"; this.comboDSPCWRXBuf.Size = new System.Drawing.Size(64, 20); this.comboDSPCWRXBuf.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPCWRXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPCWRXBuf.ValueMember = "1024"; this.comboDSPCWRXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPCWRXBuf_SelectedIndexChanged); // // lblDSPCWBufferTX // this.lblDSPCWBufferTX.Image = null; this.lblDSPCWBufferTX.Location = new System.Drawing.Point(8, 48); this.lblDSPCWBufferTX.Name = "lblDSPCWBufferTX"; this.lblDSPCWBufferTX.Size = new System.Drawing.Size(24, 16); this.lblDSPCWBufferTX.TabIndex = 21; this.lblDSPCWBufferTX.Text = "TX:"; // // grpDSPBufPhone // this.grpDSPBufPhone.Controls.Add(this.comboDSPPhoneTXBuf); this.grpDSPBufPhone.Controls.Add(this.lblDSPPhoneBufferRX); this.grpDSPBufPhone.Controls.Add(this.comboDSPPhoneRXBuf); this.grpDSPBufPhone.Controls.Add(this.lblDSPPhoneBufferTX); this.grpDSPBufPhone.Location = new System.Drawing.Point(8, 16); this.grpDSPBufPhone.Name = "grpDSPBufPhone"; this.grpDSPBufPhone.Size = new System.Drawing.Size(104, 72); this.grpDSPBufPhone.TabIndex = 39; this.grpDSPBufPhone.TabStop = false; this.grpDSPBufPhone.Text = "Phone"; // // comboDSPPhoneTXBuf // this.comboDSPPhoneTXBuf.DisplayMember = "2048"; this.comboDSPPhoneTXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPPhoneTXBuf.DropDownWidth = 64; this.comboDSPPhoneTXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPPhoneTXBuf.Location = new System.Drawing.Point(32, 48); this.comboDSPPhoneTXBuf.Name = "comboDSPPhoneTXBuf"; this.comboDSPPhoneTXBuf.Size = new System.Drawing.Size(64, 20); this.comboDSPPhoneTXBuf.TabIndex = 20; this.toolTip1.SetToolTip(this.comboDSPPhoneTXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPPhoneTXBuf.ValueMember = "1024"; this.comboDSPPhoneTXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPPhoneTXBuf_SelectedIndexChanged); // // lblDSPPhoneBufferRX // this.lblDSPPhoneBufferRX.Image = null; this.lblDSPPhoneBufferRX.Location = new System.Drawing.Point(8, 24); this.lblDSPPhoneBufferRX.Name = "lblDSPPhoneBufferRX"; this.lblDSPPhoneBufferRX.Size = new System.Drawing.Size(24, 16); this.lblDSPPhoneBufferRX.TabIndex = 19; this.lblDSPPhoneBufferRX.Text = "RX:"; // // comboDSPPhoneRXBuf // this.comboDSPPhoneRXBuf.DisplayMember = "2048"; this.comboDSPPhoneRXBuf.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPPhoneRXBuf.DropDownWidth = 64; this.comboDSPPhoneRXBuf.Items.AddRange(new object[] { "256", "512", "1024", "2048", "4096"}); this.comboDSPPhoneRXBuf.Location = new System.Drawing.Point(32, 24); this.comboDSPPhoneRXBuf.Name = "comboDSPPhoneRXBuf"; this.comboDSPPhoneRXBuf.Size = new System.Drawing.Size(64, 20); this.comboDSPPhoneRXBuf.TabIndex = 18; this.toolTip1.SetToolTip(this.comboDSPPhoneRXBuf, "Sets DSP internal Buffer Size -- larger yields sharper filters, more latency"); this.comboDSPPhoneRXBuf.ValueMember = "1024"; this.comboDSPPhoneRXBuf.SelectedIndexChanged += new System.EventHandler(this.comboDSPPhoneRXBuf_SelectedIndexChanged); // // lblDSPPhoneBufferTX // this.lblDSPPhoneBufferTX.Image = null; this.lblDSPPhoneBufferTX.Location = new System.Drawing.Point(8, 48); this.lblDSPPhoneBufferTX.Name = "lblDSPPhoneBufferTX"; this.lblDSPPhoneBufferTX.Size = new System.Drawing.Size(24, 16); this.lblDSPPhoneBufferTX.TabIndex = 21; this.lblDSPPhoneBufferTX.Text = "TX:"; // // grpDSPNB // this.grpDSPNB.Controls.Add(this.udDSPNB); this.grpDSPNB.Controls.Add(this.lblDSPNBThreshold); this.grpDSPNB.Location = new System.Drawing.Point(384, 8); this.grpDSPNB.Name = "grpDSPNB"; this.grpDSPNB.Size = new System.Drawing.Size(120, 56); this.grpDSPNB.TabIndex = 35; this.grpDSPNB.TabStop = false; this.grpDSPNB.Text = "Noise Blanker"; // // udDSPNB // this.udDSPNB.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB.Location = new System.Drawing.Point(64, 24); this.udDSPNB.Maximum = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udDSPNB.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB.Name = "udDSPNB"; this.udDSPNB.Size = new System.Drawing.Size(40, 20); this.udDSPNB.TabIndex = 0; this.toolTip1.SetToolTip(this.udDSPNB, "Controls the detection threshold for impulse noise. "); this.udDSPNB.Value = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udDSPNB.LostFocus += new System.EventHandler(this.udDSPNB_LostFocus); this.udDSPNB.ValueChanged += new System.EventHandler(this.udDSPNB_ValueChanged); // // lblDSPNBThreshold // this.lblDSPNBThreshold.Image = null; this.lblDSPNBThreshold.Location = new System.Drawing.Point(8, 24); this.lblDSPNBThreshold.Name = "lblDSPNBThreshold"; this.lblDSPNBThreshold.Size = new System.Drawing.Size(64, 16); this.lblDSPNBThreshold.TabIndex = 9; this.lblDSPNBThreshold.Text = "Threshold:"; // // grpDSPLMSNR // this.grpDSPLMSNR.Controls.Add(this.lblLMSNRLeak); this.grpDSPLMSNR.Controls.Add(this.udLMSNRLeak); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRgain); this.grpDSPLMSNR.Controls.Add(this.udLMSNRgain); this.grpDSPLMSNR.Controls.Add(this.udLMSNRdelay); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRdelay); this.grpDSPLMSNR.Controls.Add(this.udLMSNRtaps); this.grpDSPLMSNR.Controls.Add(this.lblLMSNRtaps); this.grpDSPLMSNR.Location = new System.Drawing.Point(8, 8); this.grpDSPLMSNR.Name = "grpDSPLMSNR"; this.grpDSPLMSNR.Size = new System.Drawing.Size(112, 128); this.grpDSPLMSNR.TabIndex = 33; this.grpDSPLMSNR.TabStop = false; this.grpDSPLMSNR.Text = "NR"; // // lblLMSNRLeak // this.lblLMSNRLeak.Image = null; this.lblLMSNRLeak.Location = new System.Drawing.Point(8, 96); this.lblLMSNRLeak.Name = "lblLMSNRLeak"; this.lblLMSNRLeak.Size = new System.Drawing.Size(40, 16); this.lblLMSNRLeak.TabIndex = 11; this.lblLMSNRLeak.Text = "Leak:"; // // udLMSNRLeak // this.udLMSNRLeak.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udLMSNRLeak.Location = new System.Drawing.Point(56, 96); this.udLMSNRLeak.Maximum = new System.Decimal(new int[] { 1000, 0, 0, 0}); this.udLMSNRLeak.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRLeak.Name = "udLMSNRLeak"; this.udLMSNRLeak.Size = new System.Drawing.Size(48, 20); this.udLMSNRLeak.TabIndex = 10; this.toolTip1.SetToolTip(this.udLMSNRLeak, "Determines the adaptation rate of the filter."); this.udLMSNRLeak.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udLMSNRLeak.ValueChanged += new System.EventHandler(this.udLMSNRLeak_ValueChanged); // // lblLMSNRgain // this.lblLMSNRgain.Image = null; this.lblLMSNRgain.Location = new System.Drawing.Point(8, 72); this.lblLMSNRgain.Name = "lblLMSNRgain"; this.lblLMSNRgain.Size = new System.Drawing.Size(40, 16); this.lblLMSNRgain.TabIndex = 9; this.lblLMSNRgain.Text = "Gain:"; // // udLMSNRgain // this.udLMSNRgain.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRgain.Location = new System.Drawing.Point(56, 72); this.udLMSNRgain.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udLMSNRgain.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRgain.Name = "udLMSNRgain"; this.udLMSNRgain.Size = new System.Drawing.Size(48, 20); this.udLMSNRgain.TabIndex = 7; this.toolTip1.SetToolTip(this.udLMSNRgain, "Determines the adaptation rate of the filter."); this.udLMSNRgain.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udLMSNRgain.LostFocus += new System.EventHandler(this.udLMSNRgain_LostFocus); this.udLMSNRgain.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); // // udLMSNRdelay // this.udLMSNRdelay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRdelay.Location = new System.Drawing.Point(56, 48); this.udLMSNRdelay.Maximum = new System.Decimal(new int[] { 127, 0, 0, 0}); this.udLMSNRdelay.Minimum = new System.Decimal(new int[] { 16, 0, 0, 0}); this.udLMSNRdelay.Name = "udLMSNRdelay"; this.udLMSNRdelay.Size = new System.Drawing.Size(48, 20); this.udLMSNRdelay.TabIndex = 6; this.toolTip1.SetToolTip(this.udLMSNRdelay, "Determines how far back you look in the signal before you begin to compute a cohe" + "rent signal enhancement filter. "); this.udLMSNRdelay.Value = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udLMSNRdelay.LostFocus += new System.EventHandler(this.udLMSNRdelay_LostFocus); this.udLMSNRdelay.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); // // lblLMSNRdelay // this.lblLMSNRdelay.Image = null; this.lblLMSNRdelay.Location = new System.Drawing.Point(8, 48); this.lblLMSNRdelay.Name = "lblLMSNRdelay"; this.lblLMSNRdelay.Size = new System.Drawing.Size(40, 16); this.lblLMSNRdelay.TabIndex = 5; this.lblLMSNRdelay.Text = "Delay:"; // // udLMSNRtaps // this.udLMSNRtaps.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSNRtaps.Location = new System.Drawing.Point(56, 24); this.udLMSNRtaps.Maximum = new System.Decimal(new int[] { 127, 0, 0, 0}); this.udLMSNRtaps.Minimum = new System.Decimal(new int[] { 31, 0, 0, 0}); this.udLMSNRtaps.Name = "udLMSNRtaps"; this.udLMSNRtaps.Size = new System.Drawing.Size(48, 20); this.udLMSNRtaps.TabIndex = 5; this.toolTip1.SetToolTip(this.udLMSNRtaps, "Determines the length of the NR computed filter. "); this.udLMSNRtaps.Value = new System.Decimal(new int[] { 65, 0, 0, 0}); this.udLMSNRtaps.LostFocus += new System.EventHandler(this.udLMSNRtaps_LostFocus); this.udLMSNRtaps.ValueChanged += new System.EventHandler(this.udLMSNR_ValueChanged); // // lblLMSNRtaps // this.lblLMSNRtaps.Image = null; this.lblLMSNRtaps.Location = new System.Drawing.Point(8, 24); this.lblLMSNRtaps.Name = "lblLMSNRtaps"; this.lblLMSNRtaps.Size = new System.Drawing.Size(40, 16); this.lblLMSNRtaps.TabIndex = 3; this.lblLMSNRtaps.Text = "Taps:"; // // grpDSPLMSANF // this.grpDSPLMSANF.Controls.Add(this.lblLMSANFLeak); this.grpDSPLMSANF.Controls.Add(this.udLMSANFLeak); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFgain); this.grpDSPLMSANF.Controls.Add(this.udLMSANFgain); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFdelay); this.grpDSPLMSANF.Controls.Add(this.udLMSANFdelay); this.grpDSPLMSANF.Controls.Add(this.lblLMSANFTaps); this.grpDSPLMSANF.Controls.Add(this.udLMSANFtaps); this.grpDSPLMSANF.Location = new System.Drawing.Point(128, 8); this.grpDSPLMSANF.Name = "grpDSPLMSANF"; this.grpDSPLMSANF.Size = new System.Drawing.Size(120, 128); this.grpDSPLMSANF.TabIndex = 32; this.grpDSPLMSANF.TabStop = false; this.grpDSPLMSANF.Text = "ANF"; // // lblLMSANFLeak // this.lblLMSANFLeak.Image = null; this.lblLMSANFLeak.Location = new System.Drawing.Point(8, 96); this.lblLMSANFLeak.Name = "lblLMSANFLeak"; this.lblLMSANFLeak.Size = new System.Drawing.Size(40, 16); this.lblLMSANFLeak.TabIndex = 9; this.lblLMSANFLeak.Text = "Leak:"; // // udLMSANFLeak // this.udLMSANFLeak.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udLMSANFLeak.Location = new System.Drawing.Point(56, 96); this.udLMSANFLeak.Maximum = new System.Decimal(new int[] { 1000, 0, 0, 0}); this.udLMSANFLeak.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFLeak.Name = "udLMSANFLeak"; this.udLMSANFLeak.Size = new System.Drawing.Size(48, 20); this.udLMSANFLeak.TabIndex = 8; this.toolTip1.SetToolTip(this.udLMSANFLeak, "Determines the adaptation rate of the filter."); this.udLMSANFLeak.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udLMSANFLeak.ValueChanged += new System.EventHandler(this.udLMSANFLeak_ValueChanged); // // lblLMSANFgain // this.lblLMSANFgain.Image = null; this.lblLMSANFgain.Location = new System.Drawing.Point(8, 72); this.lblLMSANFgain.Name = "lblLMSANFgain"; this.lblLMSANFgain.Size = new System.Drawing.Size(40, 16); this.lblLMSANFgain.TabIndex = 6; this.lblLMSANFgain.Text = "Gain:"; // // udLMSANFgain // this.udLMSANFgain.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFgain.Location = new System.Drawing.Point(56, 72); this.udLMSANFgain.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udLMSANFgain.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFgain.Name = "udLMSANFgain"; this.udLMSANFgain.Size = new System.Drawing.Size(48, 20); this.udLMSANFgain.TabIndex = 3; this.toolTip1.SetToolTip(this.udLMSANFgain, "Determines the adaptation rate of the filter."); this.udLMSANFgain.Value = new System.Decimal(new int[] { 25, 0, 0, 0}); this.udLMSANFgain.LostFocus += new System.EventHandler(this.udLMSANFgain_LostFocus); this.udLMSANFgain.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); // // lblLMSANFdelay // this.lblLMSANFdelay.Image = null; this.lblLMSANFdelay.Location = new System.Drawing.Point(8, 48); this.lblLMSANFdelay.Name = "lblLMSANFdelay"; this.lblLMSANFdelay.Size = new System.Drawing.Size(40, 16); this.lblLMSANFdelay.TabIndex = 4; this.lblLMSANFdelay.Text = "Delay:"; // // udLMSANFdelay // this.udLMSANFdelay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFdelay.Location = new System.Drawing.Point(56, 48); this.udLMSANFdelay.Maximum = new System.Decimal(new int[] { 127, 0, 0, 0}); this.udLMSANFdelay.Minimum = new System.Decimal(new int[] { 16, 0, 0, 0}); this.udLMSANFdelay.Name = "udLMSANFdelay"; this.udLMSANFdelay.Size = new System.Drawing.Size(48, 20); this.udLMSANFdelay.TabIndex = 2; this.toolTip1.SetToolTip(this.udLMSANFdelay, "Determines how far back you look in the signal before you begin to compute a canc" + "ellation filter"); this.udLMSANFdelay.Value = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udLMSANFdelay.LostFocus += new System.EventHandler(this.udLMSANFdelay_LostFocus); this.udLMSANFdelay.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); // // lblLMSANFTaps // this.lblLMSANFTaps.Image = null; this.lblLMSANFTaps.Location = new System.Drawing.Point(8, 24); this.lblLMSANFTaps.Name = "lblLMSANFTaps"; this.lblLMSANFTaps.Size = new System.Drawing.Size(40, 16); this.lblLMSANFTaps.TabIndex = 2; this.lblLMSANFTaps.Text = "Taps:"; // // udLMSANFtaps // this.udLMSANFtaps.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udLMSANFtaps.Location = new System.Drawing.Point(56, 24); this.udLMSANFtaps.Maximum = new System.Decimal(new int[] { 127, 0, 0, 0}); this.udLMSANFtaps.Minimum = new System.Decimal(new int[] { 31, 0, 0, 0}); this.udLMSANFtaps.Name = "udLMSANFtaps"; this.udLMSANFtaps.Size = new System.Drawing.Size(48, 20); this.udLMSANFtaps.TabIndex = 1; this.toolTip1.SetToolTip(this.udLMSANFtaps, "Determines the length of the computed notch filter."); this.udLMSANFtaps.Value = new System.Decimal(new int[] { 65, 0, 0, 0}); this.udLMSANFtaps.LostFocus += new System.EventHandler(this.udLMSANFtaps_LostFocus); this.udLMSANFtaps.ValueChanged += new System.EventHandler(this.udLMSANF_ValueChanged); // // grpDSPWindow // this.grpDSPWindow.Controls.Add(this.comboDSPWindow); this.grpDSPWindow.Location = new System.Drawing.Point(384, 136); this.grpDSPWindow.Name = "grpDSPWindow"; this.grpDSPWindow.Size = new System.Drawing.Size(120, 56); this.grpDSPWindow.TabIndex = 36; this.grpDSPWindow.TabStop = false; this.grpDSPWindow.Text = "Window"; // // comboDSPWindow // this.comboDSPWindow.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDSPWindow.DropDownWidth = 88; this.comboDSPWindow.Location = new System.Drawing.Point(16, 24); this.comboDSPWindow.Name = "comboDSPWindow"; this.comboDSPWindow.Size = new System.Drawing.Size(88, 20); this.comboDSPWindow.TabIndex = 0; this.toolTip1.SetToolTip(this.comboDSPWindow, "Selects the DSP windowing function that will be applied to the power spectrum in " + "the main display when in Spectrum, Panadapter, and Waterfall modes. "); this.comboDSPWindow.SelectedIndexChanged += new System.EventHandler(this.comboDSPWindow_SelectedIndexChanged); // // grpDSPNB2 // this.grpDSPNB2.Controls.Add(this.udDSPNB2); this.grpDSPNB2.Controls.Add(this.lblDSPNB2Threshold); this.grpDSPNB2.Location = new System.Drawing.Point(384, 72); this.grpDSPNB2.Name = "grpDSPNB2"; this.grpDSPNB2.Size = new System.Drawing.Size(120, 56); this.grpDSPNB2.TabIndex = 34; this.grpDSPNB2.TabStop = false; this.grpDSPNB2.Text = "Noise Blanker 2"; // // udDSPNB2 // this.udDSPNB2.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB2.Location = new System.Drawing.Point(64, 24); this.udDSPNB2.Maximum = new System.Decimal(new int[] { 1000, 0, 0, 0}); this.udDSPNB2.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPNB2.Name = "udDSPNB2"; this.udDSPNB2.Size = new System.Drawing.Size(40, 20); this.udDSPNB2.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPNB2, "Controls the detection threshold for a pulse. "); this.udDSPNB2.Value = new System.Decimal(new int[] { 15, 0, 0, 0}); this.udDSPNB2.LostFocus += new System.EventHandler(this.udDSPNB2_LostFocus); this.udDSPNB2.ValueChanged += new System.EventHandler(this.udDSPNB2_ValueChanged); // // lblDSPNB2Threshold // this.lblDSPNB2Threshold.Image = null; this.lblDSPNB2Threshold.Location = new System.Drawing.Point(8, 24); this.lblDSPNB2Threshold.Name = "lblDSPNB2Threshold"; this.lblDSPNB2Threshold.Size = new System.Drawing.Size(64, 16); this.lblDSPNB2Threshold.TabIndex = 10; this.lblDSPNB2Threshold.Text = "Threshold:"; // // tpDSPImageReject // this.tpDSPImageReject.Controls.Add(this.chkDSPImageExpert); this.tpDSPImageReject.Controls.Add(this.grpDSPImageRejectRX); this.tpDSPImageReject.Controls.Add(this.grpDSPImageRejectTX); this.tpDSPImageReject.Location = new System.Drawing.Point(4, 22); this.tpDSPImageReject.Name = "tpDSPImageReject"; this.tpDSPImageReject.Size = new System.Drawing.Size(592, 318); this.tpDSPImageReject.TabIndex = 1; this.tpDSPImageReject.Text = "Image Reject"; // // chkDSPImageExpert // this.chkDSPImageExpert.Location = new System.Drawing.Point(273, 208); this.chkDSPImageExpert.Name = "chkDSPImageExpert"; this.chkDSPImageExpert.Size = new System.Drawing.Size(56, 24); this.chkDSPImageExpert.TabIndex = 35; this.chkDSPImageExpert.Text = "Expert"; this.chkDSPImageExpert.CheckedChanged += new System.EventHandler(this.chkDSPImageExpert_CheckedChanged); // // grpDSPImageRejectRX // this.grpDSPImageRejectRX.Controls.Add(this.labelTS25); this.grpDSPImageRejectRX.Controls.Add(this.udAIRCalibrationPoint); this.grpDSPImageRejectRX.Controls.Add(this.udAIRCalibrationIF); this.grpDSPImageRejectRX.Controls.Add(this.labelTS24); this.grpDSPImageRejectRX.Controls.Add(this.cbAIRCalibrationEnable); this.grpDSPImageRejectRX.Controls.Add(this.labelTS23); this.grpDSPImageRejectRX.Controls.Add(this.udAIRCalibrationPosition); this.grpDSPImageRejectRX.Controls.Add(this.labelTS20); this.grpDSPImageRejectRX.Controls.Add(this.tbAIRCalibrationPosition); this.grpDSPImageRejectRX.Controls.Add(this.lblDSPGainValRX); this.grpDSPImageRejectRX.Controls.Add(this.lblDSPPhaseValRX); this.grpDSPImageRejectRX.Controls.Add(this.udDSPImageGainRX); this.grpDSPImageRejectRX.Controls.Add(this.udDSPImagePhaseRX); this.grpDSPImageRejectRX.Controls.Add(this.lblDSPImageGainRX); this.grpDSPImageRejectRX.Controls.Add(this.tbDSPImagePhaseRX); this.grpDSPImageRejectRX.Controls.Add(this.lblDSPImagePhaseRX); this.grpDSPImageRejectRX.Controls.Add(this.tbDSPImageGainRX); this.grpDSPImageRejectRX.Location = new System.Drawing.Point(8, 8); this.grpDSPImageRejectRX.Name = "grpDSPImageRejectRX"; this.grpDSPImageRejectRX.Size = new System.Drawing.Size(240, 249); this.grpDSPImageRejectRX.TabIndex = 34; this.grpDSPImageRejectRX.TabStop = false; this.grpDSPImageRejectRX.Text = "Receive Rejection"; // // labelTS25 // this.labelTS25.Image = null; this.labelTS25.Location = new System.Drawing.Point(127, 194); this.labelTS25.Name = "labelTS25"; this.labelTS25.Size = new System.Drawing.Size(40, 17); this.labelTS25.TabIndex = 24; this.labelTS25.Text = "Point:"; this.labelTS25.Visible = false; // // udAIRCalibrationPoint // this.udAIRCalibrationPoint.Enabled = false; this.udAIRCalibrationPoint.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRCalibrationPoint.Location = new System.Drawing.Point(167, 194); this.udAIRCalibrationPoint.Maximum = new System.Decimal(new int[] { 65, 0, 0, 0}); this.udAIRCalibrationPoint.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udAIRCalibrationPoint.Name = "udAIRCalibrationPoint"; this.udAIRCalibrationPoint.Size = new System.Drawing.Size(55, 20); this.udAIRCalibrationPoint.TabIndex = 23; this.toolTip1.SetToolTip(this.udAIRCalibrationPoint, "Selects the AIR calibration test point"); this.udAIRCalibrationPoint.Value = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRCalibrationPoint.Visible = false; this.udAIRCalibrationPoint.ValueChanged += new System.EventHandler(this.udAIRCalibrationPoint_ValueChanged); // // udAIRCalibrationIF // this.udAIRCalibrationIF.Enabled = false; this.udAIRCalibrationIF.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRCalibrationIF.Location = new System.Drawing.Point(167, 222); this.udAIRCalibrationIF.Maximum = new System.Decimal(new int[] { 96000, 0, 0, 0}); this.udAIRCalibrationIF.Minimum = new System.Decimal(new int[] { 96000, 0, 0, -2147483648}); this.udAIRCalibrationIF.Name = "udAIRCalibrationIF"; this.udAIRCalibrationIF.Size = new System.Drawing.Size(55, 20); this.udAIRCalibrationIF.TabIndex = 22; this.toolTip1.SetToolTip(this.udAIRCalibrationIF, "Sets temporarily the IF setting for AIR calibration"); this.udAIRCalibrationIF.Value = new System.Decimal(new int[] { 18000, 0, 0, 0}); this.udAIRCalibrationIF.Visible = false; this.udAIRCalibrationIF.ValueChanged += new System.EventHandler(this.udAIRCalibrationIF_ValueChanged); // // labelTS24 // this.labelTS24.Image = null; this.labelTS24.Location = new System.Drawing.Point(127, 222); this.labelTS24.Name = "labelTS24"; this.labelTS24.Size = new System.Drawing.Size(40, 16); this.labelTS24.TabIndex = 21; this.labelTS24.Text = "IF Hz:"; this.labelTS24.Visible = false; // // cbAIRCalibrationEnable // this.cbAIRCalibrationEnable.Appearance = System.Windows.Forms.Appearance.Button; this.cbAIRCalibrationEnable.Location = new System.Drawing.Point(13, 222); this.cbAIRCalibrationEnable.Name = "cbAIRCalibrationEnable"; this.cbAIRCalibrationEnable.Size = new System.Drawing.Size(54, 21); this.cbAIRCalibrationEnable.TabIndex = 20; this.cbAIRCalibrationEnable.Text = "AIR"; this.cbAIRCalibrationEnable.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cbAIRCalibrationEnable.Visible = false; this.cbAIRCalibrationEnable.CheckedChanged += new System.EventHandler(this.cbAIRCalibrationEnable_CheckedChanged); // // labelTS23 // this.labelTS23.Image = null; this.labelTS23.Location = new System.Drawing.Point(20, 125); this.labelTS23.Name = "labelTS23"; this.labelTS23.Size = new System.Drawing.Size(48, 16); this.labelTS23.TabIndex = 19; this.labelTS23.Text = "Position:"; this.labelTS23.Visible = false; this.labelTS23.Click += new System.EventHandler(this.labelTS23_Click); // // udAIRCalibrationPosition // this.udAIRCalibrationPosition.Enabled = false; this.udAIRCalibrationPosition.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRCalibrationPosition.Location = new System.Drawing.Point(13, 146); this.udAIRCalibrationPosition.Maximum = new System.Decimal(new int[] { 4094, 0, 0, 0}); this.udAIRCalibrationPosition.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udAIRCalibrationPosition.Name = "udAIRCalibrationPosition"; this.udAIRCalibrationPosition.Size = new System.Drawing.Size(56, 20); this.udAIRCalibrationPosition.TabIndex = 18; this.toolTip1.SetToolTip(this.udAIRCalibrationPosition, "Sets the I/Q AIR position within the received spectrum"); this.udAIRCalibrationPosition.Value = new System.Decimal(new int[] { 2048, 0, 0, 0}); this.udAIRCalibrationPosition.Visible = false; this.udAIRCalibrationPosition.ValueChanged += new System.EventHandler(this.udAIRCalibrationPosition_ValueChanged); // // labelTS20 // this.labelTS20.Image = null; this.labelTS20.Location = new System.Drawing.Point(73, 166); this.labelTS20.Name = "labelTS20"; this.labelTS20.Size = new System.Drawing.Size(160, 16); this.labelTS20.TabIndex = 17; this.labelTS20.Text = " 0 1024 2048 3072 4095"; this.labelTS20.Visible = false; this.labelTS20.Click += new System.EventHandler(this.labelTS20_Click); // // tbAIRCalibrationPosition // this.tbAIRCalibrationPosition.Enabled = false; this.tbAIRCalibrationPosition.LargeChange = 1; this.tbAIRCalibrationPosition.Location = new System.Drawing.Point(73, 132); this.tbAIRCalibrationPosition.Maximum = 4094; this.tbAIRCalibrationPosition.Minimum = 1; this.tbAIRCalibrationPosition.Name = "tbAIRCalibrationPosition"; this.tbAIRCalibrationPosition.Size = new System.Drawing.Size(160, 50); this.tbAIRCalibrationPosition.TabIndex = 16; this.tbAIRCalibrationPosition.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbAIRCalibrationPosition, "Sets the I/Q AIR position within the received spectrum"); this.tbAIRCalibrationPosition.Value = 2048; this.tbAIRCalibrationPosition.Visible = false; this.tbAIRCalibrationPosition.Scroll += new System.EventHandler(this.tbAIRCalibrationPosition_Scroll); // // lblDSPGainValRX // this.lblDSPGainValRX.Image = null; this.lblDSPGainValRX.Location = new System.Drawing.Point(72, 104); this.lblDSPGainValRX.Name = "lblDSPGainValRX"; this.lblDSPGainValRX.Size = new System.Drawing.Size(163, 16); this.lblDSPGainValRX.TabIndex = 15; this.lblDSPGainValRX.Text = "-500 -250 0 250 500"; // // lblDSPPhaseValRX // this.lblDSPPhaseValRX.Image = null; this.lblDSPPhaseValRX.Location = new System.Drawing.Point(72, 56); this.lblDSPPhaseValRX.Name = "lblDSPPhaseValRX"; this.lblDSPPhaseValRX.Size = new System.Drawing.Size(163, 16); this.lblDSPPhaseValRX.TabIndex = 14; this.lblDSPPhaseValRX.Text = "-400 -200 0 200 400"; // // udDSPImageGainRX // this.udDSPImageGainRX.DecimalPlaces = 2; this.udDSPImageGainRX.Increment = new System.Decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImageGainRX.Location = new System.Drawing.Point(16, 88); this.udDSPImageGainRX.Maximum = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDSPImageGainRX.Minimum = new System.Decimal(new int[] { 500, 0, 0, -2147483648}); this.udDSPImageGainRX.Name = "udDSPImageGainRX"; this.udDSPImageGainRX.Size = new System.Drawing.Size(56, 20); this.udDSPImageGainRX.TabIndex = 8; this.toolTip1.SetToolTip(this.udDSPImageGainRX, "Sets the amplitude/gain offset between the I and Q channels. "); this.udDSPImageGainRX.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPImageGainRX.LostFocus += new System.EventHandler(this.udDSPImageGainRX_LostFocus); this.udDSPImageGainRX.ValueChanged += new System.EventHandler(this.udDSPImageGainRX_ValueChanged); // // udDSPImagePhaseRX // this.udDSPImagePhaseRX.DecimalPlaces = 2; this.udDSPImagePhaseRX.Increment = new System.Decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImagePhaseRX.Location = new System.Drawing.Point(16, 40); this.udDSPImagePhaseRX.Maximum = new System.Decimal(new int[] { 400, 0, 0, 0}); this.udDSPImagePhaseRX.Minimum = new System.Decimal(new int[] { 400, 0, 0, -2147483648}); this.udDSPImagePhaseRX.Name = "udDSPImagePhaseRX"; this.udDSPImagePhaseRX.Size = new System.Drawing.Size(56, 20); this.udDSPImagePhaseRX.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPImagePhaseRX, "Sets the phase offset between the I and Q channels. "); this.udDSPImagePhaseRX.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPImagePhaseRX.LostFocus += new System.EventHandler(this.udDSPImagePhaseRX_LostFocus); this.udDSPImagePhaseRX.ValueChanged += new System.EventHandler(this.udDSPImagePhaseRX_ValueChanged); // // lblDSPImageGainRX // this.lblDSPImageGainRX.Image = null; this.lblDSPImageGainRX.Location = new System.Drawing.Point(16, 72); this.lblDSPImageGainRX.Name = "lblDSPImageGainRX"; this.lblDSPImageGainRX.Size = new System.Drawing.Size(48, 16); this.lblDSPImageGainRX.TabIndex = 6; this.lblDSPImageGainRX.Text = "Gain:"; // // tbDSPImagePhaseRX // this.tbDSPImagePhaseRX.LargeChange = 1; this.tbDSPImagePhaseRX.Location = new System.Drawing.Point(72, 24); this.tbDSPImagePhaseRX.Maximum = 400; this.tbDSPImagePhaseRX.Minimum = -400; this.tbDSPImagePhaseRX.Name = "tbDSPImagePhaseRX"; this.tbDSPImagePhaseRX.Size = new System.Drawing.Size(160, 50); this.tbDSPImagePhaseRX.TabIndex = 3; this.tbDSPImagePhaseRX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImagePhaseRX, "Sets the phase offset between the I and Q channels. "); this.tbDSPImagePhaseRX.Scroll += new System.EventHandler(this.tbDSPImagePhaseRX_Scroll); // // lblDSPImagePhaseRX // this.lblDSPImagePhaseRX.Image = null; this.lblDSPImagePhaseRX.Location = new System.Drawing.Point(16, 24); this.lblDSPImagePhaseRX.Name = "lblDSPImagePhaseRX"; this.lblDSPImagePhaseRX.Size = new System.Drawing.Size(48, 16); this.lblDSPImagePhaseRX.TabIndex = 5; this.lblDSPImagePhaseRX.Text = "Phase:"; // // tbDSPImageGainRX // this.tbDSPImageGainRX.LargeChange = 1; this.tbDSPImageGainRX.Location = new System.Drawing.Point(72, 72); this.tbDSPImageGainRX.Maximum = 500; this.tbDSPImageGainRX.Minimum = -500; this.tbDSPImageGainRX.Name = "tbDSPImageGainRX"; this.tbDSPImageGainRX.Size = new System.Drawing.Size(160, 50); this.tbDSPImageGainRX.TabIndex = 4; this.tbDSPImageGainRX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImageGainRX, "Sets the amplitude/gain offset between the I and Q channels. "); this.tbDSPImageGainRX.Scroll += new System.EventHandler(this.tbDSPImageGainRX_Scroll); // // grpDSPImageRejectTX // this.grpDSPImageRejectTX.Controls.Add(this.checkboxTXImagCal); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPGainValTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPPhaseValTX); this.grpDSPImageRejectTX.Controls.Add(this.udDSPImageGainTX); this.grpDSPImageRejectTX.Controls.Add(this.udDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPImageGainTX); this.grpDSPImageRejectTX.Controls.Add(this.tbDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.lblDSPImagePhaseTX); this.grpDSPImageRejectTX.Controls.Add(this.tbDSPImageGainTX); this.grpDSPImageRejectTX.Location = new System.Drawing.Point(264, 8); this.grpDSPImageRejectTX.Name = "grpDSPImageRejectTX"; this.grpDSPImageRejectTX.Size = new System.Drawing.Size(240, 184); this.grpDSPImageRejectTX.TabIndex = 33; this.grpDSPImageRejectTX.TabStop = false; this.grpDSPImageRejectTX.Text = "Transmit Rejection"; // // checkboxTXImagCal // this.checkboxTXImagCal.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.checkboxTXImagCal.Image = null; this.checkboxTXImagCal.Location = new System.Drawing.Point(48, 144); this.checkboxTXImagCal.Name = "checkboxTXImagCal"; this.checkboxTXImagCal.Size = new System.Drawing.Size(144, 16); this.checkboxTXImagCal.TabIndex = 37; this.checkboxTXImagCal.Text = "Enable TX Image Tone"; this.toolTip1.SetToolTip(this.checkboxTXImagCal, "Check this box while in MOX on USB to calibrate the Transmit Rejection using the " + "controls above."); this.checkboxTXImagCal.CheckedChanged += new System.EventHandler(this.chkTXImagCal_CheckedChanged); // // lblDSPGainValTX // this.lblDSPGainValTX.Image = null; this.lblDSPGainValTX.Location = new System.Drawing.Point(72, 104); this.lblDSPGainValTX.Name = "lblDSPGainValTX"; this.lblDSPGainValTX.Size = new System.Drawing.Size(163, 16); this.lblDSPGainValTX.TabIndex = 15; this.lblDSPGainValTX.Text = "-500 -250 0 250 500"; // // lblDSPPhaseValTX // this.lblDSPPhaseValTX.Image = null; this.lblDSPPhaseValTX.Location = new System.Drawing.Point(72, 56); this.lblDSPPhaseValTX.Name = "lblDSPPhaseValTX"; this.lblDSPPhaseValTX.Size = new System.Drawing.Size(163, 16); this.lblDSPPhaseValTX.TabIndex = 14; this.lblDSPPhaseValTX.Text = "-400 -200 0 200 400"; // // udDSPImageGainTX // this.udDSPImageGainTX.DecimalPlaces = 2; this.udDSPImageGainTX.Increment = new System.Decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImageGainTX.Location = new System.Drawing.Point(16, 88); this.udDSPImageGainTX.Maximum = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDSPImageGainTX.Minimum = new System.Decimal(new int[] { 500, 0, 0, -2147483648}); this.udDSPImageGainTX.Name = "udDSPImageGainTX"; this.udDSPImageGainTX.Size = new System.Drawing.Size(56, 20); this.udDSPImageGainTX.TabIndex = 8; this.toolTip1.SetToolTip(this.udDSPImageGainTX, "Sets the amplitude/gain offset between the I and Q channels. "); this.udDSPImageGainTX.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPImageGainTX.LostFocus += new System.EventHandler(this.udDSPImageGainTX_LostFocus); this.udDSPImageGainTX.ValueChanged += new System.EventHandler(this.udDSPImageGainTX_ValueChanged); // // udDSPImagePhaseTX // this.udDSPImagePhaseTX.DecimalPlaces = 2; this.udDSPImagePhaseTX.Increment = new System.Decimal(new int[] { 1, 0, 0, 131072}); this.udDSPImagePhaseTX.Location = new System.Drawing.Point(16, 40); this.udDSPImagePhaseTX.Maximum = new System.Decimal(new int[] { 400, 0, 0, 0}); this.udDSPImagePhaseTX.Minimum = new System.Decimal(new int[] { 400, 0, 0, -2147483648}); this.udDSPImagePhaseTX.Name = "udDSPImagePhaseTX"; this.udDSPImagePhaseTX.Size = new System.Drawing.Size(56, 20); this.udDSPImagePhaseTX.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPImagePhaseTX, "Sets the phase offset between the I and Q channels. "); this.udDSPImagePhaseTX.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPImagePhaseTX.LostFocus += new System.EventHandler(this.udDSPImagePhaseTX_LostFocus); this.udDSPImagePhaseTX.ValueChanged += new System.EventHandler(this.udDSPImagePhaseTX_ValueChanged); // // lblDSPImageGainTX // this.lblDSPImageGainTX.Image = null; this.lblDSPImageGainTX.Location = new System.Drawing.Point(16, 72); this.lblDSPImageGainTX.Name = "lblDSPImageGainTX"; this.lblDSPImageGainTX.Size = new System.Drawing.Size(48, 16); this.lblDSPImageGainTX.TabIndex = 6; this.lblDSPImageGainTX.Text = "Gain:"; // // tbDSPImagePhaseTX // this.tbDSPImagePhaseTX.LargeChange = 1; this.tbDSPImagePhaseTX.Location = new System.Drawing.Point(72, 24); this.tbDSPImagePhaseTX.Maximum = 400; this.tbDSPImagePhaseTX.Minimum = -400; this.tbDSPImagePhaseTX.Name = "tbDSPImagePhaseTX"; this.tbDSPImagePhaseTX.Size = new System.Drawing.Size(160, 50); this.tbDSPImagePhaseTX.TabIndex = 3; this.tbDSPImagePhaseTX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImagePhaseTX, "Sets the phase offset between the I and Q channels. "); this.tbDSPImagePhaseTX.Scroll += new System.EventHandler(this.tbDSPImagePhaseTX_Scroll); // // lblDSPImagePhaseTX // this.lblDSPImagePhaseTX.Image = null; this.lblDSPImagePhaseTX.Location = new System.Drawing.Point(16, 24); this.lblDSPImagePhaseTX.Name = "lblDSPImagePhaseTX"; this.lblDSPImagePhaseTX.Size = new System.Drawing.Size(48, 16); this.lblDSPImagePhaseTX.TabIndex = 5; this.lblDSPImagePhaseTX.Text = "Phase:"; // // tbDSPImageGainTX // this.tbDSPImageGainTX.LargeChange = 1; this.tbDSPImageGainTX.Location = new System.Drawing.Point(72, 72); this.tbDSPImageGainTX.Maximum = 500; this.tbDSPImageGainTX.Minimum = -500; this.tbDSPImageGainTX.Name = "tbDSPImageGainTX"; this.tbDSPImageGainTX.Size = new System.Drawing.Size(160, 50); this.tbDSPImageGainTX.TabIndex = 4; this.tbDSPImageGainTX.TickFrequency = 50; this.toolTip1.SetToolTip(this.tbDSPImageGainTX, "Sets the amplitude/gain offset between the I and Q channels. "); this.tbDSPImageGainTX.Scroll += new System.EventHandler(this.tbDSPImageGainTX_Scroll); // // tpDSPKeyer // this.tpDSPKeyer.Controls.Add(this.grpKeyerConnections); this.tpDSPKeyer.Controls.Add(this.grpDSPCWPitch); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerOptions); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerSignalShaping); this.tpDSPKeyer.Controls.Add(this.grpDSPKeyerSemiBreakIn); this.tpDSPKeyer.Location = new System.Drawing.Point(4, 22); this.tpDSPKeyer.Name = "tpDSPKeyer"; this.tpDSPKeyer.Size = new System.Drawing.Size(592, 318); this.tpDSPKeyer.TabIndex = 0; this.tpDSPKeyer.Text = "Keyer"; // // grpKeyerConnections // this.grpKeyerConnections.Controls.Add(this.comboKeyerConnKeyLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnSecondary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnSecondary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnKeyLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnPTTLine); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnPrimary); this.grpKeyerConnections.Controls.Add(this.lblKeyerConnPTTLine); this.grpKeyerConnections.Controls.Add(this.comboKeyerConnPrimary); this.grpKeyerConnections.Location = new System.Drawing.Point(112, 8); this.grpKeyerConnections.Name = "grpKeyerConnections"; this.grpKeyerConnections.Size = new System.Drawing.Size(176, 128); this.grpKeyerConnections.TabIndex = 40; this.grpKeyerConnections.TabStop = false; this.grpKeyerConnections.Text = "Connections"; // // comboKeyerConnKeyLine // this.comboKeyerConnKeyLine.DisplayMember = "None"; this.comboKeyerConnKeyLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnKeyLine.DropDownWidth = 64; this.comboKeyerConnKeyLine.Items.AddRange(new object[] { "None", "DTR", "RTS"}); this.comboKeyerConnKeyLine.Location = new System.Drawing.Point(104, 96); this.comboKeyerConnKeyLine.Name = "comboKeyerConnKeyLine"; this.comboKeyerConnKeyLine.Size = new System.Drawing.Size(64, 20); this.comboKeyerConnKeyLine.TabIndex = 51; this.toolTip1.SetToolTip(this.comboKeyerConnKeyLine, "Sets the COM port line that triggers the tone on the Keyer Port selected above."); this.comboKeyerConnKeyLine.ValueMember = "None"; this.comboKeyerConnKeyLine.Visible = false; this.comboKeyerConnKeyLine.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnKeyLine_SelectedIndexChanged); // // comboKeyerConnSecondary // this.comboKeyerConnSecondary.DisplayMember = "None"; this.comboKeyerConnSecondary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnSecondary.DropDownWidth = 64; this.comboKeyerConnSecondary.Items.AddRange(new object[] { "None"}); this.comboKeyerConnSecondary.Location = new System.Drawing.Point(104, 48); this.comboKeyerConnSecondary.Name = "comboKeyerConnSecondary"; this.comboKeyerConnSecondary.Size = new System.Drawing.Size(64, 20); this.comboKeyerConnSecondary.TabIndex = 53; this.toolTip1.SetToolTip(this.comboKeyerConnSecondary, "Sets Keyer Input COM port. This can be an external keyer or a virtual COM port b" + "eing driven by a third party program."); this.comboKeyerConnSecondary.ValueMember = "None"; this.comboKeyerConnSecondary.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnSecondary_SelectedIndexChanged); // // lblKeyerConnSecondary // this.lblKeyerConnSecondary.Image = null; this.lblKeyerConnSecondary.Location = new System.Drawing.Point(16, 48); this.lblKeyerConnSecondary.Name = "lblKeyerConnSecondary"; this.lblKeyerConnSecondary.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnSecondary.TabIndex = 52; this.lblKeyerConnSecondary.Text = "Secondary:"; // // lblKeyerConnKeyLine // this.lblKeyerConnKeyLine.Image = null; this.lblKeyerConnKeyLine.Location = new System.Drawing.Point(16, 96); this.lblKeyerConnKeyLine.Name = "lblKeyerConnKeyLine"; this.lblKeyerConnKeyLine.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnKeyLine.TabIndex = 50; this.lblKeyerConnKeyLine.Text = "Key Line:"; this.lblKeyerConnKeyLine.Visible = false; // // comboKeyerConnPTTLine // this.comboKeyerConnPTTLine.DisplayMember = "None"; this.comboKeyerConnPTTLine.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnPTTLine.DropDownWidth = 64; this.comboKeyerConnPTTLine.Items.AddRange(new object[] { "None", "DTR", "RTS"}); this.comboKeyerConnPTTLine.Location = new System.Drawing.Point(104, 72); this.comboKeyerConnPTTLine.Name = "comboKeyerConnPTTLine"; this.comboKeyerConnPTTLine.Size = new System.Drawing.Size(64, 20); this.comboKeyerConnPTTLine.TabIndex = 49; this.toolTip1.SetToolTip(this.comboKeyerConnPTTLine, "Sets the line on the Keyer Port above that triggers PTT."); this.comboKeyerConnPTTLine.ValueMember = "None"; this.comboKeyerConnPTTLine.Visible = false; this.comboKeyerConnPTTLine.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnPTTLine_SelectedIndexChanged); // // lblKeyerConnPrimary // this.lblKeyerConnPrimary.Image = null; this.lblKeyerConnPrimary.Location = new System.Drawing.Point(16, 24); this.lblKeyerConnPrimary.Name = "lblKeyerConnPrimary"; this.lblKeyerConnPrimary.Size = new System.Drawing.Size(88, 16); this.lblKeyerConnPrimary.TabIndex = 41; this.lblKeyerConnPrimary.Text = "Primary:"; // // lblKeyerConnPTTLine // this.lblKeyerConnPTTLine.Image = null; this.lblKeyerConnPTTLine.Location = new System.Drawing.Point(16, 72); this.lblKeyerConnPTTLine.Name = "lblKeyerConnPTTLine"; this.lblKeyerConnPTTLine.Size = new System.Drawing.Size(68, 16); this.lblKeyerConnPTTLine.TabIndex = 48; this.lblKeyerConnPTTLine.Text = "PTT Line:"; this.lblKeyerConnPTTLine.Visible = false; // // comboKeyerConnPrimary // this.comboKeyerConnPrimary.DisplayMember = "LPT"; this.comboKeyerConnPrimary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKeyerConnPrimary.DropDownWidth = 64; this.comboKeyerConnPrimary.Items.AddRange(new object[] { "5000"}); this.comboKeyerConnPrimary.Location = new System.Drawing.Point(104, 24); this.comboKeyerConnPrimary.Name = "comboKeyerConnPrimary"; this.comboKeyerConnPrimary.Size = new System.Drawing.Size(64, 20); this.comboKeyerConnPrimary.TabIndex = 40; this.toolTip1.SetToolTip(this.comboKeyerConnPrimary, "Sets Key Paddle Input port"); this.comboKeyerConnPrimary.ValueMember = "LPT"; this.comboKeyerConnPrimary.SelectedIndexChanged += new System.EventHandler(this.comboKeyerConnPrimary_SelectedIndexChanged); // // grpDSPCWPitch // this.grpDSPCWPitch.Controls.Add(this.lblDSPCWPitchFreq); this.grpDSPCWPitch.Controls.Add(this.udDSPCWPitch); this.grpDSPCWPitch.Location = new System.Drawing.Point(8, 8); this.grpDSPCWPitch.Name = "grpDSPCWPitch"; this.grpDSPCWPitch.Size = new System.Drawing.Size(96, 57); this.grpDSPCWPitch.TabIndex = 39; this.grpDSPCWPitch.TabStop = false; this.grpDSPCWPitch.Text = "CW Pitch (Hz)"; // // lblDSPCWPitchFreq // this.lblDSPCWPitchFreq.Image = null; this.lblDSPCWPitchFreq.Location = new System.Drawing.Point(8, 24); this.lblDSPCWPitchFreq.Name = "lblDSPCWPitchFreq"; this.lblDSPCWPitchFreq.Size = new System.Drawing.Size(32, 16); this.lblDSPCWPitchFreq.TabIndex = 8; this.lblDSPCWPitchFreq.Text = "Freq:"; // // udDSPCWPitch // this.udDSPCWPitch.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPCWPitch.Location = new System.Drawing.Point(40, 24); this.udDSPCWPitch.Maximum = new System.Decimal(new int[] { 2250, 0, 0, 0}); this.udDSPCWPitch.Minimum = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udDSPCWPitch.Name = "udDSPCWPitch"; this.udDSPCWPitch.Size = new System.Drawing.Size(48, 20); this.udDSPCWPitch.TabIndex = 7; this.toolTip1.SetToolTip(this.udDSPCWPitch, "Selects the preferred CW tone frequency."); this.udDSPCWPitch.Value = new System.Decimal(new int[] { 600, 0, 0, 0}); this.udDSPCWPitch.LostFocus += new System.EventHandler(this.udDSPCWPitch_LostFocus); this.udDSPCWPitch.ValueChanged += new System.EventHandler(this.udDSPCWPitch_ValueChanged); // // grpDSPKeyerOptions // this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerMode); this.grpDSPKeyerOptions.Controls.Add(this.chkHiPerfKeyer); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerRevPdl); this.grpDSPKeyerOptions.Controls.Add(this.chkDSPKeyerDisableMonitor); this.grpDSPKeyerOptions.Controls.Add(this.chkCWKeyerIambic); this.grpDSPKeyerOptions.Controls.Add(this.chkCWAutoSwitchMode); this.grpDSPKeyerOptions.Location = new System.Drawing.Point(296, 8); this.grpDSPKeyerOptions.Name = "grpDSPKeyerOptions"; this.grpDSPKeyerOptions.Size = new System.Drawing.Size(128, 168); this.grpDSPKeyerOptions.TabIndex = 37; this.grpDSPKeyerOptions.TabStop = false; this.grpDSPKeyerOptions.Text = "Options"; // // chkCWKeyerMode // this.chkCWKeyerMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.chkCWKeyerMode.Image = null; this.chkCWKeyerMode.Location = new System.Drawing.Point(16, 120); this.chkCWKeyerMode.Name = "chkCWKeyerMode"; this.chkCWKeyerMode.Size = new System.Drawing.Size(96, 16); this.chkCWKeyerMode.TabIndex = 40; this.chkCWKeyerMode.Text = "Mode B"; this.toolTip1.SetToolTip(this.chkCWKeyerMode, "Set Keyer Mode"); this.chkCWKeyerMode.CheckedChanged += new System.EventHandler(this.chkCWKeyerMode_CheckedChanged); // // chkHiPerfKeyer // this.chkHiPerfKeyer.Checked = true; this.chkHiPerfKeyer.CheckState = System.Windows.Forms.CheckState.Checked; this.chkHiPerfKeyer.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.chkHiPerfKeyer.Image = null; this.chkHiPerfKeyer.Location = new System.Drawing.Point(16, 96); this.chkHiPerfKeyer.Name = "chkHiPerfKeyer"; this.chkHiPerfKeyer.Size = new System.Drawing.Size(96, 16); this.chkHiPerfKeyer.TabIndex = 39; this.chkHiPerfKeyer.Text = "High Res."; this.toolTip1.SetToolTip(this.chkHiPerfKeyer, "Sets High Res CW keyer clock -- only use with P4."); this.chkHiPerfKeyer.CheckedChanged += new System.EventHandler(this.chkHiPerfKeyer_CheckedChanged); // // chkCWKeyerRevPdl // this.chkCWKeyerRevPdl.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.chkCWKeyerRevPdl.Image = null; this.chkCWKeyerRevPdl.Location = new System.Drawing.Point(16, 72); this.chkCWKeyerRevPdl.Name = "chkCWKeyerRevPdl"; this.chkCWKeyerRevPdl.Size = new System.Drawing.Size(88, 16); this.chkCWKeyerRevPdl.TabIndex = 38; this.chkCWKeyerRevPdl.Text = "Rev. Paddle"; this.toolTip1.SetToolTip(this.chkCWKeyerRevPdl, "Reverses the input paddle -- Dot becomes Dash and vice versa."); this.chkCWKeyerRevPdl.CheckedChanged += new System.EventHandler(this.chkCWKeyerRevPdl_CheckedChanged); // // chkDSPKeyerDisableMonitor // this.chkDSPKeyerDisableMonitor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.chkDSPKeyerDisableMonitor.Image = null; this.chkDSPKeyerDisableMonitor.Location = new System.Drawing.Point(16, 48); this.chkDSPKeyerDisableMonitor.Name = "chkDSPKeyerDisableMonitor"; this.chkDSPKeyerDisableMonitor.Size = new System.Drawing.Size(104, 16); this.chkDSPKeyerDisableMonitor.TabIndex = 37; this.chkDSPKeyerDisableMonitor.Text = "Disable Monitor"; this.toolTip1.SetToolTip(this.chkDSPKeyerDisableMonitor, "Disable the monitor output for CW Keyer"); this.chkDSPKeyerDisableMonitor.CheckedChanged += new System.EventHandler(this.chkDSPKeyerDisableMonitor_CheckedChanged); // // chkCWKeyerIambic // this.chkCWKeyerIambic.Checked = true; this.chkCWKeyerIambic.CheckState = System.Windows.Forms.CheckState.Checked; this.chkCWKeyerIambic.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.chkCWKeyerIambic.Image = null; this.chkCWKeyerIambic.Location = new System.Drawing.Point(16, 24); this.chkCWKeyerIambic.Name = "chkCWKeyerIambic"; this.chkCWKeyerIambic.Size = new System.Drawing.Size(64, 16); this.chkCWKeyerIambic.TabIndex = 36; this.chkCWKeyerIambic.Text = "Iambic"; this.toolTip1.SetToolTip(this.chkCWKeyerIambic, "Iambic or Straight Key?"); this.chkCWKeyerIambic.CheckedChanged += new System.EventHandler(this.chkCWKeyerIambic_CheckedChanged); // // chkCWAutoSwitchMode // this.chkCWAutoSwitchMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.chkCWAutoSwitchMode.Image = null; this.chkCWAutoSwitchMode.Location = new System.Drawing.Point(16, 144); this.chkCWAutoSwitchMode.Name = "chkCWAutoSwitchMode"; this.chkCWAutoSwitchMode.Size = new System.Drawing.Size(109, 16); this.chkCWAutoSwitchMode.TabIndex = 41; this.chkCWAutoSwitchMode.Text = "Auto Mode Swch"; this.toolTip1.SetToolTip(this.chkCWAutoSwitchMode, "If enabled, will automatically switch to CW mode when paddles are used no matter " + "the current mode "); this.chkCWAutoSwitchMode.CheckedChanged += new System.EventHandler(this.chkCWAutoSwitchMode_CheckedChanged); // // grpDSPKeyerSignalShaping // this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerDeBounce); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblKeyerDeBounce); this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerWeight); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblCWWeight); this.grpDSPKeyerSignalShaping.Controls.Add(this.udCWKeyerRamp); this.grpDSPKeyerSignalShaping.Controls.Add(this.lblCWRamp); this.grpDSPKeyerSignalShaping.Location = new System.Drawing.Point(432, 8); this.grpDSPKeyerSignalShaping.Name = "grpDSPKeyerSignalShaping"; this.grpDSPKeyerSignalShaping.Size = new System.Drawing.Size(136, 128); this.grpDSPKeyerSignalShaping.TabIndex = 34; this.grpDSPKeyerSignalShaping.TabStop = false; this.grpDSPKeyerSignalShaping.Text = "Signal Shaping"; // // udCWKeyerDeBounce // this.udCWKeyerDeBounce.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerDeBounce.Location = new System.Drawing.Point(80, 72); this.udCWKeyerDeBounce.Maximum = new System.Decimal(new int[] { 15, 0, 0, 0}); this.udCWKeyerDeBounce.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerDeBounce.Name = "udCWKeyerDeBounce"; this.udCWKeyerDeBounce.Size = new System.Drawing.Size(40, 20); this.udCWKeyerDeBounce.TabIndex = 42; this.udCWKeyerDeBounce.Value = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerDeBounce.Visible = false; this.udCWKeyerDeBounce.LostFocus += new System.EventHandler(this.udCWKeyerDeBounce_LostFocus); this.udCWKeyerDeBounce.ValueChanged += new System.EventHandler(this.udCWKeyerDeBounce_ValueChanged); // // lblKeyerDeBounce // this.lblKeyerDeBounce.Image = null; this.lblKeyerDeBounce.Location = new System.Drawing.Point(16, 72); this.lblKeyerDeBounce.Name = "lblKeyerDeBounce"; this.lblKeyerDeBounce.Size = new System.Drawing.Size(64, 16); this.lblKeyerDeBounce.TabIndex = 41; this.lblKeyerDeBounce.Text = "Debounce:"; this.lblKeyerDeBounce.Visible = false; // // udCWKeyerWeight // this.udCWKeyerWeight.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerWeight.Location = new System.Drawing.Point(80, 24); this.udCWKeyerWeight.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udCWKeyerWeight.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udCWKeyerWeight.Name = "udCWKeyerWeight"; this.udCWKeyerWeight.Size = new System.Drawing.Size(40, 20); this.udCWKeyerWeight.TabIndex = 40; this.toolTip1.SetToolTip(this.udCWKeyerWeight, "Sets the weight of the tones when sending Iambic."); this.udCWKeyerWeight.Value = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udCWKeyerWeight.LostFocus += new System.EventHandler(this.udCWKeyerWeight_LostFocus); this.udCWKeyerWeight.ValueChanged += new System.EventHandler(this.udCWKeyerWeight_ValueChanged); // // lblCWWeight // this.lblCWWeight.Image = null; this.lblCWWeight.Location = new System.Drawing.Point(16, 24); this.lblCWWeight.Name = "lblCWWeight"; this.lblCWWeight.Size = new System.Drawing.Size(48, 16); this.lblCWWeight.TabIndex = 39; this.lblCWWeight.Text = "Weight:"; // // udCWKeyerRamp // this.udCWKeyerRamp.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udCWKeyerRamp.Location = new System.Drawing.Point(80, 48); this.udCWKeyerRamp.Maximum = new System.Decimal(new int[] { 25, 0, 0, 0}); this.udCWKeyerRamp.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udCWKeyerRamp.Name = "udCWKeyerRamp"; this.udCWKeyerRamp.Size = new System.Drawing.Size(40, 20); this.udCWKeyerRamp.TabIndex = 40; this.toolTip1.SetToolTip(this.udCWKeyerRamp, "The width of the ramp on the leading and trailing edge of the tone."); this.udCWKeyerRamp.Value = new System.Decimal(new int[] { 5, 0, 0, 0}); this.udCWKeyerRamp.LostFocus += new System.EventHandler(this.udCWKeyerRamp_LostFocus); this.udCWKeyerRamp.ValueChanged += new System.EventHandler(this.udCWKeyerRamp_ValueChanged); // // lblCWRamp // this.lblCWRamp.Image = null; this.lblCWRamp.Location = new System.Drawing.Point(16, 48); this.lblCWRamp.Name = "lblCWRamp"; this.lblCWRamp.Size = new System.Drawing.Size(64, 16); this.lblCWRamp.TabIndex = 39; this.lblCWRamp.Text = "Ramp (ms):"; // // grpDSPKeyerSemiBreakIn // this.grpDSPKeyerSemiBreakIn.Controls.Add(this.chkCWBreakInEnabled); this.grpDSPKeyerSemiBreakIn.Controls.Add(this.lblCWBreakInDelay); this.grpDSPKeyerSemiBreakIn.Controls.Add(this.udCWBreakInDelay); this.grpDSPKeyerSemiBreakIn.Location = new System.Drawing.Point(8, 144); this.grpDSPKeyerSemiBreakIn.Name = "grpDSPKeyerSemiBreakIn"; this.grpDSPKeyerSemiBreakIn.Size = new System.Drawing.Size(136, 88); this.grpDSPKeyerSemiBreakIn.TabIndex = 38; this.grpDSPKeyerSemiBreakIn.TabStop = false; this.grpDSPKeyerSemiBreakIn.Text = "Break In"; // // chkCWBreakInEnabled // this.chkCWBreakInEnabled.Checked = true; this.chkCWBreakInEnabled.CheckState = System.Windows.Forms.CheckState.Checked; this.chkCWBreakInEnabled.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.chkCWBreakInEnabled.Image = null; this.chkCWBreakInEnabled.Location = new System.Drawing.Point(16, 24); this.chkCWBreakInEnabled.Name = "chkCWBreakInEnabled"; this.chkCWBreakInEnabled.Size = new System.Drawing.Size(80, 16); this.chkCWBreakInEnabled.TabIndex = 36; this.chkCWBreakInEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkCWBreakInEnabled, "Enables Semi Break In operation."); this.chkCWBreakInEnabled.CheckedChanged += new System.EventHandler(this.chkDSPKeyerSemiBreakInEnabled_CheckedChanged); // // lblCWBreakInDelay // this.lblCWBreakInDelay.Image = null; this.lblCWBreakInDelay.Location = new System.Drawing.Point(8, 48); this.lblCWBreakInDelay.Name = "lblCWBreakInDelay"; this.lblCWBreakInDelay.Size = new System.Drawing.Size(64, 16); this.lblCWBreakInDelay.TabIndex = 34; this.lblCWBreakInDelay.Text = "Delay (ms):"; // // udCWBreakInDelay // this.udCWBreakInDelay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udCWBreakInDelay.Location = new System.Drawing.Point(72, 48); this.udCWBreakInDelay.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udCWBreakInDelay.Minimum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udCWBreakInDelay.Name = "udCWBreakInDelay"; this.udCWBreakInDelay.Size = new System.Drawing.Size(48, 20); this.udCWBreakInDelay.TabIndex = 35; this.toolTip1.SetToolTip(this.udCWBreakInDelay, "Amount of time to stay in TX after the last detected CW signal."); this.udCWBreakInDelay.Value = new System.Decimal(new int[] { 60, 0, 0, 0}); this.udCWBreakInDelay.LostFocus += new System.EventHandler(this.udCWBreakInDelay_LostFocus); this.udCWBreakInDelay.ValueChanged += new System.EventHandler(this.udCWKeyerSemiBreakInDelay_ValueChanged); // // tpDSPAGCALC // this.tpDSPAGCALC.Controls.Add(this.grpDSPLeveler); this.tpDSPAGCALC.Controls.Add(this.grpDSPALC); this.tpDSPAGCALC.Controls.Add(this.grpDSPAGC); this.tpDSPAGCALC.Location = new System.Drawing.Point(4, 22); this.tpDSPAGCALC.Name = "tpDSPAGCALC"; this.tpDSPAGCALC.Size = new System.Drawing.Size(592, 318); this.tpDSPAGCALC.TabIndex = 3; this.tpDSPAGCALC.Text = "AGC/ALC"; // // grpDSPLeveler // this.grpDSPLeveler.Controls.Add(this.chkDSPLevelerEnabled); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerHangThreshold); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerHangTime); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerHangTime); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerThreshold); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerSlope); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerDecay); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerSlope); this.grpDSPLeveler.Controls.Add(this.udDSPLevelerAttack); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerDecay); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerAttack); this.grpDSPLeveler.Controls.Add(this.lblDSPLevelerThreshold); this.grpDSPLeveler.Controls.Add(this.tbDSPLevelerHangThreshold); this.grpDSPLeveler.Location = new System.Drawing.Point(264, 8); this.grpDSPLeveler.Name = "grpDSPLeveler"; this.grpDSPLeveler.Size = new System.Drawing.Size(144, 216); this.grpDSPLeveler.TabIndex = 39; this.grpDSPLeveler.TabStop = false; this.grpDSPLeveler.Text = "Leveler"; // // chkDSPLevelerEnabled // this.chkDSPLevelerEnabled.Checked = true; this.chkDSPLevelerEnabled.CheckState = System.Windows.Forms.CheckState.Checked; this.chkDSPLevelerEnabled.Image = null; this.chkDSPLevelerEnabled.Location = new System.Drawing.Point(16, 24); this.chkDSPLevelerEnabled.Name = "chkDSPLevelerEnabled"; this.chkDSPLevelerEnabled.Size = new System.Drawing.Size(104, 16); this.chkDSPLevelerEnabled.TabIndex = 42; this.chkDSPLevelerEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkDSPLevelerEnabled, "Check this box to Enabled (activate) the leveler feature."); this.chkDSPLevelerEnabled.CheckedChanged += new System.EventHandler(this.chkDSPLevelerEnabled_CheckedChanged); // // lblDSPLevelerHangThreshold // this.lblDSPLevelerHangThreshold.Image = null; this.lblDSPLevelerHangThreshold.Location = new System.Drawing.Point(8, 168); this.lblDSPLevelerHangThreshold.Name = "lblDSPLevelerHangThreshold"; this.lblDSPLevelerHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPLevelerHangThreshold.TabIndex = 41; this.lblDSPLevelerHangThreshold.Text = "Hang Threshold:"; this.lblDSPLevelerHangThreshold.Visible = false; // // udDSPLevelerHangTime // this.udDSPLevelerHangTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerHangTime.Location = new System.Drawing.Point(88, 144); this.udDSPLevelerHangTime.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udDSPLevelerHangTime.Minimum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerHangTime.Name = "udDSPLevelerHangTime"; this.udDSPLevelerHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPLevelerHangTime.TabIndex = 15; this.udDSPLevelerHangTime.Value = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDSPLevelerHangTime.LostFocus += new System.EventHandler(this.udDSPLevelerHangTime_LostFocus); this.udDSPLevelerHangTime.ValueChanged += new System.EventHandler(this.udDSPLevelerHangTime_ValueChanged); // // lblDSPLevelerHangTime // this.lblDSPLevelerHangTime.Image = null; this.lblDSPLevelerHangTime.Location = new System.Drawing.Point(8, 144); this.lblDSPLevelerHangTime.Name = "lblDSPLevelerHangTime"; this.lblDSPLevelerHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPLevelerHangTime.TabIndex = 14; this.lblDSPLevelerHangTime.Text = "Hang (ms):"; // // udDSPLevelerThreshold // this.udDSPLevelerThreshold.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerThreshold.Location = new System.Drawing.Point(88, 72); this.udDSPLevelerThreshold.Maximum = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udDSPLevelerThreshold.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerThreshold.Name = "udDSPLevelerThreshold"; this.udDSPLevelerThreshold.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerThreshold.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPLevelerThreshold, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPLevelerThreshold.Value = new System.Decimal(new int[] { 15, 0, 0, 0}); this.udDSPLevelerThreshold.LostFocus += new System.EventHandler(this.udDSPLevelerThreshold_LostFocus); this.udDSPLevelerThreshold.ValueChanged += new System.EventHandler(this.udDSPLevelerThreshold_ValueChanged); // // udDSPLevelerSlope // this.udDSPLevelerSlope.Enabled = false; this.udDSPLevelerSlope.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerSlope.Location = new System.Drawing.Point(88, 48); this.udDSPLevelerSlope.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udDSPLevelerSlope.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerSlope.Name = "udDSPLevelerSlope"; this.udDSPLevelerSlope.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerSlope.TabIndex = 13; this.udDSPLevelerSlope.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPLevelerSlope.Visible = false; this.udDSPLevelerSlope.LostFocus += new System.EventHandler(this.udDSPLevelerSlope_LostFocus); this.udDSPLevelerSlope.ValueChanged += new System.EventHandler(this.udDSPLevelerSlope_ValueChanged); // // udDSPLevelerDecay // this.udDSPLevelerDecay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerDecay.Location = new System.Drawing.Point(88, 120); this.udDSPLevelerDecay.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udDSPLevelerDecay.Minimum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerDecay.Name = "udDSPLevelerDecay"; this.udDSPLevelerDecay.Size = new System.Drawing.Size(48, 20); this.udDSPLevelerDecay.TabIndex = 12; this.udDSPLevelerDecay.Value = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDSPLevelerDecay.LostFocus += new System.EventHandler(this.udDSPLevelerDecay_LostFocus); this.udDSPLevelerDecay.ValueChanged += new System.EventHandler(this.udDSPLevelerDecay_ValueChanged); // // lblDSPLevelerSlope // this.lblDSPLevelerSlope.Enabled = false; this.lblDSPLevelerSlope.Image = null; this.lblDSPLevelerSlope.Location = new System.Drawing.Point(8, 48); this.lblDSPLevelerSlope.Name = "lblDSPLevelerSlope"; this.lblDSPLevelerSlope.Size = new System.Drawing.Size(64, 16); this.lblDSPLevelerSlope.TabIndex = 11; this.lblDSPLevelerSlope.Text = "Slope (dB):"; this.lblDSPLevelerSlope.Visible = false; // // udDSPLevelerAttack // this.udDSPLevelerAttack.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerAttack.Location = new System.Drawing.Point(88, 96); this.udDSPLevelerAttack.Maximum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPLevelerAttack.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPLevelerAttack.Name = "udDSPLevelerAttack"; this.udDSPLevelerAttack.Size = new System.Drawing.Size(40, 20); this.udDSPLevelerAttack.TabIndex = 10; this.udDSPLevelerAttack.Value = new System.Decimal(new int[] { 2, 0, 0, 0}); this.udDSPLevelerAttack.LostFocus += new System.EventHandler(this.udDSPLevelerAttack_LostFocus); this.udDSPLevelerAttack.ValueChanged += new System.EventHandler(this.udDSPLevelerAttack_ValueChanged); // // lblDSPLevelerDecay // this.lblDSPLevelerDecay.Image = null; this.lblDSPLevelerDecay.Location = new System.Drawing.Point(8, 120); this.lblDSPLevelerDecay.Name = "lblDSPLevelerDecay"; this.lblDSPLevelerDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPLevelerDecay.TabIndex = 9; this.lblDSPLevelerDecay.Text = "Decay (ms):"; // // lblDSPLevelerAttack // this.lblDSPLevelerAttack.Image = null; this.lblDSPLevelerAttack.Location = new System.Drawing.Point(8, 96); this.lblDSPLevelerAttack.Name = "lblDSPLevelerAttack"; this.lblDSPLevelerAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPLevelerAttack.TabIndex = 8; this.lblDSPLevelerAttack.Text = "Attack (ms):"; // // lblDSPLevelerThreshold // this.lblDSPLevelerThreshold.Image = null; this.lblDSPLevelerThreshold.Location = new System.Drawing.Point(8, 72); this.lblDSPLevelerThreshold.Name = "lblDSPLevelerThreshold"; this.lblDSPLevelerThreshold.Size = new System.Drawing.Size(88, 24); this.lblDSPLevelerThreshold.TabIndex = 7; this.lblDSPLevelerThreshold.Text = "Max.Gain (dB):"; // // tbDSPLevelerHangThreshold // this.tbDSPLevelerHangThreshold.AutoSize = false; this.tbDSPLevelerHangThreshold.Enabled = false; this.tbDSPLevelerHangThreshold.LargeChange = 1; this.tbDSPLevelerHangThreshold.Location = new System.Drawing.Point(8, 184); this.tbDSPLevelerHangThreshold.Maximum = 100; this.tbDSPLevelerHangThreshold.Name = "tbDSPLevelerHangThreshold"; this.tbDSPLevelerHangThreshold.Size = new System.Drawing.Size(128, 16); this.tbDSPLevelerHangThreshold.TabIndex = 40; this.tbDSPLevelerHangThreshold.TickFrequency = 10; this.tbDSPLevelerHangThreshold.Visible = false; this.tbDSPLevelerHangThreshold.Scroll += new System.EventHandler(this.tbDSPLevelerHangThreshold_Scroll); // // grpDSPALC // this.grpDSPALC.Controls.Add(this.lblDSPALCHangThreshold); this.grpDSPALC.Controls.Add(this.tbDSPALCHangThreshold); this.grpDSPALC.Controls.Add(this.udDSPALCHangTime); this.grpDSPALC.Controls.Add(this.lblDSPALCHangTime); this.grpDSPALC.Controls.Add(this.udDSPALCThreshold); this.grpDSPALC.Controls.Add(this.udDSPALCSlope); this.grpDSPALC.Controls.Add(this.udDSPALCDecay); this.grpDSPALC.Controls.Add(this.lblDSPALCSlope); this.grpDSPALC.Controls.Add(this.udDSPALCAttack); this.grpDSPALC.Controls.Add(this.lblDSPALCDecay); this.grpDSPALC.Controls.Add(this.lblDSPALCAttack); this.grpDSPALC.Controls.Add(this.lblDSPALCThreshold); this.grpDSPALC.Location = new System.Drawing.Point(416, 8); this.grpDSPALC.Name = "grpDSPALC"; this.grpDSPALC.Size = new System.Drawing.Size(144, 192); this.grpDSPALC.TabIndex = 38; this.grpDSPALC.TabStop = false; this.grpDSPALC.Text = "ALC"; // // lblDSPALCHangThreshold // this.lblDSPALCHangThreshold.Image = null; this.lblDSPALCHangThreshold.Location = new System.Drawing.Point(8, 144); this.lblDSPALCHangThreshold.Name = "lblDSPALCHangThreshold"; this.lblDSPALCHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPALCHangThreshold.TabIndex = 43; this.lblDSPALCHangThreshold.Text = "Hang Threshold:"; this.lblDSPALCHangThreshold.Visible = false; // // tbDSPALCHangThreshold // this.tbDSPALCHangThreshold.AutoSize = false; this.tbDSPALCHangThreshold.Enabled = false; this.tbDSPALCHangThreshold.LargeChange = 1; this.tbDSPALCHangThreshold.Location = new System.Drawing.Point(8, 160); this.tbDSPALCHangThreshold.Maximum = 100; this.tbDSPALCHangThreshold.Name = "tbDSPALCHangThreshold"; this.tbDSPALCHangThreshold.Size = new System.Drawing.Size(128, 16); this.tbDSPALCHangThreshold.TabIndex = 42; this.tbDSPALCHangThreshold.TickFrequency = 10; this.tbDSPALCHangThreshold.Visible = false; // // udDSPALCHangTime // this.udDSPALCHangTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCHangTime.Location = new System.Drawing.Point(88, 120); this.udDSPALCHangTime.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udDSPALCHangTime.Minimum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCHangTime.Name = "udDSPALCHangTime"; this.udDSPALCHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPALCHangTime.TabIndex = 17; this.udDSPALCHangTime.Value = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDSPALCHangTime.LostFocus += new System.EventHandler(this.udDSPALCHangTime_LostFocus); this.udDSPALCHangTime.ValueChanged += new System.EventHandler(this.udDSPALCHangTime_ValueChanged); // // lblDSPALCHangTime // this.lblDSPALCHangTime.Image = null; this.lblDSPALCHangTime.Location = new System.Drawing.Point(8, 120); this.lblDSPALCHangTime.Name = "lblDSPALCHangTime"; this.lblDSPALCHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPALCHangTime.TabIndex = 16; this.lblDSPALCHangTime.Text = "Hang (ms):"; // // udDSPALCThreshold // this.udDSPALCThreshold.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCThreshold.Location = new System.Drawing.Point(88, 48); this.udDSPALCThreshold.Maximum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCThreshold.Minimum = new System.Decimal(new int[] { 120, 0, 0, -2147483648}); this.udDSPALCThreshold.Name = "udDSPALCThreshold"; this.udDSPALCThreshold.Size = new System.Drawing.Size(48, 20); this.udDSPALCThreshold.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPALCThreshold, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPALCThreshold.Value = new System.Decimal(new int[] { 120, 0, 0, -2147483648}); this.udDSPALCThreshold.Visible = false; this.udDSPALCThreshold.LostFocus += new System.EventHandler(this.udDSPALCThreshold_LostFocus); this.udDSPALCThreshold.ValueChanged += new System.EventHandler(this.udDSPALCThreshold_ValueChanged); // // udDSPALCSlope // this.udDSPALCSlope.Enabled = false; this.udDSPALCSlope.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCSlope.Location = new System.Drawing.Point(88, 24); this.udDSPALCSlope.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udDSPALCSlope.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCSlope.Name = "udDSPALCSlope"; this.udDSPALCSlope.Size = new System.Drawing.Size(40, 20); this.udDSPALCSlope.TabIndex = 13; this.udDSPALCSlope.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPALCSlope.Visible = false; this.udDSPALCSlope.LostFocus += new System.EventHandler(this.udDSPALCSlope_LostFocus); // // udDSPALCDecay // this.udDSPALCDecay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCDecay.Location = new System.Drawing.Point(88, 96); this.udDSPALCDecay.Maximum = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udDSPALCDecay.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCDecay.Name = "udDSPALCDecay"; this.udDSPALCDecay.Size = new System.Drawing.Size(48, 20); this.udDSPALCDecay.TabIndex = 12; this.udDSPALCDecay.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCDecay.LostFocus += new System.EventHandler(this.udDSPALCDecay_LostFocus); this.udDSPALCDecay.ValueChanged += new System.EventHandler(this.udDSPALCDecay_ValueChanged); // // lblDSPALCSlope // this.lblDSPALCSlope.Image = null; this.lblDSPALCSlope.Location = new System.Drawing.Point(8, 24); this.lblDSPALCSlope.Name = "lblDSPALCSlope"; this.lblDSPALCSlope.Size = new System.Drawing.Size(64, 16); this.lblDSPALCSlope.TabIndex = 11; this.lblDSPALCSlope.Text = "Slope (dB):"; this.lblDSPALCSlope.Visible = false; // // udDSPALCAttack // this.udDSPALCAttack.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCAttack.Location = new System.Drawing.Point(88, 72); this.udDSPALCAttack.Maximum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPALCAttack.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPALCAttack.Name = "udDSPALCAttack"; this.udDSPALCAttack.Size = new System.Drawing.Size(40, 20); this.udDSPALCAttack.TabIndex = 10; this.udDSPALCAttack.Value = new System.Decimal(new int[] { 2, 0, 0, 0}); this.udDSPALCAttack.LostFocus += new System.EventHandler(this.udDSPALCAttack_LostFocus); this.udDSPALCAttack.ValueChanged += new System.EventHandler(this.udDSPALCAttack_ValueChanged); // // lblDSPALCDecay // this.lblDSPALCDecay.Image = null; this.lblDSPALCDecay.Location = new System.Drawing.Point(8, 96); this.lblDSPALCDecay.Name = "lblDSPALCDecay"; this.lblDSPALCDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPALCDecay.TabIndex = 9; this.lblDSPALCDecay.Text = "Decay (ms):"; // // lblDSPALCAttack // this.lblDSPALCAttack.Image = null; this.lblDSPALCAttack.Location = new System.Drawing.Point(8, 72); this.lblDSPALCAttack.Name = "lblDSPALCAttack"; this.lblDSPALCAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPALCAttack.TabIndex = 8; this.lblDSPALCAttack.Text = "Attack (ms):"; // // lblDSPALCThreshold // this.lblDSPALCThreshold.Image = null; this.lblDSPALCThreshold.Location = new System.Drawing.Point(8, 48); this.lblDSPALCThreshold.Name = "lblDSPALCThreshold"; this.lblDSPALCThreshold.Size = new System.Drawing.Size(88, 24); this.lblDSPALCThreshold.TabIndex = 7; this.lblDSPALCThreshold.Text = "Neg. Gain (dB):"; this.lblDSPALCThreshold.Visible = false; // // grpDSPAGC // this.grpDSPAGC.Controls.Add(this.tbDSPAGCHangThreshold); this.grpDSPAGC.Controls.Add(this.lblDSPAGCHangThreshold); this.grpDSPAGC.Controls.Add(this.lblDSPAGCHangTime); this.grpDSPAGC.Controls.Add(this.udDSPAGCHangTime); this.grpDSPAGC.Controls.Add(this.udDSPAGCMaxGaindB); this.grpDSPAGC.Controls.Add(this.udDSPAGCSlope); this.grpDSPAGC.Controls.Add(this.udDSPAGCDecay); this.grpDSPAGC.Controls.Add(this.lblDSPAGCSlope); this.grpDSPAGC.Controls.Add(this.udDSPAGCAttack); this.grpDSPAGC.Controls.Add(this.lblDSPAGCDecay); this.grpDSPAGC.Controls.Add(this.lblDSPAGCAttack); this.grpDSPAGC.Controls.Add(this.lblDSPAGCMaxGain); this.grpDSPAGC.Controls.Add(this.udDSPAGCFixedGaindB); this.grpDSPAGC.Controls.Add(this.lblDSPAGCFixed); this.grpDSPAGC.Location = new System.Drawing.Point(8, 8); this.grpDSPAGC.Name = "grpDSPAGC"; this.grpDSPAGC.Size = new System.Drawing.Size(168, 232); this.grpDSPAGC.TabIndex = 31; this.grpDSPAGC.TabStop = false; this.grpDSPAGC.Text = "AGC"; // // tbDSPAGCHangThreshold // this.tbDSPAGCHangThreshold.AutoSize = false; this.tbDSPAGCHangThreshold.LargeChange = 1; this.tbDSPAGCHangThreshold.Location = new System.Drawing.Point(8, 168); this.tbDSPAGCHangThreshold.Maximum = 100; this.tbDSPAGCHangThreshold.Name = "tbDSPAGCHangThreshold"; this.tbDSPAGCHangThreshold.Size = new System.Drawing.Size(144, 16); this.tbDSPAGCHangThreshold.TabIndex = 47; this.tbDSPAGCHangThreshold.TickFrequency = 10; this.tbDSPAGCHangThreshold.Scroll += new System.EventHandler(this.tbDSPAGCHangThreshold_Scroll); // // lblDSPAGCHangThreshold // this.lblDSPAGCHangThreshold.Image = null; this.lblDSPAGCHangThreshold.Location = new System.Drawing.Point(8, 144); this.lblDSPAGCHangThreshold.Name = "lblDSPAGCHangThreshold"; this.lblDSPAGCHangThreshold.Size = new System.Drawing.Size(88, 16); this.lblDSPAGCHangThreshold.TabIndex = 46; this.lblDSPAGCHangThreshold.Text = "Hang Threshold:"; // // lblDSPAGCHangTime // this.lblDSPAGCHangTime.Image = null; this.lblDSPAGCHangTime.Location = new System.Drawing.Point(8, 120); this.lblDSPAGCHangTime.Name = "lblDSPAGCHangTime"; this.lblDSPAGCHangTime.Size = new System.Drawing.Size(72, 16); this.lblDSPAGCHangTime.TabIndex = 45; this.lblDSPAGCHangTime.Text = "Hang (ms):"; // // udDSPAGCHangTime // this.udDSPAGCHangTime.Enabled = false; this.udDSPAGCHangTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCHangTime.Location = new System.Drawing.Point(104, 120); this.udDSPAGCHangTime.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udDSPAGCHangTime.Minimum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCHangTime.Name = "udDSPAGCHangTime"; this.udDSPAGCHangTime.Size = new System.Drawing.Size(48, 20); this.udDSPAGCHangTime.TabIndex = 44; this.udDSPAGCHangTime.Value = new System.Decimal(new int[] { 250, 0, 0, 0}); this.udDSPAGCHangTime.LostFocus += new System.EventHandler(this.udDSPAGCHangTime_LostFocus); this.udDSPAGCHangTime.ValueChanged += new System.EventHandler(this.udDSPAGCHangTime_ValueChanged); // // udDSPAGCMaxGaindB // this.udDSPAGCMaxGaindB.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCMaxGaindB.Location = new System.Drawing.Point(104, 48); this.udDSPAGCMaxGaindB.Maximum = new System.Decimal(new int[] { 120, 0, 0, 0}); this.udDSPAGCMaxGaindB.Minimum = new System.Decimal(new int[] { 20, 0, 0, -2147483648}); this.udDSPAGCMaxGaindB.Name = "udDSPAGCMaxGaindB"; this.udDSPAGCMaxGaindB.Size = new System.Drawing.Size(40, 20); this.udDSPAGCMaxGaindB.TabIndex = 6; this.toolTip1.SetToolTip(this.udDSPAGCMaxGaindB, "This provides for a “threshold” AGC. Irrespective of how weak a signal is, no ga" + "in over this Max Gain is applied."); this.udDSPAGCMaxGaindB.Value = new System.Decimal(new int[] { 90, 0, 0, 0}); this.udDSPAGCMaxGaindB.LostFocus += new System.EventHandler(this.udDSPAGCMaxGaindB_LostFocus); this.udDSPAGCMaxGaindB.ValueChanged += new System.EventHandler(this.udDSPAGCMaxGaindB_ValueChanged); // // udDSPAGCSlope // this.udDSPAGCSlope.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCSlope.Location = new System.Drawing.Point(104, 24); this.udDSPAGCSlope.Maximum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCSlope.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPAGCSlope.Name = "udDSPAGCSlope"; this.udDSPAGCSlope.Size = new System.Drawing.Size(40, 20); this.udDSPAGCSlope.TabIndex = 13; this.udDSPAGCSlope.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.udDSPAGCSlope.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDSPAGCSlope.LostFocus += new System.EventHandler(this.udDSPAGCSlope_LostFocus); this.udDSPAGCSlope.ValueChanged += new System.EventHandler(this.udDSPAGCSlope_ValueChanged); // // udDSPAGCDecay // this.udDSPAGCDecay.Enabled = false; this.udDSPAGCDecay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCDecay.Location = new System.Drawing.Point(104, 96); this.udDSPAGCDecay.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udDSPAGCDecay.Minimum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCDecay.Name = "udDSPAGCDecay"; this.udDSPAGCDecay.Size = new System.Drawing.Size(48, 20); this.udDSPAGCDecay.TabIndex = 12; this.udDSPAGCDecay.Value = new System.Decimal(new int[] { 250, 0, 0, 0}); this.udDSPAGCDecay.LostFocus += new System.EventHandler(this.udDSPAGCDecay_LostFocus); this.udDSPAGCDecay.ValueChanged += new System.EventHandler(this.udDSPAGCDecay_ValueChanged); // // lblDSPAGCSlope // this.lblDSPAGCSlope.Image = null; this.lblDSPAGCSlope.Location = new System.Drawing.Point(8, 24); this.lblDSPAGCSlope.Name = "lblDSPAGCSlope"; this.lblDSPAGCSlope.Size = new System.Drawing.Size(80, 16); this.lblDSPAGCSlope.TabIndex = 11; this.lblDSPAGCSlope.Text = "Slope (dB):"; // // udDSPAGCAttack // this.udDSPAGCAttack.Enabled = false; this.udDSPAGCAttack.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCAttack.Location = new System.Drawing.Point(104, 72); this.udDSPAGCAttack.Maximum = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDSPAGCAttack.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCAttack.Name = "udDSPAGCAttack"; this.udDSPAGCAttack.Size = new System.Drawing.Size(40, 20); this.udDSPAGCAttack.TabIndex = 10; this.udDSPAGCAttack.Value = new System.Decimal(new int[] { 2, 0, 0, 0}); this.udDSPAGCAttack.LostFocus += new System.EventHandler(this.udDSPAGCAttack_LostFocus); this.udDSPAGCAttack.ValueChanged += new System.EventHandler(this.udDSPAGCAttack_ValueChanged); // // lblDSPAGCDecay // this.lblDSPAGCDecay.Image = null; this.lblDSPAGCDecay.Location = new System.Drawing.Point(8, 96); this.lblDSPAGCDecay.Name = "lblDSPAGCDecay"; this.lblDSPAGCDecay.Size = new System.Drawing.Size(72, 16); this.lblDSPAGCDecay.TabIndex = 9; this.lblDSPAGCDecay.Text = "Decay (ms):"; // // lblDSPAGCAttack // this.lblDSPAGCAttack.Image = null; this.lblDSPAGCAttack.Location = new System.Drawing.Point(8, 72); this.lblDSPAGCAttack.Name = "lblDSPAGCAttack"; this.lblDSPAGCAttack.Size = new System.Drawing.Size(64, 16); this.lblDSPAGCAttack.TabIndex = 8; this.lblDSPAGCAttack.Text = "Attack (ms):"; // // lblDSPAGCMaxGain // this.lblDSPAGCMaxGain.Image = null; this.lblDSPAGCMaxGain.Location = new System.Drawing.Point(8, 48); this.lblDSPAGCMaxGain.Name = "lblDSPAGCMaxGain"; this.lblDSPAGCMaxGain.Size = new System.Drawing.Size(88, 24); this.lblDSPAGCMaxGain.TabIndex = 7; this.lblDSPAGCMaxGain.Text = "Max Gain (dB):"; // // udDSPAGCFixedGaindB // this.udDSPAGCFixedGaindB.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDSPAGCFixedGaindB.Location = new System.Drawing.Point(104, 200); this.udDSPAGCFixedGaindB.Maximum = new System.Decimal(new int[] { 120, 0, 0, 0}); this.udDSPAGCFixedGaindB.Minimum = new System.Decimal(new int[] { 20, 0, 0, -2147483648}); this.udDSPAGCFixedGaindB.Name = "udDSPAGCFixedGaindB"; this.udDSPAGCFixedGaindB.Size = new System.Drawing.Size(40, 20); this.udDSPAGCFixedGaindB.TabIndex = 4; this.toolTip1.SetToolTip(this.udDSPAGCFixedGaindB, "When you choose Fixed AGC on the front panel, this number is used to multiply the" + " signal."); this.udDSPAGCFixedGaindB.Value = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udDSPAGCFixedGaindB.LostFocus += new System.EventHandler(this.udDSPAGCFixedGaindB_LostFocus); this.udDSPAGCFixedGaindB.ValueChanged += new System.EventHandler(this.udDSPAGCFixedGaindB_ValueChanged); // // lblDSPAGCFixed // this.lblDSPAGCFixed.Image = null; this.lblDSPAGCFixed.Location = new System.Drawing.Point(8, 200); this.lblDSPAGCFixed.Name = "lblDSPAGCFixed"; this.lblDSPAGCFixed.Size = new System.Drawing.Size(88, 16); this.lblDSPAGCFixed.TabIndex = 5; this.lblDSPAGCFixed.Text = "Fixed Gain (dB):"; // // tpDisplay // this.tpDisplay.Controls.Add(this.grpDisplayMultimeter); this.tpDisplay.Controls.Add(this.grpDisplayDriverEngine); this.tpDisplay.Controls.Add(this.grpDisplayPolyPhase); this.tpDisplay.Controls.Add(this.grpDisplayScopeMode); this.tpDisplay.Controls.Add(this.grpDisplayWaterfall); this.tpDisplay.Controls.Add(this.grpDisplayRefreshRates); this.tpDisplay.Controls.Add(this.grpDisplayAverage); this.tpDisplay.Controls.Add(this.grpDisplayPhase); this.tpDisplay.Controls.Add(this.grpDisplaySpectrumGrid); this.tpDisplay.Location = new System.Drawing.Point(4, 22); this.tpDisplay.Name = "tpDisplay"; this.tpDisplay.Size = new System.Drawing.Size(584, 286); this.tpDisplay.TabIndex = 2; this.tpDisplay.Text = "Display"; // // grpDisplayMultimeter // this.grpDisplayMultimeter.Controls.Add(this.chkDisplayMeterShowDecimal); this.grpDisplayMultimeter.Controls.Add(this.udMeterDigitalDelay); this.grpDisplayMultimeter.Controls.Add(this.lblMultimeterDigitalDelay); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMeterAvg); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterAvg); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMultiTextHoldTime); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterTextHoldTime); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMultiPeakHoldTime); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMultiPeakHoldTime); this.grpDisplayMultimeter.Controls.Add(this.udDisplayMeterDelay); this.grpDisplayMultimeter.Controls.Add(this.lblDisplayMeterDelay); this.grpDisplayMultimeter.Location = new System.Drawing.Point(272, 144); this.grpDisplayMultimeter.Name = "grpDisplayMultimeter"; this.grpDisplayMultimeter.Size = new System.Drawing.Size(304, 136); this.grpDisplayMultimeter.TabIndex = 41; this.grpDisplayMultimeter.TabStop = false; this.grpDisplayMultimeter.Text = "Multimeter"; // // chkDisplayMeterShowDecimal // this.chkDisplayMeterShowDecimal.Image = null; this.chkDisplayMeterShowDecimal.Location = new System.Drawing.Point(200, 16); this.chkDisplayMeterShowDecimal.Name = "chkDisplayMeterShowDecimal"; this.chkDisplayMeterShowDecimal.Size = new System.Drawing.Size(96, 16); this.chkDisplayMeterShowDecimal.TabIndex = 40; this.chkDisplayMeterShowDecimal.Text = "Show Decimal"; this.toolTip1.SetToolTip(this.chkDisplayMeterShowDecimal, "Check to show detailed meter info"); this.chkDisplayMeterShowDecimal.CheckedChanged += new System.EventHandler(this.chkDisplayMeterShowDecimal_CheckedChanged); // // udMeterDigitalDelay // this.udMeterDigitalDelay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udMeterDigitalDelay.Location = new System.Drawing.Point(136, 112); this.udMeterDigitalDelay.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udMeterDigitalDelay.Minimum = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udMeterDigitalDelay.Name = "udMeterDigitalDelay"; this.udMeterDigitalDelay.Size = new System.Drawing.Size(56, 20); this.udMeterDigitalDelay.TabIndex = 36; this.toolTip1.SetToolTip(this.udMeterDigitalDelay, "Digital (text) Multimeter Refresh Rate."); this.udMeterDigitalDelay.Value = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udMeterDigitalDelay.ValueChanged += new System.EventHandler(this.udMeterDigitalDelay_ValueChanged); // // lblMultimeterDigitalDelay // this.lblMultimeterDigitalDelay.Image = null; this.lblMultimeterDigitalDelay.Location = new System.Drawing.Point(16, 112); this.lblMultimeterDigitalDelay.Name = "lblMultimeterDigitalDelay"; this.lblMultimeterDigitalDelay.Size = new System.Drawing.Size(120, 16); this.lblMultimeterDigitalDelay.TabIndex = 35; this.lblMultimeterDigitalDelay.Text = "Digital Refresh (ms):"; // // udDisplayMeterAvg // this.udDisplayMeterAvg.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterAvg.Location = new System.Drawing.Point(136, 64); this.udDisplayMeterAvg.Maximum = new System.Decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMeterAvg.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterAvg.Name = "udDisplayMeterAvg"; this.udDisplayMeterAvg.Size = new System.Drawing.Size(56, 20); this.udDisplayMeterAvg.TabIndex = 8; this.toolTip1.SetToolTip(this.udDisplayMeterAvg, "Controls the length of time to average for the meter."); this.udDisplayMeterAvg.Value = new System.Decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayMeterAvg.LostFocus += new System.EventHandler(this.udDisplayMeterAvg_LostFocus); this.udDisplayMeterAvg.ValueChanged += new System.EventHandler(this.udDisplayMeterAvg_ValueChanged); // // lblDisplayMeterAvg // this.lblDisplayMeterAvg.Image = null; this.lblDisplayMeterAvg.Location = new System.Drawing.Point(16, 64); this.lblDisplayMeterAvg.Name = "lblDisplayMeterAvg"; this.lblDisplayMeterAvg.Size = new System.Drawing.Size(112, 16); this.lblDisplayMeterAvg.TabIndex = 7; this.lblDisplayMeterAvg.Text = "Average Time (ms):"; this.toolTip1.SetToolTip(this.lblDisplayMeterAvg, "The time to average the value when Sig Avg is selected on the RX Meter."); // // udDisplayMultiTextHoldTime // this.udDisplayMultiTextHoldTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Location = new System.Drawing.Point(136, 40); this.udDisplayMultiTextHoldTime.Maximum = new System.Decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiTextHoldTime.Name = "udDisplayMultiTextHoldTime"; this.udDisplayMultiTextHoldTime.Size = new System.Drawing.Size(56, 20); this.udDisplayMultiTextHoldTime.TabIndex = 4; this.toolTip1.SetToolTip(this.udDisplayMultiTextHoldTime, "Controls how long the meter will hold the digital peak value when in the Peak Pow" + "er mode."); this.udDisplayMultiTextHoldTime.Value = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDisplayMultiTextHoldTime.LostFocus += new System.EventHandler(this.udDisplayMultiTextHoldTime_LostFocus); this.udDisplayMultiTextHoldTime.ValueChanged += new System.EventHandler(this.udDisplayMultiTextHoldTime_ValueChanged); // // lblDisplayMeterTextHoldTime // this.lblDisplayMeterTextHoldTime.Image = null; this.lblDisplayMeterTextHoldTime.Location = new System.Drawing.Point(16, 40); this.lblDisplayMeterTextHoldTime.Name = "lblDisplayMeterTextHoldTime"; this.lblDisplayMeterTextHoldTime.Size = new System.Drawing.Size(120, 16); this.lblDisplayMeterTextHoldTime.TabIndex = 3; this.lblDisplayMeterTextHoldTime.Text = "Digital Peak Hold (ms):"; // // udDisplayMultiPeakHoldTime // this.udDisplayMultiPeakHoldTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Location = new System.Drawing.Point(136, 16); this.udDisplayMultiPeakHoldTime.Maximum = new System.Decimal(new int[] { 99999, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.Name = "udDisplayMultiPeakHoldTime"; this.udDisplayMultiPeakHoldTime.Size = new System.Drawing.Size(56, 20); this.udDisplayMultiPeakHoldTime.TabIndex = 1; this.toolTip1.SetToolTip(this.udDisplayMultiPeakHoldTime, "Controls how long the analog peak red line will be held on the multimeter."); this.udDisplayMultiPeakHoldTime.Value = new System.Decimal(new int[] { 2500, 0, 0, 0}); this.udDisplayMultiPeakHoldTime.LostFocus += new System.EventHandler(this.udDisplayMultiPeakHoldTime_LostFocus); this.udDisplayMultiPeakHoldTime.ValueChanged += new System.EventHandler(this.udDisplayMultiPeakHoldTime_ValueChanged); // // lblDisplayMultiPeakHoldTime // this.lblDisplayMultiPeakHoldTime.Image = null; this.lblDisplayMultiPeakHoldTime.Location = new System.Drawing.Point(16, 16); this.lblDisplayMultiPeakHoldTime.Name = "lblDisplayMultiPeakHoldTime"; this.lblDisplayMultiPeakHoldTime.Size = new System.Drawing.Size(128, 16); this.lblDisplayMultiPeakHoldTime.TabIndex = 0; this.lblDisplayMultiPeakHoldTime.Text = "Analog Peak Hold (ms):"; // // udDisplayMeterDelay // this.udDisplayMeterDelay.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayMeterDelay.Location = new System.Drawing.Point(136, 88); this.udDisplayMeterDelay.Maximum = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udDisplayMeterDelay.Minimum = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udDisplayMeterDelay.Name = "udDisplayMeterDelay"; this.udDisplayMeterDelay.Size = new System.Drawing.Size(56, 20); this.udDisplayMeterDelay.TabIndex = 34; this.toolTip1.SetToolTip(this.udDisplayMeterDelay, "Analog Multimeter Refresh Rate."); this.udDisplayMeterDelay.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udDisplayMeterDelay.LostFocus += new System.EventHandler(this.udDisplayMeterDelay_LostFocus); this.udDisplayMeterDelay.ValueChanged += new System.EventHandler(this.udDisplayMeterDelay_ValueChanged); // // lblDisplayMeterDelay // this.lblDisplayMeterDelay.Image = null; this.lblDisplayMeterDelay.Location = new System.Drawing.Point(16, 88); this.lblDisplayMeterDelay.Name = "lblDisplayMeterDelay"; this.lblDisplayMeterDelay.Size = new System.Drawing.Size(128, 16); this.lblDisplayMeterDelay.TabIndex = 33; this.lblDisplayMeterDelay.Text = "Analog Refresh (ms):"; // // grpDisplayDriverEngine // this.grpDisplayDriverEngine.Controls.Add(this.comboDisplayDriver); this.grpDisplayDriverEngine.Location = new System.Drawing.Point(480, 144); this.grpDisplayDriverEngine.Name = "grpDisplayDriverEngine"; this.grpDisplayDriverEngine.Size = new System.Drawing.Size(96, 56); this.grpDisplayDriverEngine.TabIndex = 46; this.grpDisplayDriverEngine.TabStop = false; this.grpDisplayDriverEngine.Text = "Driver Engine"; this.grpDisplayDriverEngine.Visible = false; // // comboDisplayDriver // this.comboDisplayDriver.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDisplayDriver.DropDownWidth = 48; this.comboDisplayDriver.Items.AddRange(new object[] { "GDI+"}); this.comboDisplayDriver.Location = new System.Drawing.Point(8, 24); this.comboDisplayDriver.Name = "comboDisplayDriver"; this.comboDisplayDriver.Size = new System.Drawing.Size(80, 20); this.comboDisplayDriver.TabIndex = 45; this.toolTip1.SetToolTip(this.comboDisplayDriver, "Sets the driver to be used for the display."); this.comboDisplayDriver.SelectedIndexChanged += new System.EventHandler(this.comboDisplayDriver_SelectedIndexChanged); // // grpDisplayPolyPhase // this.grpDisplayPolyPhase.Controls.Add(this.chkSpectrumPolyphase); this.grpDisplayPolyPhase.Location = new System.Drawing.Point(440, 72); this.grpDisplayPolyPhase.Name = "grpDisplayPolyPhase"; this.grpDisplayPolyPhase.Size = new System.Drawing.Size(120, 56); this.grpDisplayPolyPhase.TabIndex = 44; this.grpDisplayPolyPhase.TabStop = false; this.grpDisplayPolyPhase.Text = "Polyphase FFT"; // // chkSpectrumPolyphase // this.chkSpectrumPolyphase.Image = null; this.chkSpectrumPolyphase.Location = new System.Drawing.Point(16, 24); this.chkSpectrumPolyphase.Name = "chkSpectrumPolyphase"; this.chkSpectrumPolyphase.Size = new System.Drawing.Size(64, 16); this.chkSpectrumPolyphase.TabIndex = 39; this.chkSpectrumPolyphase.Text = "Enable"; this.toolTip1.SetToolTip(this.chkSpectrumPolyphase, "Check to enable polyphase spectrum display mode. While adding latency, this adds" + " resolution to the display."); this.chkSpectrumPolyphase.CheckedChanged += new System.EventHandler(this.chkSpectrumPolyphase_CheckedChanged); // // grpDisplayScopeMode // this.grpDisplayScopeMode.Controls.Add(this.udDisplayScopeTime); this.grpDisplayScopeMode.Controls.Add(this.lblDisplayScopeTime); this.grpDisplayScopeMode.Location = new System.Drawing.Point(440, 8); this.grpDisplayScopeMode.Name = "grpDisplayScopeMode"; this.grpDisplayScopeMode.Size = new System.Drawing.Size(136, 56); this.grpDisplayScopeMode.TabIndex = 43; this.grpDisplayScopeMode.TabStop = false; this.grpDisplayScopeMode.Text = "Scope Mode"; // // udDisplayScopeTime // this.udDisplayScopeTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayScopeTime.Location = new System.Drawing.Point(64, 24); this.udDisplayScopeTime.Maximum = new System.Decimal(new int[] { 1000000, 0, 0, 0}); this.udDisplayScopeTime.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayScopeTime.Name = "udDisplayScopeTime"; this.udDisplayScopeTime.Size = new System.Drawing.Size(64, 20); this.udDisplayScopeTime.TabIndex = 0; this.toolTip1.SetToolTip(this.udDisplayScopeTime, "Amount of time to display across the width of the scope display window."); this.udDisplayScopeTime.Value = new System.Decimal(new int[] { 5000, 0, 0, 0}); this.udDisplayScopeTime.LostFocus += new System.EventHandler(this.udDisplayScopeTime_LostFocus); this.udDisplayScopeTime.ValueChanged += new System.EventHandler(this.udDisplayScopeTime_ValueChanged); // // lblDisplayScopeTime // this.lblDisplayScopeTime.Image = null; this.lblDisplayScopeTime.Location = new System.Drawing.Point(8, 24); this.lblDisplayScopeTime.Name = "lblDisplayScopeTime"; this.lblDisplayScopeTime.Size = new System.Drawing.Size(64, 23); this.lblDisplayScopeTime.TabIndex = 1; this.lblDisplayScopeTime.Text = "Time (us):"; // // grpDisplayWaterfall // this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallUpdatePeriod); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallUpdatePeriod); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallAvgTime); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallAverageTime); this.grpDisplayWaterfall.Controls.Add(this.clrbtnWaterfallLow); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallLowColor); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallLowLevel); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallLowLevel); this.grpDisplayWaterfall.Controls.Add(this.lblDisplayWaterfallHighLevel); this.grpDisplayWaterfall.Controls.Add(this.udDisplayWaterfallHighLevel); this.grpDisplayWaterfall.Location = new System.Drawing.Point(8, 144); this.grpDisplayWaterfall.Name = "grpDisplayWaterfall"; this.grpDisplayWaterfall.Size = new System.Drawing.Size(256, 136); this.grpDisplayWaterfall.TabIndex = 40; this.grpDisplayWaterfall.TabStop = false; this.grpDisplayWaterfall.Text = "Waterfall"; // // udDisplayWaterfallUpdatePeriod // this.udDisplayWaterfallUpdatePeriod.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.Location = new System.Drawing.Point(192, 88); this.udDisplayWaterfallUpdatePeriod.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.Name = "udDisplayWaterfallUpdatePeriod"; this.udDisplayWaterfallUpdatePeriod.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallUpdatePeriod.TabIndex = 71; this.toolTip1.SetToolTip(this.udDisplayWaterfallUpdatePeriod, "How often to update (scroll another pixel line) on the waterfall display. Note t" + "hat this is tamed by the FPS setting."); this.udDisplayWaterfallUpdatePeriod.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udDisplayWaterfallUpdatePeriod.ValueChanged += new System.EventHandler(this.udDisplayWaterfallUpdatePeriod_ValueChanged); // // lblDisplayWaterfallUpdatePeriod // this.lblDisplayWaterfallUpdatePeriod.Image = null; this.lblDisplayWaterfallUpdatePeriod.Location = new System.Drawing.Point(128, 88); this.lblDisplayWaterfallUpdatePeriod.Name = "lblDisplayWaterfallUpdatePeriod"; this.lblDisplayWaterfallUpdatePeriod.Size = new System.Drawing.Size(72, 32); this.lblDisplayWaterfallUpdatePeriod.TabIndex = 72; this.lblDisplayWaterfallUpdatePeriod.Text = "Update Period (ms):"; this.toolTip1.SetToolTip(this.lblDisplayWaterfallUpdatePeriod, "How often to update (scroll another pixel line) on the waterfall display. Note t" + "hat this is tamed by the FPS setting."); // // udDisplayWaterfallAvgTime // this.udDisplayWaterfallAvgTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Location = new System.Drawing.Point(192, 56); this.udDisplayWaterfallAvgTime.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayWaterfallAvgTime.Name = "udDisplayWaterfallAvgTime"; this.udDisplayWaterfallAvgTime.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallAvgTime.TabIndex = 69; this.toolTip1.SetToolTip(this.udDisplayWaterfallAvgTime, "The time to average signals for each line (1 pixel high) on the waterfall."); this.udDisplayWaterfallAvgTime.Value = new System.Decimal(new int[] { 750, 0, 0, 0}); this.udDisplayWaterfallAvgTime.ValueChanged += new System.EventHandler(this.udDisplayWaterfallAvgTime_ValueChanged); // // lblDisplayWaterfallAverageTime // this.lblDisplayWaterfallAverageTime.Image = null; this.lblDisplayWaterfallAverageTime.Location = new System.Drawing.Point(128, 56); this.lblDisplayWaterfallAverageTime.Name = "lblDisplayWaterfallAverageTime"; this.lblDisplayWaterfallAverageTime.Size = new System.Drawing.Size(72, 32); this.lblDisplayWaterfallAverageTime.TabIndex = 70; this.lblDisplayWaterfallAverageTime.Text = "Averaging Time (ms):"; this.toolTip1.SetToolTip(this.lblDisplayWaterfallAverageTime, "The time to average signals for each line (1 pixel high) on the waterfall."); // // clrbtnWaterfallLow // this.clrbtnWaterfallLow.Automatic = "Automatic"; this.clrbtnWaterfallLow.Color = System.Drawing.Color.Transparent; this.clrbtnWaterfallLow.Image = null; this.clrbtnWaterfallLow.Location = new System.Drawing.Point(72, 56); this.clrbtnWaterfallLow.MoreColors = "More Colors..."; this.clrbtnWaterfallLow.Name = "clrbtnWaterfallLow"; this.clrbtnWaterfallLow.Size = new System.Drawing.Size(40, 23); this.clrbtnWaterfallLow.TabIndex = 68; this.toolTip1.SetToolTip(this.clrbtnWaterfallLow, "The Color to use when the signal level is at or below the low level set above."); this.clrbtnWaterfallLow.Changed += new System.EventHandler(this.clrbtnWaterfallLow_Changed); // // lblDisplayWaterfallLowColor // this.lblDisplayWaterfallLowColor.Image = null; this.lblDisplayWaterfallLowColor.Location = new System.Drawing.Point(8, 56); this.lblDisplayWaterfallLowColor.Name = "lblDisplayWaterfallLowColor"; this.lblDisplayWaterfallLowColor.Size = new System.Drawing.Size(64, 16); this.lblDisplayWaterfallLowColor.TabIndex = 57; this.lblDisplayWaterfallLowColor.Text = "Low Color:"; // // lblDisplayWaterfallLowLevel // this.lblDisplayWaterfallLowLevel.Image = null; this.lblDisplayWaterfallLowLevel.Location = new System.Drawing.Point(8, 24); this.lblDisplayWaterfallLowLevel.Name = "lblDisplayWaterfallLowLevel"; this.lblDisplayWaterfallLowLevel.Size = new System.Drawing.Size(64, 23); this.lblDisplayWaterfallLowLevel.TabIndex = 3; this.lblDisplayWaterfallLowLevel.Text = "Low Level"; // // udDisplayWaterfallLowLevel // this.udDisplayWaterfallLowLevel.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDisplayWaterfallLowLevel.Location = new System.Drawing.Point(72, 24); this.udDisplayWaterfallLowLevel.Maximum = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udDisplayWaterfallLowLevel.Minimum = new System.Decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayWaterfallLowLevel.Name = "udDisplayWaterfallLowLevel"; this.udDisplayWaterfallLowLevel.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallLowLevel.TabIndex = 2; this.toolTip1.SetToolTip(this.udDisplayWaterfallLowLevel, "Waterfall Low Signal - Show Low Color below this value (gradient in between)."); this.udDisplayWaterfallLowLevel.Value = new System.Decimal(new int[] { 110, 0, 0, -2147483648}); this.udDisplayWaterfallLowLevel.LostFocus += new System.EventHandler(this.udDisplayWaterfallLowLevel_LostFocus); this.udDisplayWaterfallLowLevel.ValueChanged += new System.EventHandler(this.udDisplayWaterfallLowLevel_ValueChanged); // // lblDisplayWaterfallHighLevel // this.lblDisplayWaterfallHighLevel.Image = null; this.lblDisplayWaterfallHighLevel.Location = new System.Drawing.Point(128, 24); this.lblDisplayWaterfallHighLevel.Name = "lblDisplayWaterfallHighLevel"; this.lblDisplayWaterfallHighLevel.Size = new System.Drawing.Size(64, 23); this.lblDisplayWaterfallHighLevel.TabIndex = 1; this.lblDisplayWaterfallHighLevel.Text = "High Level"; // // udDisplayWaterfallHighLevel // this.udDisplayWaterfallHighLevel.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDisplayWaterfallHighLevel.Location = new System.Drawing.Point(192, 24); this.udDisplayWaterfallHighLevel.Maximum = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udDisplayWaterfallHighLevel.Minimum = new System.Decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayWaterfallHighLevel.Name = "udDisplayWaterfallHighLevel"; this.udDisplayWaterfallHighLevel.Size = new System.Drawing.Size(48, 20); this.udDisplayWaterfallHighLevel.TabIndex = 0; this.toolTip1.SetToolTip(this.udDisplayWaterfallHighLevel, "Waterfall High Signal - Show High Color above this value (gradient in between)."); this.udDisplayWaterfallHighLevel.Value = new System.Decimal(new int[] { 70, 0, 0, -2147483648}); this.udDisplayWaterfallHighLevel.LostFocus += new System.EventHandler(this.udDisplayWaterfallHighLevel_LostFocus); this.udDisplayWaterfallHighLevel.ValueChanged += new System.EventHandler(this.udDisplayWaterfallHighLevel_ValueChanged); // // grpDisplayRefreshRates // this.grpDisplayRefreshRates.Controls.Add(this.udDisplayCPUMeter); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayCPUMeter); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayPeakText); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayPeakText); this.grpDisplayRefreshRates.Controls.Add(this.udDisplayFPS); this.grpDisplayRefreshRates.Controls.Add(this.lblDisplayFPS); this.grpDisplayRefreshRates.Location = new System.Drawing.Point(128, 8); this.grpDisplayRefreshRates.Name = "grpDisplayRefreshRates"; this.grpDisplayRefreshRates.Size = new System.Drawing.Size(176, 128); this.grpDisplayRefreshRates.TabIndex = 39; this.grpDisplayRefreshRates.TabStop = false; this.grpDisplayRefreshRates.Text = "Refresh Rates"; // // udDisplayCPUMeter // this.udDisplayCPUMeter.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayCPUMeter.Location = new System.Drawing.Point(120, 96); this.udDisplayCPUMeter.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayCPUMeter.Minimum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udDisplayCPUMeter.Name = "udDisplayCPUMeter"; this.udDisplayCPUMeter.Size = new System.Drawing.Size(48, 20); this.udDisplayCPUMeter.TabIndex = 38; this.toolTip1.SetToolTip(this.udDisplayCPUMeter, "CPU Meter Refresh Rate."); this.udDisplayCPUMeter.Value = new System.Decimal(new int[] { 1000, 0, 0, 0}); this.udDisplayCPUMeter.LostFocus += new System.EventHandler(this.udDisplayCPUMeter_LostFocus); this.udDisplayCPUMeter.ValueChanged += new System.EventHandler(this.udDisplayCPUMeter_ValueChanged); // // lblDisplayCPUMeter // this.lblDisplayCPUMeter.Image = null; this.lblDisplayCPUMeter.Location = new System.Drawing.Point(16, 96); this.lblDisplayCPUMeter.Name = "lblDisplayCPUMeter"; this.lblDisplayCPUMeter.TabIndex = 37; this.lblDisplayCPUMeter.Text = "CPU Meter (ms)"; // // udDisplayPeakText // this.udDisplayPeakText.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayPeakText.Location = new System.Drawing.Point(120, 72); this.udDisplayPeakText.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayPeakText.Minimum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udDisplayPeakText.Name = "udDisplayPeakText"; this.udDisplayPeakText.Size = new System.Drawing.Size(48, 20); this.udDisplayPeakText.TabIndex = 36; this.toolTip1.SetToolTip(this.udDisplayPeakText, "Peak Text Refresh Rate."); this.udDisplayPeakText.Value = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDisplayPeakText.LostFocus += new System.EventHandler(this.udDisplayPeakText_LostFocus); this.udDisplayPeakText.ValueChanged += new System.EventHandler(this.udDisplayPeakText_ValueChanged); // // lblDisplayPeakText // this.lblDisplayPeakText.Image = null; this.lblDisplayPeakText.Location = new System.Drawing.Point(16, 72); this.lblDisplayPeakText.Name = "lblDisplayPeakText"; this.lblDisplayPeakText.TabIndex = 35; this.lblDisplayPeakText.Text = "Peak Text (ms)"; // // udDisplayFPS // this.udDisplayFPS.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayFPS.Location = new System.Drawing.Point(120, 24); this.udDisplayFPS.Maximum = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udDisplayFPS.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayFPS.Name = "udDisplayFPS"; this.udDisplayFPS.Size = new System.Drawing.Size(48, 20); this.udDisplayFPS.TabIndex = 32; this.toolTip1.SetToolTip(this.udDisplayFPS, "Frames Per Second (approximate)"); this.udDisplayFPS.Value = new System.Decimal(new int[] { 15, 0, 0, 0}); this.udDisplayFPS.LostFocus += new System.EventHandler(this.udDisplayFPS_LostFocus); this.udDisplayFPS.ValueChanged += new System.EventHandler(this.udDisplayFPS_ValueChanged); // // lblDisplayFPS // this.lblDisplayFPS.Image = null; this.lblDisplayFPS.Location = new System.Drawing.Point(16, 24); this.lblDisplayFPS.Name = "lblDisplayFPS"; this.lblDisplayFPS.Size = new System.Drawing.Size(104, 16); this.lblDisplayFPS.TabIndex = 31; this.lblDisplayFPS.Text = "Main Display FPS:"; // // grpDisplayAverage // this.grpDisplayAverage.Controls.Add(this.udDisplayAVGTime); this.grpDisplayAverage.Controls.Add(this.lblDisplayAVGTime); this.grpDisplayAverage.Location = new System.Drawing.Point(312, 72); this.grpDisplayAverage.Name = "grpDisplayAverage"; this.grpDisplayAverage.Size = new System.Drawing.Size(120, 56); this.grpDisplayAverage.TabIndex = 38; this.grpDisplayAverage.TabStop = false; this.grpDisplayAverage.Text = "Averaging"; // // udDisplayAVGTime // this.udDisplayAVGTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayAVGTime.Location = new System.Drawing.Point(64, 24); this.udDisplayAVGTime.Maximum = new System.Decimal(new int[] { 9999, 0, 0, 0}); this.udDisplayAVGTime.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayAVGTime.Name = "udDisplayAVGTime"; this.udDisplayAVGTime.Size = new System.Drawing.Size(48, 20); this.udDisplayAVGTime.TabIndex = 2; this.toolTip1.SetToolTip(this.udDisplayAVGTime, "When averaging, use this number of buffers to calculate the average."); this.udDisplayAVGTime.Value = new System.Decimal(new int[] { 350, 0, 0, 0}); this.udDisplayAVGTime.LostFocus += new System.EventHandler(this.udDisplayAVGTime_LostFocus); this.udDisplayAVGTime.ValueChanged += new System.EventHandler(this.udDisplayAVGTime_ValueChanged); // // lblDisplayAVGTime // this.lblDisplayAVGTime.Image = null; this.lblDisplayAVGTime.Location = new System.Drawing.Point(8, 24); this.lblDisplayAVGTime.Name = "lblDisplayAVGTime"; this.lblDisplayAVGTime.Size = new System.Drawing.Size(64, 23); this.lblDisplayAVGTime.TabIndex = 3; this.lblDisplayAVGTime.Text = "Time (ms):"; // // grpDisplayPhase // this.grpDisplayPhase.Controls.Add(this.lblDisplayPhasePts); this.grpDisplayPhase.Controls.Add(this.udDisplayPhasePts); this.grpDisplayPhase.Location = new System.Drawing.Point(312, 8); this.grpDisplayPhase.Name = "grpDisplayPhase"; this.grpDisplayPhase.Size = new System.Drawing.Size(120, 56); this.grpDisplayPhase.TabIndex = 37; this.grpDisplayPhase.TabStop = false; this.grpDisplayPhase.Text = "Phase Mode"; // // lblDisplayPhasePts // this.lblDisplayPhasePts.Image = null; this.lblDisplayPhasePts.Location = new System.Drawing.Point(8, 24); this.lblDisplayPhasePts.Name = "lblDisplayPhasePts"; this.lblDisplayPhasePts.Size = new System.Drawing.Size(56, 23); this.lblDisplayPhasePts.TabIndex = 1; this.lblDisplayPhasePts.Text = "Num Pts:"; // // udDisplayPhasePts // this.udDisplayPhasePts.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayPhasePts.Location = new System.Drawing.Point(64, 24); this.udDisplayPhasePts.Maximum = new System.Decimal(new int[] { 500, 0, 0, 0}); this.udDisplayPhasePts.Minimum = new System.Decimal(new int[] { 25, 0, 0, 0}); this.udDisplayPhasePts.Name = "udDisplayPhasePts"; this.udDisplayPhasePts.Size = new System.Drawing.Size(48, 20); this.udDisplayPhasePts.TabIndex = 0; this.toolTip1.SetToolTip(this.udDisplayPhasePts, "Number of points to display in Phase Mode."); this.udDisplayPhasePts.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udDisplayPhasePts.LostFocus += new System.EventHandler(this.udDisplayPhasePts_LostFocus); this.udDisplayPhasePts.ValueChanged += new System.EventHandler(this.udDisplayPhasePts_ValueChanged); // // grpDisplaySpectrumGrid // this.grpDisplaySpectrumGrid.Controls.Add(this.comboDisplayLabelAlign); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayAlign); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridStep); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridMin); this.grpDisplaySpectrumGrid.Controls.Add(this.udDisplayGridMax); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridStep); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridMin); this.grpDisplaySpectrumGrid.Controls.Add(this.lblDisplayGridMax); this.grpDisplaySpectrumGrid.Location = new System.Drawing.Point(8, 8); this.grpDisplaySpectrumGrid.Name = "grpDisplaySpectrumGrid"; this.grpDisplaySpectrumGrid.Size = new System.Drawing.Size(112, 128); this.grpDisplaySpectrumGrid.TabIndex = 29; this.grpDisplaySpectrumGrid.TabStop = false; this.grpDisplaySpectrumGrid.Text = "Spectrum Grid"; // // comboDisplayLabelAlign // this.comboDisplayLabelAlign.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboDisplayLabelAlign.DropDownWidth = 48; this.comboDisplayLabelAlign.Items.AddRange(new object[] { "Left", "Cntr", "Right", "Auto", "Off"}); this.comboDisplayLabelAlign.Location = new System.Drawing.Point(48, 96); this.comboDisplayLabelAlign.Name = "comboDisplayLabelAlign"; this.comboDisplayLabelAlign.Size = new System.Drawing.Size(56, 20); this.comboDisplayLabelAlign.TabIndex = 30; this.toolTip1.SetToolTip(this.comboDisplayLabelAlign, "Sets the alignement of the grid callouts on the display."); this.comboDisplayLabelAlign.SelectedIndexChanged += new System.EventHandler(this.comboDisplayLabelAlign_SelectedIndexChanged); // // lblDisplayAlign // this.lblDisplayAlign.Image = null; this.lblDisplayAlign.Location = new System.Drawing.Point(8, 96); this.lblDisplayAlign.Name = "lblDisplayAlign"; this.lblDisplayAlign.Size = new System.Drawing.Size(40, 16); this.lblDisplayAlign.TabIndex = 29; this.lblDisplayAlign.Text = "Align:"; // // udDisplayGridStep // this.udDisplayGridStep.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayGridStep.Location = new System.Drawing.Point(48, 72); this.udDisplayGridStep.Maximum = new System.Decimal(new int[] { 40, 0, 0, 0}); this.udDisplayGridStep.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udDisplayGridStep.Name = "udDisplayGridStep"; this.udDisplayGridStep.Size = new System.Drawing.Size(56, 20); this.udDisplayGridStep.TabIndex = 25; this.toolTip1.SetToolTip(this.udDisplayGridStep, "Horizontal Grid Step Size in dB."); this.udDisplayGridStep.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udDisplayGridStep.LostFocus += new System.EventHandler(this.udDisplayGridStep_LostFocus); this.udDisplayGridStep.ValueChanged += new System.EventHandler(this.udDisplayGridStep_ValueChanged); // // udDisplayGridMin // this.udDisplayGridMin.Increment = new System.Decimal(new int[] { 5, 0, 0, 0}); this.udDisplayGridMin.Location = new System.Drawing.Point(48, 48); this.udDisplayGridMin.Maximum = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udDisplayGridMin.Minimum = new System.Decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayGridMin.Name = "udDisplayGridMin"; this.udDisplayGridMin.Size = new System.Drawing.Size(56, 20); this.udDisplayGridMin.TabIndex = 24; this.toolTip1.SetToolTip(this.udDisplayGridMin, "Signal Level at bottom of display in dB."); this.udDisplayGridMin.Value = new System.Decimal(new int[] { 150, 0, 0, -2147483648}); this.udDisplayGridMin.LostFocus += new System.EventHandler(this.udDisplayGridMin_LostFocus); this.udDisplayGridMin.ValueChanged += new System.EventHandler(this.udDisplayGridMin_ValueChanged); // // udDisplayGridMax // this.udDisplayGridMax.Increment = new System.Decimal(new int[] { 5, 0, 0, 0}); this.udDisplayGridMax.Location = new System.Drawing.Point(48, 24); this.udDisplayGridMax.Maximum = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udDisplayGridMax.Minimum = new System.Decimal(new int[] { 200, 0, 0, -2147483648}); this.udDisplayGridMax.Name = "udDisplayGridMax"; this.udDisplayGridMax.Size = new System.Drawing.Size(56, 20); this.udDisplayGridMax.TabIndex = 23; this.toolTip1.SetToolTip(this.udDisplayGridMax, "Signal level at top of display in dB."); this.udDisplayGridMax.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udDisplayGridMax.LostFocus += new System.EventHandler(this.udDisplayGridMax_LostFocus); this.udDisplayGridMax.ValueChanged += new System.EventHandler(this.udDisplayGridMax_ValueChanged); // // lblDisplayGridStep // this.lblDisplayGridStep.Image = null; this.lblDisplayGridStep.Location = new System.Drawing.Point(8, 72); this.lblDisplayGridStep.Name = "lblDisplayGridStep"; this.lblDisplayGridStep.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridStep.TabIndex = 28; this.lblDisplayGridStep.Text = "Step:"; // // lblDisplayGridMin // this.lblDisplayGridMin.Image = null; this.lblDisplayGridMin.Location = new System.Drawing.Point(8, 48); this.lblDisplayGridMin.Name = "lblDisplayGridMin"; this.lblDisplayGridMin.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridMin.TabIndex = 27; this.lblDisplayGridMin.Text = "Min:"; // // lblDisplayGridMax // this.lblDisplayGridMax.Image = null; this.lblDisplayGridMax.Location = new System.Drawing.Point(8, 24); this.lblDisplayGridMax.Name = "lblDisplayGridMax"; this.lblDisplayGridMax.Size = new System.Drawing.Size(32, 16); this.lblDisplayGridMax.TabIndex = 26; this.lblDisplayGridMax.Text = "Max:"; // // tpTransmit // this.tpTransmit.Controls.Add(this.grpTXAM); this.tpTransmit.Controls.Add(this.grpTXMonitor); this.tpTransmit.Controls.Add(this.grpTXVOX); this.tpTransmit.Controls.Add(this.grpTXNoiseGate); this.tpTransmit.Controls.Add(this.grpTXProfile); this.tpTransmit.Controls.Add(this.grpPATune); this.tpTransmit.Controls.Add(this.grpTXFilter); this.tpTransmit.Controls.Add(this.chkDCBlock); this.tpTransmit.Location = new System.Drawing.Point(4, 22); this.tpTransmit.Name = "tpTransmit"; this.tpTransmit.Size = new System.Drawing.Size(584, 286); this.tpTransmit.TabIndex = 5; this.tpTransmit.Text = "Transmit"; // // grpTXAM // this.grpTXAM.Controls.Add(this.lblTXAMCarrierLevel); this.grpTXAM.Controls.Add(this.udTXAMCarrierLevel); this.grpTXAM.Location = new System.Drawing.Point(368, 200); this.grpTXAM.Name = "grpTXAM"; this.grpTXAM.Size = new System.Drawing.Size(144, 56); this.grpTXAM.TabIndex = 52; this.grpTXAM.TabStop = false; this.grpTXAM.Text = "AM"; // // lblTXAMCarrierLevel // this.lblTXAMCarrierLevel.Image = null; this.lblTXAMCarrierLevel.Location = new System.Drawing.Point(8, 24); this.lblTXAMCarrierLevel.Name = "lblTXAMCarrierLevel"; this.lblTXAMCarrierLevel.Size = new System.Drawing.Size(72, 16); this.lblTXAMCarrierLevel.TabIndex = 5; this.lblTXAMCarrierLevel.Text = "Carrier Level:"; // // udTXAMCarrierLevel // this.udTXAMCarrierLevel.DecimalPlaces = 1; this.udTXAMCarrierLevel.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udTXAMCarrierLevel.Location = new System.Drawing.Point(80, 24); this.udTXAMCarrierLevel.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udTXAMCarrierLevel.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXAMCarrierLevel.Name = "udTXAMCarrierLevel"; this.udTXAMCarrierLevel.Size = new System.Drawing.Size(56, 20); this.udTXAMCarrierLevel.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXAMCarrierLevel, "Adjusts the carrier level on AM (pecentage of full 1/4 carrier) ."); this.udTXAMCarrierLevel.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udTXAMCarrierLevel.LostFocus += new System.EventHandler(this.udTXAMCarrierLevel_LostFocus); this.udTXAMCarrierLevel.ValueChanged += new System.EventHandler(this.udTXAMCarrierLevel_ValueChanged); // // grpTXMonitor // this.grpTXMonitor.Controls.Add(this.lblTXAF); this.grpTXMonitor.Controls.Add(this.udTXAF); this.grpTXMonitor.Location = new System.Drawing.Point(152, 184); this.grpTXMonitor.Name = "grpTXMonitor"; this.grpTXMonitor.Size = new System.Drawing.Size(120, 56); this.grpTXMonitor.TabIndex = 51; this.grpTXMonitor.TabStop = false; this.grpTXMonitor.Text = "Monitor"; // // lblTXAF // this.lblTXAF.Image = null; this.lblTXAF.Location = new System.Drawing.Point(8, 24); this.lblTXAF.Name = "lblTXAF"; this.lblTXAF.Size = new System.Drawing.Size(40, 16); this.lblTXAF.TabIndex = 5; this.lblTXAF.Text = "TX AF:"; // // udTXAF // this.udTXAF.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTXAF.Location = new System.Drawing.Point(56, 24); this.udTXAF.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udTXAF.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXAF.Name = "udTXAF"; this.udTXAF.Size = new System.Drawing.Size(48, 20); this.udTXAF.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXAF, "AF value to use when in TX mode (with the Delta 44 only)."); this.udTXAF.Value = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udTXAF.LostFocus += new System.EventHandler(this.udTXAF_LostFocus); this.udTXAF.ValueChanged += new System.EventHandler(this.udTXAF_ValueChanged); // // grpTXVOX // this.grpTXVOX.Controls.Add(this.lblTXVOXHangTime); this.grpTXVOX.Controls.Add(this.udTXVOXHangTime); this.grpTXVOX.Controls.Add(this.chkTXVOXEnabled); this.grpTXVOX.Controls.Add(this.lblTXVOXThreshold); this.grpTXVOX.Controls.Add(this.udTXVOXThreshold); this.grpTXVOX.Location = new System.Drawing.Point(8, 184); this.grpTXVOX.Name = "grpTXVOX"; this.grpTXVOX.Size = new System.Drawing.Size(136, 96); this.grpTXVOX.TabIndex = 50; this.grpTXVOX.TabStop = false; this.grpTXVOX.Text = "VOX"; // // lblTXVOXHangTime // this.lblTXVOXHangTime.Image = null; this.lblTXVOXHangTime.Location = new System.Drawing.Point(8, 72); this.lblTXVOXHangTime.Name = "lblTXVOXHangTime"; this.lblTXVOXHangTime.Size = new System.Drawing.Size(64, 16); this.lblTXVOXHangTime.TabIndex = 52; this.lblTXVOXHangTime.Text = "Delay (ms):"; // // udTXVOXHangTime // this.udTXVOXHangTime.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTXVOXHangTime.Location = new System.Drawing.Point(72, 72); this.udTXVOXHangTime.Maximum = new System.Decimal(new int[] { 10000, 0, 0, 0}); this.udTXVOXHangTime.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXVOXHangTime.Name = "udTXVOXHangTime"; this.udTXVOXHangTime.Size = new System.Drawing.Size(56, 20); this.udTXVOXHangTime.TabIndex = 51; this.toolTip1.SetToolTip(this.udTXVOXHangTime, "The amount of time in ms to stay in TX mode after the last signal above the thres" + "hold."); this.udTXVOXHangTime.Value = new System.Decimal(new int[] { 250, 0, 0, 0}); this.udTXVOXHangTime.LostFocus += new System.EventHandler(this.udTXVOXHangTime_LostFocus); this.udTXVOXHangTime.ValueChanged += new System.EventHandler(this.udTXVOXHangTime_ValueChanged); // // chkTXVOXEnabled // this.chkTXVOXEnabled.Image = null; this.chkTXVOXEnabled.Location = new System.Drawing.Point(16, 24); this.chkTXVOXEnabled.Name = "chkTXVOXEnabled"; this.chkTXVOXEnabled.Size = new System.Drawing.Size(72, 16); this.chkTXVOXEnabled.TabIndex = 50; this.chkTXVOXEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkTXVOXEnabled, "Enables VOX operation using the parameters below."); this.chkTXVOXEnabled.CheckedChanged += new System.EventHandler(this.chkTXVOXEnabled_CheckedChanged); // // lblTXVOXThreshold // this.lblTXVOXThreshold.Image = null; this.lblTXVOXThreshold.Location = new System.Drawing.Point(8, 48); this.lblTXVOXThreshold.Name = "lblTXVOXThreshold"; this.lblTXVOXThreshold.Size = new System.Drawing.Size(64, 16); this.lblTXVOXThreshold.TabIndex = 5; this.lblTXVOXThreshold.Text = "Sensitivity:"; // // udTXVOXThreshold // this.udTXVOXThreshold.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTXVOXThreshold.Location = new System.Drawing.Point(72, 48); this.udTXVOXThreshold.Maximum = new System.Decimal(new int[] { 1000, 0, 0, 0}); this.udTXVOXThreshold.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXVOXThreshold.Name = "udTXVOXThreshold"; this.udTXVOXThreshold.Size = new System.Drawing.Size(48, 20); this.udTXVOXThreshold.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXVOXThreshold, "Numeric sample value above which triggers the VOX circuit."); this.udTXVOXThreshold.Value = new System.Decimal(new int[] { 90, 0, 0, 0}); this.udTXVOXThreshold.LostFocus += new System.EventHandler(this.udTXVOXThreshold_LostFocus); this.udTXVOXThreshold.ValueChanged += new System.EventHandler(this.udTXVOXThreshold_ValueChanged); // // grpTXNoiseGate // this.grpTXNoiseGate.Controls.Add(this.chkTXNoiseGateEnabled); this.grpTXNoiseGate.Controls.Add(this.udTXNoiseGate); this.grpTXNoiseGate.Controls.Add(this.lblTXNoiseGateThreshold); this.grpTXNoiseGate.Location = new System.Drawing.Point(152, 96); this.grpTXNoiseGate.Name = "grpTXNoiseGate"; this.grpTXNoiseGate.Size = new System.Drawing.Size(144, 80); this.grpTXNoiseGate.TabIndex = 49; this.grpTXNoiseGate.TabStop = false; this.grpTXNoiseGate.Text = "Noise Gate"; // // chkTXNoiseGateEnabled // this.chkTXNoiseGateEnabled.Image = null; this.chkTXNoiseGateEnabled.Location = new System.Drawing.Point(16, 24); this.chkTXNoiseGateEnabled.Name = "chkTXNoiseGateEnabled"; this.chkTXNoiseGateEnabled.Size = new System.Drawing.Size(72, 16); this.chkTXNoiseGateEnabled.TabIndex = 49; this.chkTXNoiseGateEnabled.Text = "Enabled"; this.toolTip1.SetToolTip(this.chkTXNoiseGateEnabled, "Enables the noise gate to operate using the threshold set below."); this.chkTXNoiseGateEnabled.CheckedChanged += new System.EventHandler(this.chkTXNoiseGateEnabled_CheckedChanged); // // udTXNoiseGate // this.udTXNoiseGate.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTXNoiseGate.Location = new System.Drawing.Point(88, 48); this.udTXNoiseGate.Maximum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXNoiseGate.Minimum = new System.Decimal(new int[] { 160, 0, 0, -2147483648}); this.udTXNoiseGate.Name = "udTXNoiseGate"; this.udTXNoiseGate.Size = new System.Drawing.Size(48, 20); this.udTXNoiseGate.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXNoiseGate, "Signal level in dB above which to transmit audio."); this.udTXNoiseGate.Value = new System.Decimal(new int[] { 40, 0, 0, -2147483648}); this.udTXNoiseGate.LostFocus += new System.EventHandler(this.udTXNoiseGate_LostFocus); this.udTXNoiseGate.ValueChanged += new System.EventHandler(this.udTXNoiseGate_ValueChanged); // // lblTXNoiseGateThreshold // this.lblTXNoiseGateThreshold.Image = null; this.lblTXNoiseGateThreshold.Location = new System.Drawing.Point(8, 48); this.lblTXNoiseGateThreshold.Name = "lblTXNoiseGateThreshold"; this.lblTXNoiseGateThreshold.Size = new System.Drawing.Size(82, 23); this.lblTXNoiseGateThreshold.TabIndex = 5; this.lblTXNoiseGateThreshold.Text = "Threshold (dB):"; // // grpTXProfile // this.grpTXProfile.Controls.Add(this.btnTXProfileDelete); this.grpTXProfile.Controls.Add(this.btnTXProfileSave); this.grpTXProfile.Controls.Add(this.comboTXProfileName); this.grpTXProfile.Location = new System.Drawing.Point(8, 8); this.grpTXProfile.Name = "grpTXProfile"; this.grpTXProfile.Size = new System.Drawing.Size(136, 80); this.grpTXProfile.TabIndex = 23; this.grpTXProfile.TabStop = false; this.grpTXProfile.Text = "Profiles"; // // btnTXProfileDelete // this.btnTXProfileDelete.Image = null; this.btnTXProfileDelete.Location = new System.Drawing.Point(72, 48); this.btnTXProfileDelete.Name = "btnTXProfileDelete"; this.btnTXProfileDelete.Size = new System.Drawing.Size(48, 21); this.btnTXProfileDelete.TabIndex = 2; this.btnTXProfileDelete.Text = "Delete"; this.toolTip1.SetToolTip(this.btnTXProfileDelete, "Click to delete the currently selected TX Profile."); this.btnTXProfileDelete.Click += new System.EventHandler(this.btnTXProfileDelete_Click); // // btnTXProfileSave // this.btnTXProfileSave.Image = null; this.btnTXProfileSave.Location = new System.Drawing.Point(16, 48); this.btnTXProfileSave.Name = "btnTXProfileSave"; this.btnTXProfileSave.Size = new System.Drawing.Size(48, 21); this.btnTXProfileSave.TabIndex = 1; this.btnTXProfileSave.Text = "Save"; this.toolTip1.SetToolTip(this.btnTXProfileSave, "Click to save the current settings to a TX Profile."); this.btnTXProfileSave.Click += new System.EventHandler(this.btnTXProfileSave_Click); // // comboTXProfileName // this.comboTXProfileName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboTXProfileName.DropDownWidth = 104; this.comboTXProfileName.Location = new System.Drawing.Point(16, 24); this.comboTXProfileName.Name = "comboTXProfileName"; this.comboTXProfileName.Size = new System.Drawing.Size(104, 20); this.comboTXProfileName.TabIndex = 0; this.toolTip1.SetToolTip(this.comboTXProfileName, "Sets the current Transmit Profile to be used."); this.comboTXProfileName.SelectedIndexChanged += new System.EventHandler(this.comboTXProfileName_SelectedIndexChanged); // // grpPATune // this.grpPATune.Controls.Add(this.comboTXTUNMeter); this.grpPATune.Controls.Add(this.lblTXTUNMeter); this.grpPATune.Controls.Add(this.lblTransmitTunePower); this.grpPATune.Controls.Add(this.udTXTunePower); this.grpPATune.Location = new System.Drawing.Point(8, 96); this.grpPATune.Name = "grpPATune"; this.grpPATune.Size = new System.Drawing.Size(136, 80); this.grpPATune.TabIndex = 22; this.grpPATune.TabStop = false; this.grpPATune.Text = "Tune"; // // comboTXTUNMeter // this.comboTXTUNMeter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboTXTUNMeter.DropDownWidth = 104; this.comboTXTUNMeter.Items.AddRange(new object[] { "Fwd Pwr", "Ref Pwr", "SWR", "Off"}); this.comboTXTUNMeter.Location = new System.Drawing.Point(64, 48); this.comboTXTUNMeter.Name = "comboTXTUNMeter"; this.comboTXTUNMeter.Size = new System.Drawing.Size(64, 20); this.comboTXTUNMeter.TabIndex = 9; this.toolTip1.SetToolTip(this.comboTXTUNMeter, "Sets the current Transmit Profile to be used."); this.comboTXTUNMeter.SelectedIndexChanged += new System.EventHandler(this.comboTXTUNMeter_SelectedIndexChanged); // // lblTXTUNMeter // this.lblTXTUNMeter.Image = null; this.lblTXTUNMeter.Location = new System.Drawing.Point(8, 48); this.lblTXTUNMeter.Name = "lblTXTUNMeter"; this.lblTXTUNMeter.Size = new System.Drawing.Size(56, 24); this.lblTXTUNMeter.TabIndex = 8; this.lblTXTUNMeter.Text = "TX Meter:"; this.lblTXTUNMeter.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // lblTransmitTunePower // this.lblTransmitTunePower.Image = null; this.lblTransmitTunePower.Location = new System.Drawing.Point(8, 24); this.lblTransmitTunePower.Name = "lblTransmitTunePower"; this.lblTransmitTunePower.Size = new System.Drawing.Size(64, 16); this.lblTransmitTunePower.TabIndex = 5; this.lblTransmitTunePower.Text = "Power (W):"; // // udTXTunePower // this.udTXTunePower.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTXTunePower.Location = new System.Drawing.Point(72, 24); this.udTXTunePower.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udTXTunePower.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXTunePower.Name = "udTXTunePower"; this.udTXTunePower.Size = new System.Drawing.Size(48, 20); this.udTXTunePower.TabIndex = 4; this.toolTip1.SetToolTip(this.udTXTunePower, "Power used when using the TUN button on the front panel."); this.udTXTunePower.Value = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udTXTunePower.LostFocus += new System.EventHandler(this.udTXTunePower_LostFocus); this.udTXTunePower.ValueChanged += new System.EventHandler(this.udTransmitTunePower_ValueChanged); // // grpTXFilter // this.grpTXFilter.Controls.Add(this.lblTXFilterHigh); this.grpTXFilter.Controls.Add(this.udTXFilterLow); this.grpTXFilter.Controls.Add(this.lblTXFilterLow); this.grpTXFilter.Controls.Add(this.udTXFilterHigh); this.grpTXFilter.Location = new System.Drawing.Point(152, 8); this.grpTXFilter.Name = "grpTXFilter"; this.grpTXFilter.Size = new System.Drawing.Size(128, 80); this.grpTXFilter.TabIndex = 19; this.grpTXFilter.TabStop = false; this.grpTXFilter.Text = "Transmit Filter"; // // lblTXFilterHigh // this.lblTXFilterHigh.Image = null; this.lblTXFilterHigh.Location = new System.Drawing.Point(16, 24); this.lblTXFilterHigh.Name = "lblTXFilterHigh"; this.lblTXFilterHigh.Size = new System.Drawing.Size(40, 23); this.lblTXFilterHigh.TabIndex = 3; this.lblTXFilterHigh.Text = "High:"; // // udTXFilterLow // this.udTXFilterLow.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udTXFilterLow.Location = new System.Drawing.Point(56, 48); this.udTXFilterLow.Maximum = new System.Decimal(new int[] { 20000, 0, 0, 0}); this.udTXFilterLow.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXFilterLow.Name = "udTXFilterLow"; this.udTXFilterLow.Size = new System.Drawing.Size(56, 20); this.udTXFilterLow.TabIndex = 2; this.toolTip1.SetToolTip(this.udTXFilterLow, "Low Frequency TX Filter Cutoff"); this.udTXFilterLow.Value = new System.Decimal(new int[] { 200, 0, 0, 0}); this.udTXFilterLow.LostFocus += new System.EventHandler(this.udTXFilterLow_LostFocus); this.udTXFilterLow.ValueChanged += new System.EventHandler(this.udTXFilterLow_ValueChanged); // // lblTXFilterLow // this.lblTXFilterLow.Image = null; this.lblTXFilterLow.Location = new System.Drawing.Point(16, 48); this.lblTXFilterLow.Name = "lblTXFilterLow"; this.lblTXFilterLow.Size = new System.Drawing.Size(40, 23); this.lblTXFilterLow.TabIndex = 1; this.lblTXFilterLow.Text = "Low:"; // // udTXFilterHigh // this.udTXFilterHigh.Increment = new System.Decimal(new int[] { 10, 0, 0, 0}); this.udTXFilterHigh.Location = new System.Drawing.Point(56, 24); this.udTXFilterHigh.Maximum = new System.Decimal(new int[] { 20000, 0, 0, 0}); this.udTXFilterHigh.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTXFilterHigh.Name = "udTXFilterHigh"; this.udTXFilterHigh.Size = new System.Drawing.Size(56, 20); this.udTXFilterHigh.TabIndex = 0; this.toolTip1.SetToolTip(this.udTXFilterHigh, "High Frequency TX Filter Cutoff"); this.udTXFilterHigh.Value = new System.Decimal(new int[] { 2900, 0, 0, 0}); this.udTXFilterHigh.LostFocus += new System.EventHandler(this.udTXFilterHigh_LostFocus); this.udTXFilterHigh.ValueChanged += new System.EventHandler(this.udTXFilterHigh_ValueChanged); // // chkDCBlock // this.chkDCBlock.Image = null; this.chkDCBlock.Location = new System.Drawing.Point(288, 16); this.chkDCBlock.Name = "chkDCBlock"; this.chkDCBlock.Size = new System.Drawing.Size(72, 16); this.chkDCBlock.TabIndex = 48; this.chkDCBlock.Text = "DC Block"; this.toolTip1.SetToolTip(this.chkDCBlock, "Enable this to engage a digital LPF to help eliminate DC garbage caused by some s" + "ound cards."); this.chkDCBlock.CheckedChanged += new System.EventHandler(this.chkDCBlock_CheckedChanged); // // tpKeyboard // this.tpKeyboard.Controls.Add(this.grpKBXIT); this.tpKeyboard.Controls.Add(this.grpKBRIT); this.tpKeyboard.Controls.Add(this.grpKBMode); this.tpKeyboard.Controls.Add(this.grpKBBand); this.tpKeyboard.Controls.Add(this.grpKBTune); this.tpKeyboard.Controls.Add(this.grpKBFilter); this.tpKeyboard.Controls.Add(this.grpKBCW); this.tpKeyboard.Location = new System.Drawing.Point(4, 22); this.tpKeyboard.Name = "tpKeyboard"; this.tpKeyboard.Size = new System.Drawing.Size(584, 286); this.tpKeyboard.TabIndex = 4; this.tpKeyboard.Text = "Keyboard"; // // grpKBXIT // this.grpKBXIT.Controls.Add(this.lblKBXITUp); this.grpKBXIT.Controls.Add(this.lblKBXITDown); this.grpKBXIT.Controls.Add(this.comboKBXITUp); this.grpKBXIT.Controls.Add(this.comboKBXITDown); this.grpKBXIT.Location = new System.Drawing.Point(136, 192); this.grpKBXIT.Name = "grpKBXIT"; this.grpKBXIT.Size = new System.Drawing.Size(112, 72); this.grpKBXIT.TabIndex = 16; this.grpKBXIT.TabStop = false; this.grpKBXIT.Text = "XIT"; // // lblKBXITUp // this.lblKBXITUp.Image = null; this.lblKBXITUp.Location = new System.Drawing.Point(8, 16); this.lblKBXITUp.Name = "lblKBXITUp"; this.lblKBXITUp.Size = new System.Drawing.Size(40, 16); this.lblKBXITUp.TabIndex = 10; this.lblKBXITUp.Text = "Up:"; this.lblKBXITUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBXITDown // this.lblKBXITDown.Image = null; this.lblKBXITDown.Location = new System.Drawing.Point(8, 40); this.lblKBXITDown.Name = "lblKBXITDown"; this.lblKBXITDown.Size = new System.Drawing.Size(40, 16); this.lblKBXITDown.TabIndex = 9; this.lblKBXITDown.Text = "Down:"; this.lblKBXITDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBXITUp // this.comboKBXITUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBXITUp.DropDownWidth = 56; this.comboKBXITUp.Location = new System.Drawing.Point(48, 16); this.comboKBXITUp.Name = "comboKBXITUp"; this.comboKBXITUp.Size = new System.Drawing.Size(56, 20); this.comboKBXITUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBXITUp, "Adjust XIT control up 1kHz."); this.comboKBXITUp.SelectedIndexChanged += new System.EventHandler(this.comboKBXITUp_SelectedIndexChanged); // // comboKBXITDown // this.comboKBXITDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBXITDown.DropDownWidth = 56; this.comboKBXITDown.Location = new System.Drawing.Point(48, 40); this.comboKBXITDown.Name = "comboKBXITDown"; this.comboKBXITDown.Size = new System.Drawing.Size(56, 20); this.comboKBXITDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBXITDown, "Adjust the XIT control down 1kHz."); this.comboKBXITDown.SelectedIndexChanged += new System.EventHandler(this.comboKBXITDown_SelectedIndexChanged); // // grpKBRIT // this.grpKBRIT.Controls.Add(this.lblKBRitUp); this.grpKBRIT.Controls.Add(this.lblKBRITDown); this.grpKBRIT.Controls.Add(this.comboKBRITUp); this.grpKBRIT.Controls.Add(this.comboKBRITDown); this.grpKBRIT.Location = new System.Drawing.Point(8, 192); this.grpKBRIT.Name = "grpKBRIT"; this.grpKBRIT.Size = new System.Drawing.Size(112, 72); this.grpKBRIT.TabIndex = 15; this.grpKBRIT.TabStop = false; this.grpKBRIT.Text = "RIT"; // // lblKBRitUp // this.lblKBRitUp.Image = null; this.lblKBRitUp.Location = new System.Drawing.Point(8, 16); this.lblKBRitUp.Name = "lblKBRitUp"; this.lblKBRitUp.Size = new System.Drawing.Size(40, 16); this.lblKBRitUp.TabIndex = 10; this.lblKBRitUp.Text = "Up:"; this.lblKBRitUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBRITDown // this.lblKBRITDown.Image = null; this.lblKBRITDown.Location = new System.Drawing.Point(8, 40); this.lblKBRITDown.Name = "lblKBRITDown"; this.lblKBRITDown.Size = new System.Drawing.Size(40, 16); this.lblKBRITDown.TabIndex = 9; this.lblKBRITDown.Text = "Down:"; this.lblKBRITDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBRITUp // this.comboKBRITUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBRITUp.DropDownWidth = 56; this.comboKBRITUp.Location = new System.Drawing.Point(48, 16); this.comboKBRITUp.Name = "comboKBRITUp"; this.comboKBRITUp.Size = new System.Drawing.Size(56, 20); this.comboKBRITUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBRITUp, "Adjust RIT control up 1kHz."); this.comboKBRITUp.SelectedIndexChanged += new System.EventHandler(this.comboKBRITUp_SelectedIndexChanged); // // comboKBRITDown // this.comboKBRITDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBRITDown.DropDownWidth = 56; this.comboKBRITDown.Location = new System.Drawing.Point(48, 40); this.comboKBRITDown.Name = "comboKBRITDown"; this.comboKBRITDown.Size = new System.Drawing.Size(56, 20); this.comboKBRITDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBRITDown, "Adjust RIT control down 1kHz."); this.comboKBRITDown.SelectedIndexChanged += new System.EventHandler(this.comboKBRITDown_SelectedIndexChanged); // // grpKBMode // this.grpKBMode.Controls.Add(this.lblKBModeUp); this.grpKBMode.Controls.Add(this.lblKBModeDown); this.grpKBMode.Controls.Add(this.comboKBModeUp); this.grpKBMode.Controls.Add(this.comboKBModeDown); this.grpKBMode.Location = new System.Drawing.Point(264, 112); this.grpKBMode.Name = "grpKBMode"; this.grpKBMode.Size = new System.Drawing.Size(112, 72); this.grpKBMode.TabIndex = 14; this.grpKBMode.TabStop = false; this.grpKBMode.Text = "Mode"; // // lblKBModeUp // this.lblKBModeUp.Image = null; this.lblKBModeUp.Location = new System.Drawing.Point(8, 16); this.lblKBModeUp.Name = "lblKBModeUp"; this.lblKBModeUp.Size = new System.Drawing.Size(40, 16); this.lblKBModeUp.TabIndex = 10; this.lblKBModeUp.Text = "Up:"; this.lblKBModeUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBModeDown // this.lblKBModeDown.Image = null; this.lblKBModeDown.Location = new System.Drawing.Point(8, 40); this.lblKBModeDown.Name = "lblKBModeDown"; this.lblKBModeDown.Size = new System.Drawing.Size(40, 16); this.lblKBModeDown.TabIndex = 9; this.lblKBModeDown.Text = "Down:"; this.lblKBModeDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBModeUp // this.comboKBModeUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBModeUp.DropDownWidth = 56; this.comboKBModeUp.Location = new System.Drawing.Point(48, 16); this.comboKBModeUp.Name = "comboKBModeUp"; this.comboKBModeUp.Size = new System.Drawing.Size(56, 20); this.comboKBModeUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBModeUp, "Select the Next mode."); this.comboKBModeUp.SelectedIndexChanged += new System.EventHandler(this.comboKBModeUp_SelectedIndexChanged); // // comboKBModeDown // this.comboKBModeDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBModeDown.DropDownWidth = 56; this.comboKBModeDown.Location = new System.Drawing.Point(48, 40); this.comboKBModeDown.Name = "comboKBModeDown"; this.comboKBModeDown.Size = new System.Drawing.Size(56, 20); this.comboKBModeDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBModeDown, "Select the Previous mode."); this.comboKBModeDown.SelectedIndexChanged += new System.EventHandler(this.comboKBModeDown_SelectedIndexChanged); // // grpKBBand // this.grpKBBand.Controls.Add(this.lblKBBandUp); this.grpKBBand.Controls.Add(this.lblKBBandDown); this.grpKBBand.Controls.Add(this.comboKBBandUp); this.grpKBBand.Controls.Add(this.comboKBBandDown); this.grpKBBand.Location = new System.Drawing.Point(8, 112); this.grpKBBand.Name = "grpKBBand"; this.grpKBBand.Size = new System.Drawing.Size(112, 72); this.grpKBBand.TabIndex = 12; this.grpKBBand.TabStop = false; this.grpKBBand.Text = "Band"; // // lblKBBandUp // this.lblKBBandUp.Image = null; this.lblKBBandUp.Location = new System.Drawing.Point(8, 16); this.lblKBBandUp.Name = "lblKBBandUp"; this.lblKBBandUp.Size = new System.Drawing.Size(40, 16); this.lblKBBandUp.TabIndex = 10; this.lblKBBandUp.Text = "Up:"; this.lblKBBandUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBBandDown // this.lblKBBandDown.Image = null; this.lblKBBandDown.Location = new System.Drawing.Point(8, 40); this.lblKBBandDown.Name = "lblKBBandDown"; this.lblKBBandDown.Size = new System.Drawing.Size(40, 16); this.lblKBBandDown.TabIndex = 9; this.lblKBBandDown.Text = "Down:"; this.lblKBBandDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBBandUp // this.comboKBBandUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBBandUp.DropDownWidth = 56; this.comboKBBandUp.Location = new System.Drawing.Point(48, 16); this.comboKBBandUp.Name = "comboKBBandUp"; this.comboKBBandUp.Size = new System.Drawing.Size(56, 20); this.comboKBBandUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBBandUp, "Jump to the next band stack memory."); this.comboKBBandUp.SelectedIndexChanged += new System.EventHandler(this.comboKBBandUp_SelectedIndexChanged); // // comboKBBandDown // this.comboKBBandDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBBandDown.DropDownWidth = 56; this.comboKBBandDown.Location = new System.Drawing.Point(48, 40); this.comboKBBandDown.Name = "comboKBBandDown"; this.comboKBBandDown.Size = new System.Drawing.Size(56, 20); this.comboKBBandDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBBandDown, "Jump to the previous band stack memory."); this.comboKBBandDown.SelectedIndexChanged += new System.EventHandler(this.comboKBBandDown_SelectedIndexChanged); // // grpKBTune // this.grpKBTune.Controls.Add(this.lblKBTuneDigit); this.grpKBTune.Controls.Add(this.lblKBTune7); this.grpKBTune.Controls.Add(this.lblKBTune6); this.grpKBTune.Controls.Add(this.lblKBTune5); this.grpKBTune.Controls.Add(this.lblKBTune4); this.grpKBTune.Controls.Add(this.lblKBTune3); this.grpKBTune.Controls.Add(this.lblKBTune2); this.grpKBTune.Controls.Add(this.comboKBTuneUp7); this.grpKBTune.Controls.Add(this.comboKBTuneDown7); this.grpKBTune.Controls.Add(this.comboKBTuneUp6); this.grpKBTune.Controls.Add(this.comboKBTuneDown6); this.grpKBTune.Controls.Add(this.comboKBTuneUp5); this.grpKBTune.Controls.Add(this.comboKBTuneDown5); this.grpKBTune.Controls.Add(this.comboKBTuneUp4); this.grpKBTune.Controls.Add(this.comboKBTuneDown4); this.grpKBTune.Controls.Add(this.lblKBTune1); this.grpKBTune.Controls.Add(this.lblKBTuneUp); this.grpKBTune.Controls.Add(this.lblKBTuneDown); this.grpKBTune.Controls.Add(this.comboKBTuneUp3); this.grpKBTune.Controls.Add(this.comboKBTuneDown3); this.grpKBTune.Controls.Add(this.comboKBTuneUp1); this.grpKBTune.Controls.Add(this.comboKBTuneUp2); this.grpKBTune.Controls.Add(this.comboKBTuneDown1); this.grpKBTune.Controls.Add(this.comboKBTuneDown2); this.grpKBTune.Location = new System.Drawing.Point(8, 8); this.grpKBTune.Name = "grpKBTune"; this.grpKBTune.Size = new System.Drawing.Size(456, 96); this.grpKBTune.TabIndex = 11; this.grpKBTune.TabStop = false; this.grpKBTune.Text = "Tune"; // // lblKBTuneDigit // this.lblKBTuneDigit.Image = null; this.lblKBTuneDigit.Location = new System.Drawing.Point(16, 16); this.lblKBTuneDigit.Name = "lblKBTuneDigit"; this.lblKBTuneDigit.Size = new System.Drawing.Size(32, 16); this.lblKBTuneDigit.TabIndex = 26; this.lblKBTuneDigit.Text = "Digit"; // // lblKBTune7 // this.lblKBTune7.Image = null; this.lblKBTune7.Location = new System.Drawing.Point(392, 16); this.lblKBTune7.Name = "lblKBTune7"; this.lblKBTune7.Size = new System.Drawing.Size(56, 16); this.lblKBTune7.TabIndex = 25; this.lblKBTune7.Text = "0.00000x"; this.lblKBTune7.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune6 // this.lblKBTune6.Image = null; this.lblKBTune6.Location = new System.Drawing.Point(336, 16); this.lblKBTune6.Name = "lblKBTune6"; this.lblKBTune6.Size = new System.Drawing.Size(56, 16); this.lblKBTune6.TabIndex = 24; this.lblKBTune6.Text = "0.0000x0"; this.lblKBTune6.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune5 // this.lblKBTune5.Image = null; this.lblKBTune5.Location = new System.Drawing.Point(280, 16); this.lblKBTune5.Name = "lblKBTune5"; this.lblKBTune5.Size = new System.Drawing.Size(56, 16); this.lblKBTune5.TabIndex = 23; this.lblKBTune5.Text = "0.000x00"; this.lblKBTune5.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune4 // this.lblKBTune4.Image = null; this.lblKBTune4.Location = new System.Drawing.Point(224, 16); this.lblKBTune4.Name = "lblKBTune4"; this.lblKBTune4.Size = new System.Drawing.Size(56, 16); this.lblKBTune4.TabIndex = 22; this.lblKBTune4.Text = "0.00x000"; this.lblKBTune4.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune3 // this.lblKBTune3.Image = null; this.lblKBTune3.Location = new System.Drawing.Point(168, 16); this.lblKBTune3.Name = "lblKBTune3"; this.lblKBTune3.Size = new System.Drawing.Size(56, 16); this.lblKBTune3.TabIndex = 21; this.lblKBTune3.Text = "0.0x0000"; this.lblKBTune3.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTune2 // this.lblKBTune2.Image = null; this.lblKBTune2.Location = new System.Drawing.Point(112, 16); this.lblKBTune2.Name = "lblKBTune2"; this.lblKBTune2.Size = new System.Drawing.Size(56, 16); this.lblKBTune2.TabIndex = 20; this.lblKBTune2.Text = "0.x00000"; this.lblKBTune2.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBTuneUp7 // this.comboKBTuneUp7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp7.DropDownWidth = 56; this.comboKBTuneUp7.Location = new System.Drawing.Point(392, 40); this.comboKBTuneUp7.Name = "comboKBTuneUp7"; this.comboKBTuneUp7.Size = new System.Drawing.Size(56, 20); this.comboKBTuneUp7.TabIndex = 19; this.toolTip1.SetToolTip(this.comboKBTuneUp7, "Tune Up 1Hz"); this.comboKBTuneUp7.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp7_SelectedIndexChanged); // // comboKBTuneDown7 // this.comboKBTuneDown7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown7.DropDownWidth = 56; this.comboKBTuneDown7.Location = new System.Drawing.Point(392, 64); this.comboKBTuneDown7.Name = "comboKBTuneDown7"; this.comboKBTuneDown7.Size = new System.Drawing.Size(56, 20); this.comboKBTuneDown7.TabIndex = 18; this.toolTip1.SetToolTip(this.comboKBTuneDown7, "Tune Down 1Hz"); this.comboKBTuneDown7.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown7_SelectedIndexChanged); // // comboKBTuneUp6 // this.comboKBTuneUp6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp6.DropDownWidth = 56; this.comboKBTuneUp6.Location = new System.Drawing.Point(336, 40); this.comboKBTuneUp6.Name = "comboKBTuneUp6"; this.comboKBTuneUp6.Size = new System.Drawing.Size(56, 20); this.comboKBTuneUp6.TabIndex = 17; this.toolTip1.SetToolTip(this.comboKBTuneUp6, "Tune Up 10Hz"); this.comboKBTuneUp6.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp6_SelectedIndexChanged); // // comboKBTuneDown6 // this.comboKBTuneDown6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown6.DropDownWidth = 56; this.comboKBTuneDown6.Location = new System.Drawing.Point(336, 64); this.comboKBTuneDown6.Name = "comboKBTuneDown6"; this.comboKBTuneDown6.Size = new System.Drawing.Size(56, 20); this.comboKBTuneDown6.TabIndex = 16; this.toolTip1.SetToolTip(this.comboKBTuneDown6, "Tune Down 10Hz"); this.comboKBTuneDown6.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown6_SelectedIndexChanged); // // comboKBTuneUp5 // this.comboKBTuneUp5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp5.DropDownWidth = 56; this.comboKBTuneUp5.Location = new System.Drawing.Point(280, 40); this.comboKBTuneUp5.Name = "comboKBTuneUp5"; this.comboKBTuneUp5.Size = new System.Drawing.Size(56, 20); this.comboKBTuneUp5.TabIndex = 15; this.toolTip1.SetToolTip(this.comboKBTuneUp5, "Tune Up 100Hz"); this.comboKBTuneUp5.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp5_SelectedIndexChanged); // // comboKBTuneDown5 // this.comboKBTuneDown5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown5.DropDownWidth = 56; this.comboKBTuneDown5.Location = new System.Drawing.Point(280, 64); this.comboKBTuneDown5.Name = "comboKBTuneDown5"; this.comboKBTuneDown5.Size = new System.Drawing.Size(56, 20); this.comboKBTuneDown5.TabIndex = 14; this.toolTip1.SetToolTip(this.comboKBTuneDown5, "Tune Down 100Hz"); this.comboKBTuneDown5.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown5_SelectedIndexChanged); // // comboKBTuneUp4 // this.comboKBTuneUp4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp4.DropDownWidth = 56; this.comboKBTuneUp4.Location = new System.Drawing.Point(224, 40); this.comboKBTuneUp4.Name = "comboKBTuneUp4"; this.comboKBTuneUp4.Size = new System.Drawing.Size(56, 20); this.comboKBTuneUp4.TabIndex = 13; this.toolTip1.SetToolTip(this.comboKBTuneUp4, "Tune Up 1kHz"); this.comboKBTuneUp4.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp4_SelectedIndexChanged); // // comboKBTuneDown4 // this.comboKBTuneDown4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown4.DropDownWidth = 56; this.comboKBTuneDown4.Location = new System.Drawing.Point(224, 64); this.comboKBTuneDown4.Name = "comboKBTuneDown4"; this.comboKBTuneDown4.Size = new System.Drawing.Size(56, 20); this.comboKBTuneDown4.TabIndex = 12; this.toolTip1.SetToolTip(this.comboKBTuneDown4, "Tune Down 1kHz"); this.comboKBTuneDown4.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown4_SelectedIndexChanged); // // lblKBTune1 // this.lblKBTune1.Image = null; this.lblKBTune1.Location = new System.Drawing.Point(48, 16); this.lblKBTune1.Name = "lblKBTune1"; this.lblKBTune1.Size = new System.Drawing.Size(56, 16); this.lblKBTune1.TabIndex = 11; this.lblKBTune1.Text = "x.000000"; this.lblKBTune1.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTuneUp // this.lblKBTuneUp.Image = null; this.lblKBTuneUp.Location = new System.Drawing.Point(8, 40); this.lblKBTuneUp.Name = "lblKBTuneUp"; this.lblKBTuneUp.Size = new System.Drawing.Size(40, 16); this.lblKBTuneUp.TabIndex = 8; this.lblKBTuneUp.Text = "Up:"; this.lblKBTuneUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBTuneDown // this.lblKBTuneDown.Image = null; this.lblKBTuneDown.Location = new System.Drawing.Point(8, 64); this.lblKBTuneDown.Name = "lblKBTuneDown"; this.lblKBTuneDown.Size = new System.Drawing.Size(40, 16); this.lblKBTuneDown.TabIndex = 7; this.lblKBTuneDown.Text = "Down:"; this.lblKBTuneDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBTuneUp3 // this.comboKBTuneUp3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp3.DropDownWidth = 56; this.comboKBTuneUp3.Location = new System.Drawing.Point(168, 40); this.comboKBTuneUp3.Name = "comboKBTuneUp3"; this.comboKBTuneUp3.Size = new System.Drawing.Size(56, 20); this.comboKBTuneUp3.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBTuneUp3, "Tune Up 10kHz"); this.comboKBTuneUp3.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp3_SelectedIndexChanged); // // comboKBTuneDown3 // this.comboKBTuneDown3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown3.DropDownWidth = 56; this.comboKBTuneDown3.Location = new System.Drawing.Point(168, 64); this.comboKBTuneDown3.Name = "comboKBTuneDown3"; this.comboKBTuneDown3.Size = new System.Drawing.Size(56, 20); this.comboKBTuneDown3.TabIndex = 1; this.toolTip1.SetToolTip(this.comboKBTuneDown3, "Tune Down 10kHz"); this.comboKBTuneDown3.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown3_SelectedIndexChanged); // // comboKBTuneUp1 // this.comboKBTuneUp1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp1.DropDownWidth = 56; this.comboKBTuneUp1.Location = new System.Drawing.Point(48, 40); this.comboKBTuneUp1.Name = "comboKBTuneUp1"; this.comboKBTuneUp1.Size = new System.Drawing.Size(56, 20); this.comboKBTuneUp1.TabIndex = 4; this.toolTip1.SetToolTip(this.comboKBTuneUp1, "Tune Up 1MHz"); this.comboKBTuneUp1.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp1_SelectedIndexChanged); // // comboKBTuneUp2 // this.comboKBTuneUp2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneUp2.DropDownWidth = 56; this.comboKBTuneUp2.Location = new System.Drawing.Point(112, 40); this.comboKBTuneUp2.Name = "comboKBTuneUp2"; this.comboKBTuneUp2.Size = new System.Drawing.Size(56, 20); this.comboKBTuneUp2.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBTuneUp2, "Tune Up 100kHz"); this.comboKBTuneUp2.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneUp2_SelectedIndexChanged); // // comboKBTuneDown1 // this.comboKBTuneDown1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown1.DropDownWidth = 56; this.comboKBTuneDown1.Location = new System.Drawing.Point(48, 64); this.comboKBTuneDown1.Name = "comboKBTuneDown1"; this.comboKBTuneDown1.Size = new System.Drawing.Size(56, 20); this.comboKBTuneDown1.TabIndex = 0; this.toolTip1.SetToolTip(this.comboKBTuneDown1, "Tune Down 1MHz"); this.comboKBTuneDown1.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown1_SelectedIndexChanged); // // comboKBTuneDown2 // this.comboKBTuneDown2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBTuneDown2.DropDownWidth = 56; this.comboKBTuneDown2.Location = new System.Drawing.Point(112, 64); this.comboKBTuneDown2.Name = "comboKBTuneDown2"; this.comboKBTuneDown2.Size = new System.Drawing.Size(56, 20); this.comboKBTuneDown2.TabIndex = 2; this.toolTip1.SetToolTip(this.comboKBTuneDown2, "Tune Down 100kHz"); this.comboKBTuneDown2.SelectedIndexChanged += new System.EventHandler(this.comboKBTuneDown2_SelectedIndexChanged); // // grpKBFilter // this.grpKBFilter.Controls.Add(this.lblKBFilterUp); this.grpKBFilter.Controls.Add(this.lblKBFilterDown); this.grpKBFilter.Controls.Add(this.comboKBFilterUp); this.grpKBFilter.Controls.Add(this.comboKBFilterDown); this.grpKBFilter.Location = new System.Drawing.Point(136, 112); this.grpKBFilter.Name = "grpKBFilter"; this.grpKBFilter.Size = new System.Drawing.Size(112, 72); this.grpKBFilter.TabIndex = 13; this.grpKBFilter.TabStop = false; this.grpKBFilter.Text = "Filter"; // // lblKBFilterUp // this.lblKBFilterUp.Image = null; this.lblKBFilterUp.Location = new System.Drawing.Point(8, 16); this.lblKBFilterUp.Name = "lblKBFilterUp"; this.lblKBFilterUp.Size = new System.Drawing.Size(40, 16); this.lblKBFilterUp.TabIndex = 10; this.lblKBFilterUp.Text = "Up:"; this.lblKBFilterUp.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBFilterDown // this.lblKBFilterDown.Image = null; this.lblKBFilterDown.Location = new System.Drawing.Point(8, 40); this.lblKBFilterDown.Name = "lblKBFilterDown"; this.lblKBFilterDown.Size = new System.Drawing.Size(40, 16); this.lblKBFilterDown.TabIndex = 9; this.lblKBFilterDown.Text = "Down:"; this.lblKBFilterDown.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBFilterUp // this.comboKBFilterUp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBFilterUp.DropDownWidth = 56; this.comboKBFilterUp.Location = new System.Drawing.Point(48, 16); this.comboKBFilterUp.Name = "comboKBFilterUp"; this.comboKBFilterUp.Size = new System.Drawing.Size(56, 20); this.comboKBFilterUp.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBFilterUp, "Select the Next filter."); this.comboKBFilterUp.SelectedIndexChanged += new System.EventHandler(this.comboKBFilterUp_SelectedIndexChanged); // // comboKBFilterDown // this.comboKBFilterDown.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBFilterDown.DropDownWidth = 56; this.comboKBFilterDown.Location = new System.Drawing.Point(48, 40); this.comboKBFilterDown.Name = "comboKBFilterDown"; this.comboKBFilterDown.Size = new System.Drawing.Size(56, 20); this.comboKBFilterDown.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBFilterDown, "Select the Previous filter."); this.comboKBFilterDown.SelectedIndexChanged += new System.EventHandler(this.comboKBFilterDown_SelectedIndexChanged); // // grpKBCW // this.grpKBCW.Controls.Add(this.lblKBCWDot); this.grpKBCW.Controls.Add(this.lblKBCWDash); this.grpKBCW.Controls.Add(this.comboKBCWDot); this.grpKBCW.Controls.Add(this.comboKBCWDash); this.grpKBCW.Location = new System.Drawing.Point(264, 192); this.grpKBCW.Name = "grpKBCW"; this.grpKBCW.Size = new System.Drawing.Size(112, 72); this.grpKBCW.TabIndex = 13; this.grpKBCW.TabStop = false; this.grpKBCW.Text = "CW"; this.grpKBCW.Visible = false; // // lblKBCWDot // this.lblKBCWDot.Image = null; this.lblKBCWDot.Location = new System.Drawing.Point(8, 16); this.lblKBCWDot.Name = "lblKBCWDot"; this.lblKBCWDot.Size = new System.Drawing.Size(40, 16); this.lblKBCWDot.TabIndex = 10; this.lblKBCWDot.Text = "Dot:"; this.lblKBCWDot.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // lblKBCWDash // this.lblKBCWDash.Image = null; this.lblKBCWDash.Location = new System.Drawing.Point(8, 40); this.lblKBCWDash.Name = "lblKBCWDash"; this.lblKBCWDash.Size = new System.Drawing.Size(40, 16); this.lblKBCWDash.TabIndex = 9; this.lblKBCWDash.Text = "Dash:"; this.lblKBCWDash.TextAlign = System.Drawing.ContentAlignment.TopCenter; // // comboKBCWDot // this.comboKBCWDot.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWDot.DropDownWidth = 56; this.comboKBCWDot.Location = new System.Drawing.Point(48, 16); this.comboKBCWDot.Name = "comboKBCWDot"; this.comboKBCWDot.Size = new System.Drawing.Size(56, 20); this.comboKBCWDot.TabIndex = 6; this.toolTip1.SetToolTip(this.comboKBCWDot, "Note: Only works with old keyer."); this.comboKBCWDot.SelectedIndexChanged += new System.EventHandler(this.comboKBCWDot_SelectedIndexChanged); // // comboKBCWDash // this.comboKBCWDash.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboKBCWDash.DropDownWidth = 56; this.comboKBCWDash.Location = new System.Drawing.Point(48, 40); this.comboKBCWDash.Name = "comboKBCWDash"; this.comboKBCWDash.Size = new System.Drawing.Size(56, 20); this.comboKBCWDash.TabIndex = 5; this.toolTip1.SetToolTip(this.comboKBCWDash, "Note: Only works with old keyer."); this.comboKBCWDash.SelectedIndexChanged += new System.EventHandler(this.comboKBCWDash_SelectedIndexChanged); // // tpAppearance // this.tpAppearance.Controls.Add(this.tcAppearance); this.tpAppearance.Location = new System.Drawing.Point(4, 22); this.tpAppearance.Name = "tpAppearance"; this.tpAppearance.Size = new System.Drawing.Size(584, 286); this.tpAppearance.TabIndex = 6; this.tpAppearance.Text = "Appearance"; // // tcAppearance // this.tcAppearance.Controls.Add(this.tpAppearanceDisplay); this.tcAppearance.Controls.Add(this.tpAppearanceGeneral); this.tcAppearance.Controls.Add(this.tpAppearanceMeter); this.tcAppearance.Location = new System.Drawing.Point(0, 0); this.tcAppearance.Name = "tcAppearance"; this.tcAppearance.SelectedIndex = 0; this.tcAppearance.Size = new System.Drawing.Size(600, 344); this.tcAppearance.TabIndex = 40; // // tpAppearanceDisplay // this.tpAppearanceDisplay.Controls.Add(this.grpAppPanadapter); this.tpAppearanceDisplay.Controls.Add(this.grpDisplayPeakCursor); this.tpAppearanceDisplay.Controls.Add(this.lblDisplayDataLineColor); this.tpAppearanceDisplay.Controls.Add(this.lblDisplayTextColor); this.tpAppearanceDisplay.Controls.Add(this.lblDisplayZeroLineColor); this.tpAppearanceDisplay.Controls.Add(this.lblDisplayGridColor); this.tpAppearanceDisplay.Controls.Add(this.lblDisplayBackgroundColor); this.tpAppearanceDisplay.Controls.Add(this.clrbtnDataLine); this.tpAppearanceDisplay.Controls.Add(this.clrbtnText); this.tpAppearanceDisplay.Controls.Add(this.clrbtnZeroLine); this.tpAppearanceDisplay.Controls.Add(this.clrbtnGrid); this.tpAppearanceDisplay.Controls.Add(this.clrbtnBackground); this.tpAppearanceDisplay.Controls.Add(this.lblDisplayLineWidth); this.tpAppearanceDisplay.Controls.Add(this.udDisplayLineWidth); this.tpAppearanceDisplay.Location = new System.Drawing.Point(4, 22); this.tpAppearanceDisplay.Name = "tpAppearanceDisplay"; this.tpAppearanceDisplay.Size = new System.Drawing.Size(592, 318); this.tpAppearanceDisplay.TabIndex = 1; this.tpAppearanceDisplay.Text = "Display"; // // grpAppPanadapter // this.grpAppPanadapter.Controls.Add(this.clrbtnSubRXZero); this.grpAppPanadapter.Controls.Add(this.lblSubRXZeroLine); this.grpAppPanadapter.Controls.Add(this.clrbtnSubRXFilter); this.grpAppPanadapter.Controls.Add(this.lblSubRXFilterColor); this.grpAppPanadapter.Controls.Add(this.chkShowFreqOffset); this.grpAppPanadapter.Controls.Add(this.clrbtnBandEdge); this.grpAppPanadapter.Controls.Add(this.lblBandEdge); this.grpAppPanadapter.Controls.Add(this.clrbtnFilter); this.grpAppPanadapter.Controls.Add(this.clrbtnTXFilter); this.grpAppPanadapter.Controls.Add(this.lblTXFilterColor); this.grpAppPanadapter.Controls.Add(this.lblDisplayFilterColor); this.grpAppPanadapter.Location = new System.Drawing.Point(8, 112); this.grpAppPanadapter.Name = "grpAppPanadapter"; this.grpAppPanadapter.Size = new System.Drawing.Size(264, 152); this.grpAppPanadapter.TabIndex = 77; this.grpAppPanadapter.TabStop = false; this.grpAppPanadapter.Text = "Panadapter"; // // clrbtnSubRXZero // this.clrbtnSubRXZero.Automatic = "Automatic"; this.clrbtnSubRXZero.Color = System.Drawing.Color.LightSkyBlue; this.clrbtnSubRXZero.Image = null; this.clrbtnSubRXZero.Location = new System.Drawing.Point(208, 56); this.clrbtnSubRXZero.MoreColors = "More Colors..."; this.clrbtnSubRXZero.Name = "clrbtnSubRXZero"; this.clrbtnSubRXZero.Size = new System.Drawing.Size(40, 23); this.clrbtnSubRXZero.TabIndex = 81; this.clrbtnSubRXZero.Changed += new System.EventHandler(this.clrbtnSubRXZero_Changed); // // lblSubRXZeroLine // this.lblSubRXZeroLine.Image = null; this.lblSubRXZeroLine.Location = new System.Drawing.Point(136, 56); this.lblSubRXZeroLine.Name = "lblSubRXZeroLine"; this.lblSubRXZeroLine.Size = new System.Drawing.Size(64, 24); this.lblSubRXZeroLine.TabIndex = 80; this.lblSubRXZeroLine.Text = "MultiRX Zero Line:"; // // clrbtnSubRXFilter // this.clrbtnSubRXFilter.Automatic = "Automatic"; this.clrbtnSubRXFilter.Color = System.Drawing.Color.Blue; this.clrbtnSubRXFilter.Image = null; this.clrbtnSubRXFilter.Location = new System.Drawing.Point(208, 24); this.clrbtnSubRXFilter.MoreColors = "More Colors..."; this.clrbtnSubRXFilter.Name = "clrbtnSubRXFilter"; this.clrbtnSubRXFilter.Size = new System.Drawing.Size(40, 23); this.clrbtnSubRXFilter.TabIndex = 79; this.clrbtnSubRXFilter.Changed += new System.EventHandler(this.clrbtnSubRXFilter_Changed); // // lblSubRXFilterColor // this.lblSubRXFilterColor.Image = null; this.lblSubRXFilterColor.Location = new System.Drawing.Point(136, 24); this.lblSubRXFilterColor.Name = "lblSubRXFilterColor"; this.lblSubRXFilterColor.Size = new System.Drawing.Size(64, 24); this.lblSubRXFilterColor.TabIndex = 78; this.lblSubRXFilterColor.Text = "MultiRX Filter Color:"; // // chkShowFreqOffset // this.chkShowFreqOffset.Image = null; this.chkShowFreqOffset.Location = new System.Drawing.Point(16, 112); this.chkShowFreqOffset.Name = "chkShowFreqOffset"; this.chkShowFreqOffset.Size = new System.Drawing.Size(104, 32); this.chkShowFreqOffset.TabIndex = 77; this.chkShowFreqOffset.Text = "Show Freq Offset"; this.toolTip1.SetToolTip(this.chkShowFreqOffset, "Show the frequency offset from the VFO rather than the actual frequency in MHz on" + " the display."); this.chkShowFreqOffset.CheckedChanged += new System.EventHandler(this.chkShowFreqOffset_CheckedChanged); // // clrbtnBandEdge // this.clrbtnBandEdge.Automatic = "Automatic"; this.clrbtnBandEdge.Color = System.Drawing.Color.Red; this.clrbtnBandEdge.Image = null; this.clrbtnBandEdge.Location = new System.Drawing.Point(80, 88); this.clrbtnBandEdge.MoreColors = "More Colors..."; this.clrbtnBandEdge.Name = "clrbtnBandEdge"; this.clrbtnBandEdge.Size = new System.Drawing.Size(40, 23); this.clrbtnBandEdge.TabIndex = 71; this.clrbtnBandEdge.Changed += new System.EventHandler(this.clrbtnBandEdge_Changed); // // lblBandEdge // this.lblBandEdge.Image = null; this.lblBandEdge.Location = new System.Drawing.Point(8, 88); this.lblBandEdge.Name = "lblBandEdge"; this.lblBandEdge.Size = new System.Drawing.Size(64, 24); this.lblBandEdge.TabIndex = 65; this.lblBandEdge.Text = "Band Edge:"; // // clrbtnFilter // this.clrbtnFilter.Automatic = "Automatic"; this.clrbtnFilter.Color = System.Drawing.Color.Green; this.clrbtnFilter.Image = null; this.clrbtnFilter.Location = new System.Drawing.Point(80, 24); this.clrbtnFilter.MoreColors = "More Colors..."; this.clrbtnFilter.Name = "clrbtnFilter"; this.clrbtnFilter.Size = new System.Drawing.Size(40, 23); this.clrbtnFilter.TabIndex = 71; this.clrbtnFilter.Changed += new System.EventHandler(this.clrbtnFilter_Changed); // // clrbtnTXFilter // this.clrbtnTXFilter.Automatic = "Automatic"; this.clrbtnTXFilter.Color = System.Drawing.Color.Yellow; this.clrbtnTXFilter.Image = null; this.clrbtnTXFilter.Location = new System.Drawing.Point(80, 56); this.clrbtnTXFilter.MoreColors = "More Colors..."; this.clrbtnTXFilter.Name = "clrbtnTXFilter"; this.clrbtnTXFilter.Size = new System.Drawing.Size(40, 23); this.clrbtnTXFilter.TabIndex = 76; this.clrbtnTXFilter.Changed += new System.EventHandler(this.clrbtnTXFilter_Changed); // // lblTXFilterColor // this.lblTXFilterColor.Image = null; this.lblTXFilterColor.Location = new System.Drawing.Point(8, 56); this.lblTXFilterColor.Name = "lblTXFilterColor"; this.lblTXFilterColor.Size = new System.Drawing.Size(64, 24); this.lblTXFilterColor.TabIndex = 75; this.lblTXFilterColor.Text = "TX Filter Color:"; // // lblDisplayFilterColor // this.lblDisplayFilterColor.Image = null; this.lblDisplayFilterColor.Location = new System.Drawing.Point(8, 24); this.lblDisplayFilterColor.Name = "lblDisplayFilterColor"; this.lblDisplayFilterColor.Size = new System.Drawing.Size(64, 24); this.lblDisplayFilterColor.TabIndex = 45; this.lblDisplayFilterColor.Text = "Main RX Filter Color:"; // // grpDisplayPeakCursor // this.grpDisplayPeakCursor.Controls.Add(this.clrbtnPeakBackground); this.grpDisplayPeakCursor.Controls.Add(this.lblPeakBackground); this.grpDisplayPeakCursor.Controls.Add(this.clrbtnPeakText); this.grpDisplayPeakCursor.Controls.Add(this.lblPeakText); this.grpDisplayPeakCursor.Location = new System.Drawing.Point(264, 8); this.grpDisplayPeakCursor.Name = "grpDisplayPeakCursor"; this.grpDisplayPeakCursor.Size = new System.Drawing.Size(136, 96); this.grpDisplayPeakCursor.TabIndex = 74; this.grpDisplayPeakCursor.TabStop = false; this.grpDisplayPeakCursor.Text = "Cursor/Peak Readout"; // // clrbtnPeakBackground // this.clrbtnPeakBackground.Automatic = "Automatic"; this.clrbtnPeakBackground.Color = System.Drawing.Color.Black; this.clrbtnPeakBackground.Image = null; this.clrbtnPeakBackground.Location = new System.Drawing.Point(80, 56); this.clrbtnPeakBackground.MoreColors = "More Colors..."; this.clrbtnPeakBackground.Name = "clrbtnPeakBackground"; this.clrbtnPeakBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnPeakBackground.TabIndex = 73; this.clrbtnPeakBackground.Changed += new System.EventHandler(this.clrbtnPeakBackground_Changed); // // lblPeakBackground // this.lblPeakBackground.Image = null; this.lblPeakBackground.Location = new System.Drawing.Point(8, 56); this.lblPeakBackground.Name = "lblPeakBackground"; this.lblPeakBackground.Size = new System.Drawing.Size(72, 24); this.lblPeakBackground.TabIndex = 72; this.lblPeakBackground.Text = "Background:"; // // clrbtnPeakText // this.clrbtnPeakText.Automatic = "Automatic"; this.clrbtnPeakText.Color = System.Drawing.Color.DodgerBlue; this.clrbtnPeakText.Image = null; this.clrbtnPeakText.Location = new System.Drawing.Point(80, 24); this.clrbtnPeakText.MoreColors = "More Colors..."; this.clrbtnPeakText.Name = "clrbtnPeakText"; this.clrbtnPeakText.Size = new System.Drawing.Size(40, 23); this.clrbtnPeakText.TabIndex = 71; this.clrbtnPeakText.Changed += new System.EventHandler(this.clrbtnPeakText_Changed); // // lblPeakText // this.lblPeakText.Image = null; this.lblPeakText.Location = new System.Drawing.Point(8, 24); this.lblPeakText.Name = "lblPeakText"; this.lblPeakText.Size = new System.Drawing.Size(64, 24); this.lblPeakText.TabIndex = 65; this.lblPeakText.Text = "Peak Text:"; // // lblDisplayDataLineColor // this.lblDisplayDataLineColor.Image = null; this.lblDisplayDataLineColor.Location = new System.Drawing.Point(136, 48); this.lblDisplayDataLineColor.Name = "lblDisplayDataLineColor"; this.lblDisplayDataLineColor.Size = new System.Drawing.Size(64, 24); this.lblDisplayDataLineColor.TabIndex = 41; this.lblDisplayDataLineColor.Text = "Data Line:"; // // lblDisplayTextColor // this.lblDisplayTextColor.Image = null; this.lblDisplayTextColor.Location = new System.Drawing.Point(136, 16); this.lblDisplayTextColor.Name = "lblDisplayTextColor"; this.lblDisplayTextColor.Size = new System.Drawing.Size(64, 24); this.lblDisplayTextColor.TabIndex = 39; this.lblDisplayTextColor.Text = "Text:"; // // lblDisplayZeroLineColor // this.lblDisplayZeroLineColor.Image = null; this.lblDisplayZeroLineColor.Location = new System.Drawing.Point(16, 80); this.lblDisplayZeroLineColor.Name = "lblDisplayZeroLineColor"; this.lblDisplayZeroLineColor.Size = new System.Drawing.Size(72, 24); this.lblDisplayZeroLineColor.TabIndex = 36; this.lblDisplayZeroLineColor.Text = "Zero Line:"; // // lblDisplayGridColor // this.lblDisplayGridColor.Image = null; this.lblDisplayGridColor.Location = new System.Drawing.Point(16, 48); this.lblDisplayGridColor.Name = "lblDisplayGridColor"; this.lblDisplayGridColor.Size = new System.Drawing.Size(72, 24); this.lblDisplayGridColor.TabIndex = 35; this.lblDisplayGridColor.Text = "Grid:"; // // lblDisplayBackgroundColor // this.lblDisplayBackgroundColor.Image = null; this.lblDisplayBackgroundColor.Location = new System.Drawing.Point(16, 16); this.lblDisplayBackgroundColor.Name = "lblDisplayBackgroundColor"; this.lblDisplayBackgroundColor.Size = new System.Drawing.Size(72, 24); this.lblDisplayBackgroundColor.TabIndex = 34; this.lblDisplayBackgroundColor.Text = "Background:"; // // clrbtnDataLine // this.clrbtnDataLine.Automatic = "Automatic"; this.clrbtnDataLine.Color = System.Drawing.Color.LightGreen; this.clrbtnDataLine.Image = null; this.clrbtnDataLine.Location = new System.Drawing.Point(208, 48); this.clrbtnDataLine.MoreColors = "More Colors..."; this.clrbtnDataLine.Name = "clrbtnDataLine"; this.clrbtnDataLine.Size = new System.Drawing.Size(40, 23); this.clrbtnDataLine.TabIndex = 73; this.clrbtnDataLine.Changed += new System.EventHandler(this.clrbtnDataLine_Changed); // // clrbtnText // this.clrbtnText.Automatic = "Automatic"; this.clrbtnText.Color = System.Drawing.Color.Yellow; this.clrbtnText.Image = null; this.clrbtnText.Location = new System.Drawing.Point(208, 16); this.clrbtnText.MoreColors = "More Colors..."; this.clrbtnText.Name = "clrbtnText"; this.clrbtnText.Size = new System.Drawing.Size(40, 23); this.clrbtnText.TabIndex = 72; this.clrbtnText.Changed += new System.EventHandler(this.clrbtnText_Changed); // // clrbtnZeroLine // this.clrbtnZeroLine.Automatic = "Automatic"; this.clrbtnZeroLine.Color = System.Drawing.Color.Red; this.clrbtnZeroLine.Image = null; this.clrbtnZeroLine.Location = new System.Drawing.Point(88, 80); this.clrbtnZeroLine.MoreColors = "More Colors..."; this.clrbtnZeroLine.Name = "clrbtnZeroLine"; this.clrbtnZeroLine.Size = new System.Drawing.Size(40, 23); this.clrbtnZeroLine.TabIndex = 70; this.clrbtnZeroLine.Changed += new System.EventHandler(this.clrbtnZeroLine_Changed); // // clrbtnGrid // this.clrbtnGrid.Automatic = "Automatic"; this.clrbtnGrid.Color = System.Drawing.Color.Purple; this.clrbtnGrid.Image = null; this.clrbtnGrid.Location = new System.Drawing.Point(88, 48); this.clrbtnGrid.MoreColors = "More Colors..."; this.clrbtnGrid.Name = "clrbtnGrid"; this.clrbtnGrid.Size = new System.Drawing.Size(40, 23); this.clrbtnGrid.TabIndex = 69; this.clrbtnGrid.Changed += new System.EventHandler(this.clrbtnGrid_Changed); // // clrbtnBackground // this.clrbtnBackground.Automatic = "Automatic"; this.clrbtnBackground.Color = System.Drawing.Color.Black; this.clrbtnBackground.Image = null; this.clrbtnBackground.Location = new System.Drawing.Point(88, 16); this.clrbtnBackground.MoreColors = "More Colors..."; this.clrbtnBackground.Name = "clrbtnBackground"; this.clrbtnBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnBackground.TabIndex = 68; this.clrbtnBackground.Changed += new System.EventHandler(this.clrbtnBackground_Changed); // // lblDisplayLineWidth // this.lblDisplayLineWidth.Image = null; this.lblDisplayLineWidth.Location = new System.Drawing.Point(136, 80); this.lblDisplayLineWidth.Name = "lblDisplayLineWidth"; this.lblDisplayLineWidth.Size = new System.Drawing.Size(64, 24); this.lblDisplayLineWidth.TabIndex = 43; this.lblDisplayLineWidth.Text = "Line Width:"; // // udDisplayLineWidth // this.udDisplayLineWidth.DecimalPlaces = 1; this.udDisplayLineWidth.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udDisplayLineWidth.Location = new System.Drawing.Point(208, 80); this.udDisplayLineWidth.Maximum = new System.Decimal(new int[] { 50, 0, 0, 65536}); this.udDisplayLineWidth.Minimum = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udDisplayLineWidth.Name = "udDisplayLineWidth"; this.udDisplayLineWidth.Size = new System.Drawing.Size(40, 20); this.udDisplayLineWidth.TabIndex = 42; this.udDisplayLineWidth.Value = new System.Decimal(new int[] { 10, 0, 0, 65536}); this.udDisplayLineWidth.LostFocus += new System.EventHandler(this.udDisplayLineWidth_LostFocus); this.udDisplayLineWidth.ValueChanged += new System.EventHandler(this.udDisplayLineWidth_ValueChanged); // // tpAppearanceGeneral // this.tpAppearanceGeneral.Controls.Add(this.lblGenBackground); this.tpAppearanceGeneral.Controls.Add(this.clrbtnGenBackground); this.tpAppearanceGeneral.Controls.Add(this.grpAppearanceBand); this.tpAppearanceGeneral.Controls.Add(this.grpAppearanceVFO); this.tpAppearanceGeneral.Controls.Add(this.clrbtnBtnSel); this.tpAppearanceGeneral.Controls.Add(this.lblAppearanceGenBtnSel); this.tpAppearanceGeneral.Location = new System.Drawing.Point(4, 22); this.tpAppearanceGeneral.Name = "tpAppearanceGeneral"; this.tpAppearanceGeneral.Size = new System.Drawing.Size(592, 318); this.tpAppearanceGeneral.TabIndex = 0; this.tpAppearanceGeneral.Text = "General"; // // lblGenBackground // this.lblGenBackground.Image = null; this.lblGenBackground.Location = new System.Drawing.Point(16, 96); this.lblGenBackground.Name = "lblGenBackground"; this.lblGenBackground.Size = new System.Drawing.Size(72, 32); this.lblGenBackground.TabIndex = 84; this.lblGenBackground.Text = "Overall Background:"; this.lblGenBackground.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.lblGenBackground.Visible = false; // // clrbtnGenBackground // this.clrbtnGenBackground.Automatic = "Automatic"; this.clrbtnGenBackground.Color = System.Drawing.SystemColors.ControlDark; this.clrbtnGenBackground.Image = null; this.clrbtnGenBackground.Location = new System.Drawing.Point(88, 96); this.clrbtnGenBackground.MoreColors = "More Colors..."; this.clrbtnGenBackground.Name = "clrbtnGenBackground"; this.clrbtnGenBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnGenBackground.TabIndex = 83; this.clrbtnGenBackground.Visible = false; this.clrbtnGenBackground.Changed += new System.EventHandler(this.clrbtnGenBackground_Changed); // // grpAppearanceBand // this.grpAppearanceBand.Controls.Add(this.clrbtnBandBackground); this.grpAppearanceBand.Controls.Add(this.lblBandBackground); this.grpAppearanceBand.Controls.Add(this.clrbtnBandLight); this.grpAppearanceBand.Controls.Add(this.clrbtnBandDark); this.grpAppearanceBand.Controls.Add(this.lblBandLight); this.grpAppearanceBand.Controls.Add(this.lblBandDark); this.grpAppearanceBand.Controls.Add(this.clrbtnOutOfBand); this.grpAppearanceBand.Controls.Add(this.lblOutOfBand); this.grpAppearanceBand.Location = new System.Drawing.Point(296, 8); this.grpAppearanceBand.Name = "grpAppearanceBand"; this.grpAppearanceBand.Size = new System.Drawing.Size(144, 152); this.grpAppearanceBand.TabIndex = 74; this.grpAppearanceBand.TabStop = false; this.grpAppearanceBand.Text = "Band Data"; // // clrbtnBandBackground // this.clrbtnBandBackground.Automatic = "Automatic"; this.clrbtnBandBackground.Color = System.Drawing.Color.Black; this.clrbtnBandBackground.Image = null; this.clrbtnBandBackground.Location = new System.Drawing.Point(88, 120); this.clrbtnBandBackground.MoreColors = "More Colors..."; this.clrbtnBandBackground.Name = "clrbtnBandBackground"; this.clrbtnBandBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnBandBackground.TabIndex = 75; this.clrbtnBandBackground.Changed += new System.EventHandler(this.clrbtnBandBackground_Changed); // // lblBandBackground // this.lblBandBackground.Image = null; this.lblBandBackground.Location = new System.Drawing.Point(16, 120); this.lblBandBackground.Name = "lblBandBackground"; this.lblBandBackground.Size = new System.Drawing.Size(72, 24); this.lblBandBackground.TabIndex = 74; this.lblBandBackground.Text = "Background:"; // // clrbtnBandLight // this.clrbtnBandLight.Automatic = "Automatic"; this.clrbtnBandLight.Color = System.Drawing.Color.Lime; this.clrbtnBandLight.Image = null; this.clrbtnBandLight.Location = new System.Drawing.Point(88, 56); this.clrbtnBandLight.MoreColors = "More Colors..."; this.clrbtnBandLight.Name = "clrbtnBandLight"; this.clrbtnBandLight.Size = new System.Drawing.Size(40, 23); this.clrbtnBandLight.TabIndex = 70; this.clrbtnBandLight.Changed += new System.EventHandler(this.clrbtnBandLight_Changed); // // clrbtnBandDark // this.clrbtnBandDark.Automatic = "Automatic"; this.clrbtnBandDark.Color = System.Drawing.Color.Green; this.clrbtnBandDark.Image = null; this.clrbtnBandDark.Location = new System.Drawing.Point(88, 24); this.clrbtnBandDark.MoreColors = "More Colors..."; this.clrbtnBandDark.Name = "clrbtnBandDark"; this.clrbtnBandDark.Size = new System.Drawing.Size(40, 23); this.clrbtnBandDark.TabIndex = 69; this.clrbtnBandDark.Changed += new System.EventHandler(this.clrbtnBandDark_Changed); // // lblBandLight // this.lblBandLight.Image = null; this.lblBandLight.Location = new System.Drawing.Point(16, 56); this.lblBandLight.Name = "lblBandLight"; this.lblBandLight.Size = new System.Drawing.Size(64, 24); this.lblBandLight.TabIndex = 63; this.lblBandLight.Text = "Active:"; // // lblBandDark // this.lblBandDark.Image = null; this.lblBandDark.Location = new System.Drawing.Point(16, 24); this.lblBandDark.Name = "lblBandDark"; this.lblBandDark.Size = new System.Drawing.Size(64, 24); this.lblBandDark.TabIndex = 61; this.lblBandDark.Text = "Inactive:"; // // clrbtnOutOfBand // this.clrbtnOutOfBand.Automatic = "Automatic"; this.clrbtnOutOfBand.Color = System.Drawing.Color.DimGray; this.clrbtnOutOfBand.Image = null; this.clrbtnOutOfBand.Location = new System.Drawing.Point(88, 88); this.clrbtnOutOfBand.MoreColors = "More Colors..."; this.clrbtnOutOfBand.Name = "clrbtnOutOfBand"; this.clrbtnOutOfBand.Size = new System.Drawing.Size(40, 23); this.clrbtnOutOfBand.TabIndex = 73; this.clrbtnOutOfBand.Changed += new System.EventHandler(this.clrbtnOutOfBand_Changed); // // lblOutOfBand // this.lblOutOfBand.Image = null; this.lblOutOfBand.Location = new System.Drawing.Point(16, 88); this.lblOutOfBand.Name = "lblOutOfBand"; this.lblOutOfBand.Size = new System.Drawing.Size(72, 24); this.lblOutOfBand.TabIndex = 72; this.lblOutOfBand.Text = "Out Of Band:"; // // grpAppearanceVFO // this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOBackground); this.grpAppearanceVFO.Controls.Add(this.lblVFOBackground); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOSmallColor); this.grpAppearanceVFO.Controls.Add(this.lblVFOSmallColor); this.grpAppearanceVFO.Controls.Add(this.chkVFOSmallLSD); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFOLight); this.grpAppearanceVFO.Controls.Add(this.clrbtnVFODark); this.grpAppearanceVFO.Controls.Add(this.lblVFOPowerOn); this.grpAppearanceVFO.Controls.Add(this.lblVFOPowerOff); this.grpAppearanceVFO.Location = new System.Drawing.Point(144, 8); this.grpAppearanceVFO.Name = "grpAppearanceVFO"; this.grpAppearanceVFO.Size = new System.Drawing.Size(144, 184); this.grpAppearanceVFO.TabIndex = 39; this.grpAppearanceVFO.TabStop = false; this.grpAppearanceVFO.Text = "VFO"; // // clrbtnVFOBackground // this.clrbtnVFOBackground.Automatic = "Automatic"; this.clrbtnVFOBackground.Color = System.Drawing.Color.Black; this.clrbtnVFOBackground.Image = null; this.clrbtnVFOBackground.Location = new System.Drawing.Point(88, 88); this.clrbtnVFOBackground.MoreColors = "More Colors..."; this.clrbtnVFOBackground.Name = "clrbtnVFOBackground"; this.clrbtnVFOBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOBackground.TabIndex = 73; this.clrbtnVFOBackground.Changed += new System.EventHandler(this.clrbtnVFOBackground_Changed); // // lblVFOBackground // this.lblVFOBackground.Image = null; this.lblVFOBackground.Location = new System.Drawing.Point(16, 88); this.lblVFOBackground.Name = "lblVFOBackground"; this.lblVFOBackground.Size = new System.Drawing.Size(72, 24); this.lblVFOBackground.TabIndex = 72; this.lblVFOBackground.Text = "Background:"; // // clrbtnVFOSmallColor // this.clrbtnVFOSmallColor.Automatic = "Automatic"; this.clrbtnVFOSmallColor.Color = System.Drawing.Color.OrangeRed; this.clrbtnVFOSmallColor.Image = null; this.clrbtnVFOSmallColor.Location = new System.Drawing.Point(88, 152); this.clrbtnVFOSmallColor.MoreColors = "More Colors..."; this.clrbtnVFOSmallColor.Name = "clrbtnVFOSmallColor"; this.clrbtnVFOSmallColor.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOSmallColor.TabIndex = 71; this.clrbtnVFOSmallColor.Changed += new System.EventHandler(this.clrbtnVFOSmallColor_Changed); // // lblVFOSmallColor // this.lblVFOSmallColor.Image = null; this.lblVFOSmallColor.Location = new System.Drawing.Point(16, 152); this.lblVFOSmallColor.Name = "lblVFOSmallColor"; this.lblVFOSmallColor.Size = new System.Drawing.Size(72, 24); this.lblVFOSmallColor.TabIndex = 70; this.lblVFOSmallColor.Text = "Small Color:"; // // chkVFOSmallLSD // this.chkVFOSmallLSD.Checked = true; this.chkVFOSmallLSD.CheckState = System.Windows.Forms.CheckState.Checked; this.chkVFOSmallLSD.Image = null; this.chkVFOSmallLSD.Location = new System.Drawing.Point(16, 120); this.chkVFOSmallLSD.Name = "chkVFOSmallLSD"; this.chkVFOSmallLSD.TabIndex = 69; this.chkVFOSmallLSD.Text = "Small 3 Digits"; this.chkVFOSmallLSD.CheckedChanged += new System.EventHandler(this.chkVFOSmallLSD_CheckedChanged); // // clrbtnVFOLight // this.clrbtnVFOLight.Automatic = "Automatic"; this.clrbtnVFOLight.Color = System.Drawing.Color.Yellow; this.clrbtnVFOLight.Image = null; this.clrbtnVFOLight.Location = new System.Drawing.Point(88, 56); this.clrbtnVFOLight.MoreColors = "More Colors..."; this.clrbtnVFOLight.Name = "clrbtnVFOLight"; this.clrbtnVFOLight.Size = new System.Drawing.Size(40, 23); this.clrbtnVFOLight.TabIndex = 68; this.clrbtnVFOLight.Changed += new System.EventHandler(this.clrbtnVFOLight_Changed); // // clrbtnVFODark // this.clrbtnVFODark.Automatic = "Automatic"; this.clrbtnVFODark.Color = System.Drawing.Color.Olive; this.clrbtnVFODark.Image = null; this.clrbtnVFODark.Location = new System.Drawing.Point(88, 24); this.clrbtnVFODark.MoreColors = "More Colors..."; this.clrbtnVFODark.Name = "clrbtnVFODark"; this.clrbtnVFODark.Size = new System.Drawing.Size(40, 23); this.clrbtnVFODark.TabIndex = 67; this.clrbtnVFODark.Changed += new System.EventHandler(this.clrbtnVFODark_Changed); // // lblVFOPowerOn // this.lblVFOPowerOn.Image = null; this.lblVFOPowerOn.Location = new System.Drawing.Point(16, 56); this.lblVFOPowerOn.Name = "lblVFOPowerOn"; this.lblVFOPowerOn.Size = new System.Drawing.Size(64, 24); this.lblVFOPowerOn.TabIndex = 59; this.lblVFOPowerOn.Text = "Active:"; // // lblVFOPowerOff // this.lblVFOPowerOff.Image = null; this.lblVFOPowerOff.Location = new System.Drawing.Point(16, 24); this.lblVFOPowerOff.Name = "lblVFOPowerOff"; this.lblVFOPowerOff.Size = new System.Drawing.Size(64, 24); this.lblVFOPowerOff.TabIndex = 57; this.lblVFOPowerOff.Text = "Inactive:"; // // clrbtnBtnSel // this.clrbtnBtnSel.Automatic = "Automatic"; this.clrbtnBtnSel.Color = System.Drawing.Color.Yellow; this.clrbtnBtnSel.Image = null; this.clrbtnBtnSel.Location = new System.Drawing.Point(88, 16); this.clrbtnBtnSel.MoreColors = "More Colors..."; this.clrbtnBtnSel.Name = "clrbtnBtnSel"; this.clrbtnBtnSel.Size = new System.Drawing.Size(40, 23); this.clrbtnBtnSel.TabIndex = 66; this.clrbtnBtnSel.Changed += new System.EventHandler(this.clrbtnBtnSel_Changed); // // lblAppearanceGenBtnSel // this.lblAppearanceGenBtnSel.Image = null; this.lblAppearanceGenBtnSel.Location = new System.Drawing.Point(16, 16); this.lblAppearanceGenBtnSel.Name = "lblAppearanceGenBtnSel"; this.lblAppearanceGenBtnSel.Size = new System.Drawing.Size(64, 32); this.lblAppearanceGenBtnSel.TabIndex = 55; this.lblAppearanceGenBtnSel.Text = "Button Selected:"; // // tpAppearanceMeter // this.tpAppearanceMeter.Controls.Add(this.labelTS2); this.tpAppearanceMeter.Controls.Add(this.clrbtnMeterDigBackground); this.tpAppearanceMeter.Controls.Add(this.lblMeterDigitalText); this.tpAppearanceMeter.Controls.Add(this.clrbtnMeterDigText); this.tpAppearanceMeter.Controls.Add(this.grpMeterEdge); this.tpAppearanceMeter.Controls.Add(this.grpAppearanceMeter); this.tpAppearanceMeter.Controls.Add(this.lblMeterType); this.tpAppearanceMeter.Controls.Add(this.comboMeterType); this.tpAppearanceMeter.Location = new System.Drawing.Point(4, 22); this.tpAppearanceMeter.Name = "tpAppearanceMeter"; this.tpAppearanceMeter.Size = new System.Drawing.Size(592, 318); this.tpAppearanceMeter.TabIndex = 2; this.tpAppearanceMeter.Text = "Meter"; // // labelTS2 // this.labelTS2.Image = null; this.labelTS2.Location = new System.Drawing.Point(24, 80); this.labelTS2.Name = "labelTS2"; this.labelTS2.Size = new System.Drawing.Size(72, 32); this.labelTS2.TabIndex = 83; this.labelTS2.Text = "Digital Background:"; // // clrbtnMeterDigBackground // this.clrbtnMeterDigBackground.Automatic = "Automatic"; this.clrbtnMeterDigBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterDigBackground.Image = null; this.clrbtnMeterDigBackground.Location = new System.Drawing.Point(96, 80); this.clrbtnMeterDigBackground.MoreColors = "More Colors..."; this.clrbtnMeterDigBackground.Name = "clrbtnMeterDigBackground"; this.clrbtnMeterDigBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterDigBackground.TabIndex = 84; this.clrbtnMeterDigBackground.Changed += new System.EventHandler(this.clrbtnMeterDigBackground_Changed); // // lblMeterDigitalText // this.lblMeterDigitalText.Image = null; this.lblMeterDigitalText.Location = new System.Drawing.Point(24, 48); this.lblMeterDigitalText.Name = "lblMeterDigitalText"; this.lblMeterDigitalText.Size = new System.Drawing.Size(72, 24); this.lblMeterDigitalText.TabIndex = 81; this.lblMeterDigitalText.Text = "Digital Text:"; // // clrbtnMeterDigText // this.clrbtnMeterDigText.Automatic = "Automatic"; this.clrbtnMeterDigText.Color = System.Drawing.Color.Yellow; this.clrbtnMeterDigText.Image = null; this.clrbtnMeterDigText.Location = new System.Drawing.Point(96, 48); this.clrbtnMeterDigText.MoreColors = "More Colors..."; this.clrbtnMeterDigText.Name = "clrbtnMeterDigText"; this.clrbtnMeterDigText.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterDigText.TabIndex = 82; this.clrbtnMeterDigText.Changed += new System.EventHandler(this.clrbtnMeterDigText_Changed); // // grpMeterEdge // this.grpMeterEdge.Controls.Add(this.clrbtnEdgeIndicator); this.grpMeterEdge.Controls.Add(this.labelTS1); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeBackground); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeBackground); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeHigh); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeHigh); this.grpMeterEdge.Controls.Add(this.lblMeterEdgeLow); this.grpMeterEdge.Controls.Add(this.clrbtnMeterEdgeLow); this.grpMeterEdge.Location = new System.Drawing.Point(312, 8); this.grpMeterEdge.Name = "grpMeterEdge"; this.grpMeterEdge.Size = new System.Drawing.Size(136, 160); this.grpMeterEdge.TabIndex = 80; this.grpMeterEdge.TabStop = false; this.grpMeterEdge.Text = "Edge Style"; // // clrbtnEdgeIndicator // this.clrbtnEdgeIndicator.Automatic = "Automatic"; this.clrbtnEdgeIndicator.Color = System.Drawing.Color.Yellow; this.clrbtnEdgeIndicator.ForeColor = System.Drawing.Color.Black; this.clrbtnEdgeIndicator.Image = null; this.clrbtnEdgeIndicator.Location = new System.Drawing.Point(80, 120); this.clrbtnEdgeIndicator.MoreColors = "More Colors..."; this.clrbtnEdgeIndicator.Name = "clrbtnEdgeIndicator"; this.clrbtnEdgeIndicator.Size = new System.Drawing.Size(40, 23); this.clrbtnEdgeIndicator.TabIndex = 79; this.clrbtnEdgeIndicator.Changed += new System.EventHandler(this.clrbtnEdgeIndicator_Changed); // // labelTS1 // this.labelTS1.Image = null; this.labelTS1.Location = new System.Drawing.Point(8, 120); this.labelTS1.Name = "labelTS1"; this.labelTS1.Size = new System.Drawing.Size(56, 24); this.labelTS1.TabIndex = 78; this.labelTS1.Text = "Indicator:"; // // clrbtnMeterEdgeBackground // this.clrbtnMeterEdgeBackground.Automatic = "Automatic"; this.clrbtnMeterEdgeBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterEdgeBackground.ForeColor = System.Drawing.Color.Black; this.clrbtnMeterEdgeBackground.Image = null; this.clrbtnMeterEdgeBackground.Location = new System.Drawing.Point(80, 88); this.clrbtnMeterEdgeBackground.MoreColors = "More Colors..."; this.clrbtnMeterEdgeBackground.Name = "clrbtnMeterEdgeBackground"; this.clrbtnMeterEdgeBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeBackground.TabIndex = 77; this.clrbtnMeterEdgeBackground.Changed += new System.EventHandler(this.clrbtnMeterEdgeBackground_Changed); // // lblMeterEdgeBackground // this.lblMeterEdgeBackground.Image = null; this.lblMeterEdgeBackground.Location = new System.Drawing.Point(8, 88); this.lblMeterEdgeBackground.Name = "lblMeterEdgeBackground"; this.lblMeterEdgeBackground.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeBackground.TabIndex = 76; this.lblMeterEdgeBackground.Text = "Background:"; // // clrbtnMeterEdgeHigh // this.clrbtnMeterEdgeHigh.Automatic = "Automatic"; this.clrbtnMeterEdgeHigh.Color = System.Drawing.Color.Red; this.clrbtnMeterEdgeHigh.Image = null; this.clrbtnMeterEdgeHigh.Location = new System.Drawing.Point(80, 56); this.clrbtnMeterEdgeHigh.MoreColors = "More Colors..."; this.clrbtnMeterEdgeHigh.Name = "clrbtnMeterEdgeHigh"; this.clrbtnMeterEdgeHigh.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeHigh.TabIndex = 75; this.clrbtnMeterEdgeHigh.Changed += new System.EventHandler(this.clrbtnMeterEdgeHigh_Changed); // // lblMeterEdgeHigh // this.lblMeterEdgeHigh.Image = null; this.lblMeterEdgeHigh.Location = new System.Drawing.Point(8, 56); this.lblMeterEdgeHigh.Name = "lblMeterEdgeHigh"; this.lblMeterEdgeHigh.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeHigh.TabIndex = 53; this.lblMeterEdgeHigh.Text = "High Color:"; // // lblMeterEdgeLow // this.lblMeterEdgeLow.Image = null; this.lblMeterEdgeLow.Location = new System.Drawing.Point(8, 24); this.lblMeterEdgeLow.Name = "lblMeterEdgeLow"; this.lblMeterEdgeLow.Size = new System.Drawing.Size(72, 24); this.lblMeterEdgeLow.TabIndex = 51; this.lblMeterEdgeLow.Text = "Low Color:"; // // clrbtnMeterEdgeLow // this.clrbtnMeterEdgeLow.Automatic = "Automatic"; this.clrbtnMeterEdgeLow.Color = System.Drawing.Color.White; this.clrbtnMeterEdgeLow.Image = null; this.clrbtnMeterEdgeLow.Location = new System.Drawing.Point(80, 24); this.clrbtnMeterEdgeLow.MoreColors = "More Colors..."; this.clrbtnMeterEdgeLow.Name = "clrbtnMeterEdgeLow"; this.clrbtnMeterEdgeLow.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterEdgeLow.TabIndex = 74; this.clrbtnMeterEdgeLow.Changed += new System.EventHandler(this.clrbtnMeterEdgeLow_Changed); // // grpAppearanceMeter // this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterBackground); this.grpAppearanceMeter.Controls.Add(this.lblMeterBackground); this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterRight); this.grpAppearanceMeter.Controls.Add(this.lblAppearanceMeterRight); this.grpAppearanceMeter.Controls.Add(this.lblAppearanceMeterLeft); this.grpAppearanceMeter.Controls.Add(this.clrbtnMeterLeft); this.grpAppearanceMeter.Location = new System.Drawing.Point(168, 8); this.grpAppearanceMeter.Name = "grpAppearanceMeter"; this.grpAppearanceMeter.Size = new System.Drawing.Size(136, 120); this.grpAppearanceMeter.TabIndex = 38; this.grpAppearanceMeter.TabStop = false; this.grpAppearanceMeter.Text = "Original Style"; // // clrbtnMeterBackground // this.clrbtnMeterBackground.Automatic = "Automatic"; this.clrbtnMeterBackground.Color = System.Drawing.Color.Black; this.clrbtnMeterBackground.Image = null; this.clrbtnMeterBackground.Location = new System.Drawing.Point(80, 88); this.clrbtnMeterBackground.MoreColors = "More Colors..."; this.clrbtnMeterBackground.Name = "clrbtnMeterBackground"; this.clrbtnMeterBackground.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterBackground.TabIndex = 77; this.clrbtnMeterBackground.Changed += new System.EventHandler(this.clrbtnMeterBackground_Changed); // // lblMeterBackground // this.lblMeterBackground.Image = null; this.lblMeterBackground.Location = new System.Drawing.Point(8, 88); this.lblMeterBackground.Name = "lblMeterBackground"; this.lblMeterBackground.Size = new System.Drawing.Size(72, 24); this.lblMeterBackground.TabIndex = 76; this.lblMeterBackground.Text = "Background:"; // // clrbtnMeterRight // this.clrbtnMeterRight.Automatic = "Automatic"; this.clrbtnMeterRight.Color = System.Drawing.Color.Lime; this.clrbtnMeterRight.Image = null; this.clrbtnMeterRight.Location = new System.Drawing.Point(80, 56); this.clrbtnMeterRight.MoreColors = "More Colors..."; this.clrbtnMeterRight.Name = "clrbtnMeterRight"; this.clrbtnMeterRight.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterRight.TabIndex = 75; this.clrbtnMeterRight.Changed += new System.EventHandler(this.clrbtnMeterRight_Changed); // // lblAppearanceMeterRight // this.lblAppearanceMeterRight.Image = null; this.lblAppearanceMeterRight.Location = new System.Drawing.Point(8, 56); this.lblAppearanceMeterRight.Name = "lblAppearanceMeterRight"; this.lblAppearanceMeterRight.Size = new System.Drawing.Size(72, 24); this.lblAppearanceMeterRight.TabIndex = 53; this.lblAppearanceMeterRight.Text = "Right Color:"; // // lblAppearanceMeterLeft // this.lblAppearanceMeterLeft.Image = null; this.lblAppearanceMeterLeft.Location = new System.Drawing.Point(8, 24); this.lblAppearanceMeterLeft.Name = "lblAppearanceMeterLeft"; this.lblAppearanceMeterLeft.Size = new System.Drawing.Size(72, 24); this.lblAppearanceMeterLeft.TabIndex = 51; this.lblAppearanceMeterLeft.Text = "Left Color:"; // // clrbtnMeterLeft // this.clrbtnMeterLeft.Automatic = "Automatic"; this.clrbtnMeterLeft.Color = System.Drawing.Color.Green; this.clrbtnMeterLeft.Image = null; this.clrbtnMeterLeft.Location = new System.Drawing.Point(80, 24); this.clrbtnMeterLeft.MoreColors = "More Colors..."; this.clrbtnMeterLeft.Name = "clrbtnMeterLeft"; this.clrbtnMeterLeft.Size = new System.Drawing.Size(40, 23); this.clrbtnMeterLeft.TabIndex = 74; this.clrbtnMeterLeft.Changed += new System.EventHandler(this.clrbtnMeterLeft_Changed); // // lblMeterType // this.lblMeterType.Image = null; this.lblMeterType.Location = new System.Drawing.Point(16, 16); this.lblMeterType.Name = "lblMeterType"; this.lblMeterType.Size = new System.Drawing.Size(64, 24); this.lblMeterType.TabIndex = 79; this.lblMeterType.Text = "Meter Type:"; // // comboMeterType // this.comboMeterType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboMeterType.DropDownWidth = 80; this.comboMeterType.Items.AddRange(new object[] { "Original", "Edge"}); this.comboMeterType.Location = new System.Drawing.Point(80, 16); this.comboMeterType.Name = "comboMeterType"; this.comboMeterType.Size = new System.Drawing.Size(80, 20); this.comboMeterType.TabIndex = 78; this.toolTip1.SetToolTip(this.comboMeterType, "Changes the appearance of the Multimeter on the front panel."); this.comboMeterType.SelectedIndexChanged += new System.EventHandler(this.comboMeterType_SelectedIndexChanged); // // tpPowerAmplifier // this.tpPowerAmplifier.Controls.Add(this.chkPAExpert); this.tpPowerAmplifier.Controls.Add(this.grpPABandOffset); this.tpPowerAmplifier.Controls.Add(this.rtxtPACalReq); this.tpPowerAmplifier.Controls.Add(this.chkPANewCal); this.tpPowerAmplifier.Controls.Add(this.grpPAGainByBand); this.tpPowerAmplifier.Location = new System.Drawing.Point(4, 22); this.tpPowerAmplifier.Name = "tpPowerAmplifier"; this.tpPowerAmplifier.Size = new System.Drawing.Size(584, 286); this.tpPowerAmplifier.TabIndex = 8; this.tpPowerAmplifier.Text = "PA Settings"; // // chkPAExpert // this.chkPAExpert.Location = new System.Drawing.Point(280, 224); this.chkPAExpert.Name = "chkPAExpert"; this.chkPAExpert.Size = new System.Drawing.Size(56, 24); this.chkPAExpert.TabIndex = 85; this.chkPAExpert.Text = "Expert"; this.chkPAExpert.Visible = false; this.chkPAExpert.CheckedChanged += new System.EventHandler(this.chkPAExpert_CheckedChanged); // // grpPABandOffset // this.grpPABandOffset.Controls.Add(this.lblPABandOffset10); this.grpPABandOffset.Controls.Add(this.lblPABandOffset12); this.grpPABandOffset.Controls.Add(this.lblPABandOffset15); this.grpPABandOffset.Controls.Add(this.lblPABandOffset17); this.grpPABandOffset.Controls.Add(this.lblPABandOffset20); this.grpPABandOffset.Controls.Add(this.lblPABandOffset30); this.grpPABandOffset.Controls.Add(this.lblPABandOffset40); this.grpPABandOffset.Controls.Add(this.lblPABandOffset60); this.grpPABandOffset.Controls.Add(this.lblPABandOffset80); this.grpPABandOffset.Controls.Add(this.lblPABandOffset160); this.grpPABandOffset.Controls.Add(this.udPAADC17); this.grpPABandOffset.Controls.Add(this.udPAADC15); this.grpPABandOffset.Controls.Add(this.udPAADC20); this.grpPABandOffset.Controls.Add(this.udPAADC12); this.grpPABandOffset.Controls.Add(this.udPAADC10); this.grpPABandOffset.Controls.Add(this.udPAADC160); this.grpPABandOffset.Controls.Add(this.udPAADC80); this.grpPABandOffset.Controls.Add(this.udPAADC60); this.grpPABandOffset.Controls.Add(this.udPAADC40); this.grpPABandOffset.Controls.Add(this.udPAADC30); this.grpPABandOffset.Location = new System.Drawing.Point(272, 8); this.grpPABandOffset.Name = "grpPABandOffset"; this.grpPABandOffset.Size = new System.Drawing.Size(208, 152); this.grpPABandOffset.TabIndex = 81; this.grpPABandOffset.TabStop = false; this.grpPABandOffset.Text = "ADC Offset (ADC bits)"; this.grpPABandOffset.Visible = false; // // lblPABandOffset10 // this.lblPABandOffset10.Image = null; this.lblPABandOffset10.Location = new System.Drawing.Point(104, 120); this.lblPABandOffset10.Name = "lblPABandOffset10"; this.lblPABandOffset10.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset10.TabIndex = 90; this.lblPABandOffset10.Text = "10m:"; // // lblPABandOffset12 // this.lblPABandOffset12.Image = null; this.lblPABandOffset12.Location = new System.Drawing.Point(104, 96); this.lblPABandOffset12.Name = "lblPABandOffset12"; this.lblPABandOffset12.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset12.TabIndex = 89; this.lblPABandOffset12.Text = "12m:"; // // lblPABandOffset15 // this.lblPABandOffset15.Image = null; this.lblPABandOffset15.Location = new System.Drawing.Point(104, 72); this.lblPABandOffset15.Name = "lblPABandOffset15"; this.lblPABandOffset15.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset15.TabIndex = 88; this.lblPABandOffset15.Text = "15m:"; // // lblPABandOffset17 // this.lblPABandOffset17.Image = null; this.lblPABandOffset17.Location = new System.Drawing.Point(104, 48); this.lblPABandOffset17.Name = "lblPABandOffset17"; this.lblPABandOffset17.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset17.TabIndex = 87; this.lblPABandOffset17.Text = "17m:"; // // lblPABandOffset20 // this.lblPABandOffset20.Image = null; this.lblPABandOffset20.Location = new System.Drawing.Point(104, 24); this.lblPABandOffset20.Name = "lblPABandOffset20"; this.lblPABandOffset20.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset20.TabIndex = 86; this.lblPABandOffset20.Text = "20m:"; // // lblPABandOffset30 // this.lblPABandOffset30.Image = null; this.lblPABandOffset30.Location = new System.Drawing.Point(16, 120); this.lblPABandOffset30.Name = "lblPABandOffset30"; this.lblPABandOffset30.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset30.TabIndex = 85; this.lblPABandOffset30.Text = "30m:"; // // lblPABandOffset40 // this.lblPABandOffset40.Image = null; this.lblPABandOffset40.Location = new System.Drawing.Point(16, 96); this.lblPABandOffset40.Name = "lblPABandOffset40"; this.lblPABandOffset40.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset40.TabIndex = 84; this.lblPABandOffset40.Text = "40m:"; // // lblPABandOffset60 // this.lblPABandOffset60.Image = null; this.lblPABandOffset60.Location = new System.Drawing.Point(16, 72); this.lblPABandOffset60.Name = "lblPABandOffset60"; this.lblPABandOffset60.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset60.TabIndex = 83; this.lblPABandOffset60.Text = "60m:"; // // lblPABandOffset80 // this.lblPABandOffset80.Image = null; this.lblPABandOffset80.Location = new System.Drawing.Point(16, 48); this.lblPABandOffset80.Name = "lblPABandOffset80"; this.lblPABandOffset80.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset80.TabIndex = 82; this.lblPABandOffset80.Text = "80m:"; // // lblPABandOffset160 // this.lblPABandOffset160.Image = null; this.lblPABandOffset160.Location = new System.Drawing.Point(16, 24); this.lblPABandOffset160.Name = "lblPABandOffset160"; this.lblPABandOffset160.Size = new System.Drawing.Size(40, 16); this.lblPABandOffset160.TabIndex = 81; this.lblPABandOffset160.Text = "160m:"; // // udPAADC17 // this.udPAADC17.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC17.Location = new System.Drawing.Point(144, 48); this.udPAADC17.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC17.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC17.Name = "udPAADC17"; this.udPAADC17.Size = new System.Drawing.Size(48, 20); this.udPAADC17.TabIndex = 77; this.udPAADC17.Value = new System.Decimal(new int[] { 108, 0, 0, 0}); this.udPAADC17.LostFocus += new System.EventHandler(this.udPAADC17_LostFocus); // // udPAADC15 // this.udPAADC15.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC15.Location = new System.Drawing.Point(144, 72); this.udPAADC15.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC15.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC15.Name = "udPAADC15"; this.udPAADC15.Size = new System.Drawing.Size(48, 20); this.udPAADC15.TabIndex = 78; this.udPAADC15.Value = new System.Decimal(new int[] { 108, 0, 0, 0}); this.udPAADC15.LostFocus += new System.EventHandler(this.udPAADC15_LostFocus); // // udPAADC20 // this.udPAADC20.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC20.Location = new System.Drawing.Point(144, 24); this.udPAADC20.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC20.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC20.Name = "udPAADC20"; this.udPAADC20.Size = new System.Drawing.Size(48, 20); this.udPAADC20.TabIndex = 76; this.udPAADC20.Value = new System.Decimal(new int[] { 108, 0, 0, 0}); this.udPAADC20.LostFocus += new System.EventHandler(this.udPAADC20_LostFocus); // // udPAADC12 // this.udPAADC12.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC12.Location = new System.Drawing.Point(144, 96); this.udPAADC12.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC12.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC12.Name = "udPAADC12"; this.udPAADC12.Size = new System.Drawing.Size(48, 20); this.udPAADC12.TabIndex = 79; this.udPAADC12.Value = new System.Decimal(new int[] { 110, 0, 0, 0}); this.udPAADC12.LostFocus += new System.EventHandler(this.udPAADC12_LostFocus); // // udPAADC10 // this.udPAADC10.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC10.Location = new System.Drawing.Point(144, 120); this.udPAADC10.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC10.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC10.Name = "udPAADC10"; this.udPAADC10.Size = new System.Drawing.Size(48, 20); this.udPAADC10.TabIndex = 80; this.udPAADC10.Value = new System.Decimal(new int[] { 111, 0, 0, 0}); this.udPAADC10.LostFocus += new System.EventHandler(this.udPAADC10_LostFocus); // // udPAADC160 // this.udPAADC160.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC160.Location = new System.Drawing.Point(56, 24); this.udPAADC160.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC160.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC160.Name = "udPAADC160"; this.udPAADC160.Size = new System.Drawing.Size(48, 20); this.udPAADC160.TabIndex = 71; this.udPAADC160.Value = new System.Decimal(new int[] { 107, 0, 0, 0}); this.udPAADC160.LostFocus += new System.EventHandler(this.udPAADC160_LostFocus); // // udPAADC80 // this.udPAADC80.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC80.Location = new System.Drawing.Point(56, 48); this.udPAADC80.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC80.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC80.Name = "udPAADC80"; this.udPAADC80.Size = new System.Drawing.Size(48, 20); this.udPAADC80.TabIndex = 72; this.udPAADC80.Value = new System.Decimal(new int[] { 107, 0, 0, 0}); this.udPAADC80.LostFocus += new System.EventHandler(this.udPAADC80_LostFocus); // // udPAADC60 // this.udPAADC60.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC60.Location = new System.Drawing.Point(56, 72); this.udPAADC60.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC60.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC60.Name = "udPAADC60"; this.udPAADC60.Size = new System.Drawing.Size(48, 20); this.udPAADC60.TabIndex = 73; this.udPAADC60.Value = new System.Decimal(new int[] { 107, 0, 0, 0}); this.udPAADC60.LostFocus += new System.EventHandler(this.udPAADC60_LostFocus); // // udPAADC40 // this.udPAADC40.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC40.Location = new System.Drawing.Point(56, 96); this.udPAADC40.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC40.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC40.Name = "udPAADC40"; this.udPAADC40.Size = new System.Drawing.Size(48, 20); this.udPAADC40.TabIndex = 74; this.udPAADC40.Value = new System.Decimal(new int[] { 106, 0, 0, 0}); this.udPAADC40.LostFocus += new System.EventHandler(this.udPAADC40_LostFocus); // // udPAADC30 // this.udPAADC30.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPAADC30.Location = new System.Drawing.Point(56, 120); this.udPAADC30.Maximum = new System.Decimal(new int[] { 255, 0, 0, 0}); this.udPAADC30.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udPAADC30.Name = "udPAADC30"; this.udPAADC30.Size = new System.Drawing.Size(48, 20); this.udPAADC30.TabIndex = 75; this.udPAADC30.Value = new System.Decimal(new int[] { 108, 0, 0, 0}); this.udPAADC30.LostFocus += new System.EventHandler(this.udPAADC30_LostFocus); // // rtxtPACalReq // this.rtxtPACalReq.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.rtxtPACalReq.Location = new System.Drawing.Point(272, 16); this.rtxtPACalReq.Name = "rtxtPACalReq"; this.rtxtPACalReq.ReadOnly = true; this.rtxtPACalReq.Size = new System.Drawing.Size(224, 112); this.rtxtPACalReq.TabIndex = 82; this.rtxtPACalReq.Text = "If a dummy load is available, we would recommend using the calibration button to " + "the left to get the best calibration possible for your environment/equipment. O" + "therwise, use the values provided with the unit."; // // chkPANewCal // this.chkPANewCal.Image = null; this.chkPANewCal.Location = new System.Drawing.Point(280, 176); this.chkPANewCal.Name = "chkPANewCal"; this.chkPANewCal.Size = new System.Drawing.Size(120, 32); this.chkPANewCal.TabIndex = 83; this.chkPANewCal.Text = "Use Advanced Calibration Routine"; this.chkPANewCal.CheckedChanged += new System.EventHandler(this.chkPANewCal_CheckedChanged); // // grpPAGainByBand // this.grpPAGainByBand.Controls.Add(this.udPACalPower); this.grpPAGainByBand.Controls.Add(this.lblPACalTarget); this.grpPAGainByBand.Controls.Add(this.chkPA10); this.grpPAGainByBand.Controls.Add(this.chkPA12); this.grpPAGainByBand.Controls.Add(this.chkPA15); this.grpPAGainByBand.Controls.Add(this.chkPA17); this.grpPAGainByBand.Controls.Add(this.chkPA20); this.grpPAGainByBand.Controls.Add(this.chkPA30); this.grpPAGainByBand.Controls.Add(this.chkPA40); this.grpPAGainByBand.Controls.Add(this.chkPA60); this.grpPAGainByBand.Controls.Add(this.chkPA80); this.grpPAGainByBand.Controls.Add(this.chkPA160); this.grpPAGainByBand.Controls.Add(this.radPACalSelBands); this.grpPAGainByBand.Controls.Add(this.radPACalAllBands); this.grpPAGainByBand.Controls.Add(this.btnPAGainReset); this.grpPAGainByBand.Controls.Add(this.btnPAGainCalibration); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand10); this.grpPAGainByBand.Controls.Add(this.udPAGain10); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand12); this.grpPAGainByBand.Controls.Add(this.udPAGain12); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand15); this.grpPAGainByBand.Controls.Add(this.udPAGain15); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand17); this.grpPAGainByBand.Controls.Add(this.udPAGain17); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand20); this.grpPAGainByBand.Controls.Add(this.udPAGain20); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand30); this.grpPAGainByBand.Controls.Add(this.udPAGain30); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand40); this.grpPAGainByBand.Controls.Add(this.udPAGain40); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand60); this.grpPAGainByBand.Controls.Add(this.udPAGain60); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand80); this.grpPAGainByBand.Controls.Add(this.udPAGain80); this.grpPAGainByBand.Controls.Add(this.lblPAGainByBand160); this.grpPAGainByBand.Controls.Add(this.udPAGain160); this.grpPAGainByBand.Controls.Add(this.chkPA6); this.grpPAGainByBand.Location = new System.Drawing.Point(8, 8); this.grpPAGainByBand.Name = "grpPAGainByBand"; this.grpPAGainByBand.Size = new System.Drawing.Size(256, 272); this.grpPAGainByBand.TabIndex = 1; this.grpPAGainByBand.TabStop = false; this.grpPAGainByBand.Text = "Gain By Band (dB)"; this.grpPAGainByBand.Visible = false; // // udPACalPower // this.udPACalPower.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPACalPower.Location = new System.Drawing.Point(96, 160); this.udPACalPower.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPACalPower.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udPACalPower.Name = "udPACalPower"; this.udPACalPower.Size = new System.Drawing.Size(40, 20); this.udPACalPower.TabIndex = 35; this.udPACalPower.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); // // lblPACalTarget // this.lblPACalTarget.Image = null; this.lblPACalTarget.Location = new System.Drawing.Point(88, 144); this.lblPACalTarget.Name = "lblPACalTarget"; this.lblPACalTarget.Size = new System.Drawing.Size(64, 16); this.lblPACalTarget.TabIndex = 34; this.lblPACalTarget.Text = "Cal Target:"; // // chkPA10 // this.chkPA10.Image = null; this.chkPA10.Location = new System.Drawing.Point(176, 248); this.chkPA10.Name = "chkPA10"; this.chkPA10.Size = new System.Drawing.Size(36, 16); this.chkPA10.TabIndex = 33; this.chkPA10.Text = "10"; this.chkPA10.Visible = false; // // chkPA12 // this.chkPA12.Image = null; this.chkPA12.Location = new System.Drawing.Point(136, 248); this.chkPA12.Name = "chkPA12"; this.chkPA12.Size = new System.Drawing.Size(36, 16); this.chkPA12.TabIndex = 32; this.chkPA12.Text = "12"; this.chkPA12.Visible = false; // // chkPA15 // this.chkPA15.Image = null; this.chkPA15.Location = new System.Drawing.Point(96, 248); this.chkPA15.Name = "chkPA15"; this.chkPA15.Size = new System.Drawing.Size(36, 16); this.chkPA15.TabIndex = 31; this.chkPA15.Text = "15"; this.chkPA15.Visible = false; // // chkPA17 // this.chkPA17.Image = null; this.chkPA17.Location = new System.Drawing.Point(56, 248); this.chkPA17.Name = "chkPA17"; this.chkPA17.Size = new System.Drawing.Size(36, 16); this.chkPA17.TabIndex = 30; this.chkPA17.Text = "17"; this.chkPA17.Visible = false; // // chkPA20 // this.chkPA20.Image = null; this.chkPA20.Location = new System.Drawing.Point(8, 248); this.chkPA20.Name = "chkPA20"; this.chkPA20.Size = new System.Drawing.Size(36, 16); this.chkPA20.TabIndex = 29; this.chkPA20.Text = "20"; this.chkPA20.Visible = false; // // chkPA30 // this.chkPA30.Image = null; this.chkPA30.Location = new System.Drawing.Point(176, 224); this.chkPA30.Name = "chkPA30"; this.chkPA30.Size = new System.Drawing.Size(36, 16); this.chkPA30.TabIndex = 28; this.chkPA30.Text = "30"; this.chkPA30.Visible = false; // // chkPA40 // this.chkPA40.Image = null; this.chkPA40.Location = new System.Drawing.Point(136, 224); this.chkPA40.Name = "chkPA40"; this.chkPA40.Size = new System.Drawing.Size(40, 16); this.chkPA40.TabIndex = 27; this.chkPA40.Text = "40"; this.chkPA40.Visible = false; // // chkPA60 // this.chkPA60.Image = null; this.chkPA60.Location = new System.Drawing.Point(96, 224); this.chkPA60.Name = "chkPA60"; this.chkPA60.Size = new System.Drawing.Size(40, 16); this.chkPA60.TabIndex = 26; this.chkPA60.Text = "60"; this.chkPA60.Visible = false; // // chkPA80 // this.chkPA80.Image = null; this.chkPA80.Location = new System.Drawing.Point(56, 224); this.chkPA80.Name = "chkPA80"; this.chkPA80.Size = new System.Drawing.Size(40, 16); this.chkPA80.TabIndex = 25; this.chkPA80.Text = "80"; this.chkPA80.Visible = false; // // chkPA160 // this.chkPA160.Image = null; this.chkPA160.Location = new System.Drawing.Point(8, 224); this.chkPA160.Name = "chkPA160"; this.chkPA160.Size = new System.Drawing.Size(48, 16); this.chkPA160.TabIndex = 24; this.chkPA160.Text = "160"; this.chkPA160.Visible = false; // // radPACalSelBands // this.radPACalSelBands.Image = null; this.radPACalSelBands.Location = new System.Drawing.Point(96, 184); this.radPACalSelBands.Name = "radPACalSelBands"; this.radPACalSelBands.Size = new System.Drawing.Size(112, 32); this.radPACalSelBands.TabIndex = 23; this.radPACalSelBands.Text = "Selected Bands (checked below)"; // // radPACalAllBands // this.radPACalAllBands.Checked = true; this.radPACalAllBands.Image = null; this.radPACalAllBands.Location = new System.Drawing.Point(16, 184); this.radPACalAllBands.Name = "radPACalAllBands"; this.radPACalAllBands.Size = new System.Drawing.Size(72, 32); this.radPACalAllBands.TabIndex = 22; this.radPACalAllBands.TabStop = true; this.radPACalAllBands.Text = "All Bands"; this.radPACalAllBands.CheckedChanged += new System.EventHandler(this.radPACalAllBands_CheckedChanged); // // btnPAGainReset // this.btnPAGainReset.Image = null; this.btnPAGainReset.Location = new System.Drawing.Point(152, 152); this.btnPAGainReset.Name = "btnPAGainReset"; this.btnPAGainReset.Size = new System.Drawing.Size(48, 23); this.btnPAGainReset.TabIndex = 21; this.btnPAGainReset.Text = "Reset"; this.toolTip1.SetToolTip(this.btnPAGainReset, "Reset all Gain values to the default 48.0dB"); this.btnPAGainReset.Click += new System.EventHandler(this.btnPAGainReset_Click); // // btnPAGainCalibration // this.btnPAGainCalibration.Image = null; this.btnPAGainCalibration.Location = new System.Drawing.Point(16, 152); this.btnPAGainCalibration.Name = "btnPAGainCalibration"; this.btnPAGainCalibration.Size = new System.Drawing.Size(64, 23); this.btnPAGainCalibration.TabIndex = 20; this.btnPAGainCalibration.Text = "Calibrate"; this.btnPAGainCalibration.Click += new System.EventHandler(this.btnPAGainCalibration_Click); // // lblPAGainByBand10 // this.lblPAGainByBand10.Image = null; this.lblPAGainByBand10.Location = new System.Drawing.Point(112, 120); this.lblPAGainByBand10.Name = "lblPAGainByBand10"; this.lblPAGainByBand10.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand10.TabIndex = 19; this.lblPAGainByBand10.Text = "10m:"; // // udPAGain10 // this.udPAGain10.DecimalPlaces = 1; this.udPAGain10.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain10.Location = new System.Drawing.Point(152, 120); this.udPAGain10.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain10.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain10.Name = "udPAGain10"; this.udPAGain10.Size = new System.Drawing.Size(48, 20); this.udPAGain10.TabIndex = 18; this.udPAGain10.Value = new System.Decimal(new int[] { 430, 0, 0, 65536}); this.udPAGain10.LostFocus += new System.EventHandler(this.udPAGain10_LostFocus); this.udPAGain10.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand12 // this.lblPAGainByBand12.Image = null; this.lblPAGainByBand12.Location = new System.Drawing.Point(112, 96); this.lblPAGainByBand12.Name = "lblPAGainByBand12"; this.lblPAGainByBand12.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand12.TabIndex = 17; this.lblPAGainByBand12.Text = "12m:"; // // udPAGain12 // this.udPAGain12.DecimalPlaces = 1; this.udPAGain12.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain12.Location = new System.Drawing.Point(152, 96); this.udPAGain12.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain12.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain12.Name = "udPAGain12"; this.udPAGain12.Size = new System.Drawing.Size(48, 20); this.udPAGain12.TabIndex = 16; this.udPAGain12.Value = new System.Decimal(new int[] { 474, 0, 0, 65536}); this.udPAGain12.LostFocus += new System.EventHandler(this.udPAGain12_LostFocus); this.udPAGain12.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand15 // this.lblPAGainByBand15.Image = null; this.lblPAGainByBand15.Location = new System.Drawing.Point(112, 72); this.lblPAGainByBand15.Name = "lblPAGainByBand15"; this.lblPAGainByBand15.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand15.TabIndex = 15; this.lblPAGainByBand15.Text = "15m:"; // // udPAGain15 // this.udPAGain15.DecimalPlaces = 1; this.udPAGain15.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain15.Location = new System.Drawing.Point(152, 72); this.udPAGain15.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain15.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain15.Name = "udPAGain15"; this.udPAGain15.Size = new System.Drawing.Size(48, 20); this.udPAGain15.TabIndex = 14; this.udPAGain15.Value = new System.Decimal(new int[] { 481, 0, 0, 65536}); this.udPAGain15.LostFocus += new System.EventHandler(this.udPAGain15_LostFocus); this.udPAGain15.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand17 // this.lblPAGainByBand17.Image = null; this.lblPAGainByBand17.Location = new System.Drawing.Point(112, 48); this.lblPAGainByBand17.Name = "lblPAGainByBand17"; this.lblPAGainByBand17.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand17.TabIndex = 13; this.lblPAGainByBand17.Text = "17m:"; // // udPAGain17 // this.udPAGain17.DecimalPlaces = 1; this.udPAGain17.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain17.Location = new System.Drawing.Point(152, 48); this.udPAGain17.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain17.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain17.Name = "udPAGain17"; this.udPAGain17.Size = new System.Drawing.Size(48, 20); this.udPAGain17.TabIndex = 12; this.udPAGain17.Value = new System.Decimal(new int[] { 493, 0, 0, 65536}); this.udPAGain17.LostFocus += new System.EventHandler(this.udPAGain17_LostFocus); this.udPAGain17.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand20 // this.lblPAGainByBand20.Image = null; this.lblPAGainByBand20.Location = new System.Drawing.Point(112, 24); this.lblPAGainByBand20.Name = "lblPAGainByBand20"; this.lblPAGainByBand20.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand20.TabIndex = 11; this.lblPAGainByBand20.Text = "20m:"; // // udPAGain20 // this.udPAGain20.DecimalPlaces = 1; this.udPAGain20.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain20.Location = new System.Drawing.Point(152, 24); this.udPAGain20.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain20.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain20.Name = "udPAGain20"; this.udPAGain20.Size = new System.Drawing.Size(48, 20); this.udPAGain20.TabIndex = 10; this.udPAGain20.Value = new System.Decimal(new int[] { 483, 0, 0, 65536}); this.udPAGain20.LostFocus += new System.EventHandler(this.udPAGain20_LostFocus); this.udPAGain20.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand30 // this.lblPAGainByBand30.Image = null; this.lblPAGainByBand30.Location = new System.Drawing.Point(16, 120); this.lblPAGainByBand30.Name = "lblPAGainByBand30"; this.lblPAGainByBand30.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand30.TabIndex = 9; this.lblPAGainByBand30.Text = "30m:"; // // udPAGain30 // this.udPAGain30.DecimalPlaces = 1; this.udPAGain30.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain30.Location = new System.Drawing.Point(56, 120); this.udPAGain30.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain30.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain30.Name = "udPAGain30"; this.udPAGain30.Size = new System.Drawing.Size(48, 20); this.udPAGain30.TabIndex = 8; this.udPAGain30.Value = new System.Decimal(new int[] { 489, 0, 0, 65536}); this.udPAGain30.LostFocus += new System.EventHandler(this.udPAGain30_LostFocus); this.udPAGain30.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand40 // this.lblPAGainByBand40.Image = null; this.lblPAGainByBand40.Location = new System.Drawing.Point(16, 96); this.lblPAGainByBand40.Name = "lblPAGainByBand40"; this.lblPAGainByBand40.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand40.TabIndex = 7; this.lblPAGainByBand40.Text = "40m:"; // // udPAGain40 // this.udPAGain40.DecimalPlaces = 1; this.udPAGain40.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain40.Location = new System.Drawing.Point(56, 96); this.udPAGain40.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain40.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain40.Name = "udPAGain40"; this.udPAGain40.Size = new System.Drawing.Size(48, 20); this.udPAGain40.TabIndex = 6; this.udPAGain40.Value = new System.Decimal(new int[] { 469, 0, 0, 65536}); this.udPAGain40.LostFocus += new System.EventHandler(this.udPAGain40_LostFocus); this.udPAGain40.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand60 // this.lblPAGainByBand60.Image = null; this.lblPAGainByBand60.Location = new System.Drawing.Point(16, 72); this.lblPAGainByBand60.Name = "lblPAGainByBand60"; this.lblPAGainByBand60.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand60.TabIndex = 5; this.lblPAGainByBand60.Text = "60m:"; // // udPAGain60 // this.udPAGain60.DecimalPlaces = 1; this.udPAGain60.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain60.Location = new System.Drawing.Point(56, 72); this.udPAGain60.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain60.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain60.Name = "udPAGain60"; this.udPAGain60.Size = new System.Drawing.Size(48, 20); this.udPAGain60.TabIndex = 4; this.udPAGain60.Value = new System.Decimal(new int[] { 474, 0, 0, 65536}); this.udPAGain60.LostFocus += new System.EventHandler(this.udPAGain60_LostFocus); this.udPAGain60.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand80 // this.lblPAGainByBand80.Image = null; this.lblPAGainByBand80.Location = new System.Drawing.Point(16, 48); this.lblPAGainByBand80.Name = "lblPAGainByBand80"; this.lblPAGainByBand80.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand80.TabIndex = 3; this.lblPAGainByBand80.Text = "80m:"; // // udPAGain80 // this.udPAGain80.DecimalPlaces = 1; this.udPAGain80.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain80.Location = new System.Drawing.Point(56, 48); this.udPAGain80.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain80.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain80.Name = "udPAGain80"; this.udPAGain80.Size = new System.Drawing.Size(48, 20); this.udPAGain80.TabIndex = 2; this.udPAGain80.Value = new System.Decimal(new int[] { 480, 0, 0, 65536}); this.udPAGain80.LostFocus += new System.EventHandler(this.udPAGain80_LostFocus); this.udPAGain80.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // lblPAGainByBand160 // this.lblPAGainByBand160.Image = null; this.lblPAGainByBand160.Location = new System.Drawing.Point(16, 24); this.lblPAGainByBand160.Name = "lblPAGainByBand160"; this.lblPAGainByBand160.Size = new System.Drawing.Size(40, 16); this.lblPAGainByBand160.TabIndex = 1; this.lblPAGainByBand160.Text = "160m:"; // // udPAGain160 // this.udPAGain160.DecimalPlaces = 1; this.udPAGain160.Increment = new System.Decimal(new int[] { 1, 0, 0, 65536}); this.udPAGain160.Location = new System.Drawing.Point(56, 24); this.udPAGain160.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udPAGain160.Minimum = new System.Decimal(new int[] { 38, 0, 0, 0}); this.udPAGain160.Name = "udPAGain160"; this.udPAGain160.Size = new System.Drawing.Size(48, 20); this.udPAGain160.TabIndex = 0; this.udPAGain160.Value = new System.Decimal(new int[] { 490, 0, 0, 65536}); this.udPAGain160.LostFocus += new System.EventHandler(this.udPAGain160_LostFocus); this.udPAGain160.ValueChanged += new System.EventHandler(this.udPAGain_ValueChanged); // // chkPA6 // this.chkPA6.Image = null; this.chkPA6.Location = new System.Drawing.Point(216, 248); this.chkPA6.Name = "chkPA6"; this.chkPA6.Size = new System.Drawing.Size(36, 16); this.chkPA6.TabIndex = 84; this.chkPA6.Text = "6"; this.chkPA6.Visible = false; // // tpCAT // this.tpCAT.Controls.Add(this.chkKWAI); this.tpCAT.Controls.Add(this.chkFPInstalled); this.tpCAT.Controls.Add(this.chkDigUIsUSB); this.tpCAT.Controls.Add(this.lblCATRigType); this.tpCAT.Controls.Add(this.comboCATRigType); this.tpCAT.Controls.Add(this.btnCATTest); this.tpCAT.Controls.Add(this.grpPTTBitBang); this.tpCAT.Controls.Add(this.grpCatControlBox); this.tpCAT.Controls.Add(this.grpRTTYOffset); this.tpCAT.Location = new System.Drawing.Point(4, 22); this.tpCAT.Name = "tpCAT"; this.tpCAT.Size = new System.Drawing.Size(584, 286); this.tpCAT.TabIndex = 10; this.tpCAT.Text = "CAT Control"; // // chkKWAI // this.chkKWAI.Image = null; this.chkKWAI.Location = new System.Drawing.Point(192, 224); this.chkKWAI.Name = "chkKWAI"; this.chkKWAI.Size = new System.Drawing.Size(176, 24); this.chkKWAI.TabIndex = 98; this.chkKWAI.Text = "Allow Kenwood AI Command"; this.toolTip1.SetToolTip(this.chkKWAI, "Check only if your logger does not poll for frequency"); this.chkKWAI.CheckedChanged += new System.EventHandler(this.chkKWAI_CheckedChanged); // // chkFPInstalled // this.chkFPInstalled.Image = null; this.chkFPInstalled.Location = new System.Drawing.Point(192, 200); this.chkFPInstalled.Name = "chkFPInstalled"; this.chkFPInstalled.Size = new System.Drawing.Size(160, 24); this.chkFPInstalled.TabIndex = 97; this.chkFPInstalled.Text = "FlexProfiler Installed"; this.toolTip1.SetToolTip(this.chkFPInstalled, "Check if FlexProfiler installed"); this.chkFPInstalled.CheckedChanged += new System.EventHandler(this.chkFPInstalled_CheckedChanged); // // chkDigUIsUSB // this.chkDigUIsUSB.Image = null; this.chkDigUIsUSB.Location = new System.Drawing.Point(192, 176); this.chkDigUIsUSB.Name = "chkDigUIsUSB"; this.chkDigUIsUSB.Size = new System.Drawing.Size(160, 24); this.chkDigUIsUSB.TabIndex = 96; this.chkDigUIsUSB.Text = "DigL/U Returns LSB/USB"; this.toolTip1.SetToolTip(this.chkDigUIsUSB, "Lies to the Kenwood CAT Interface to fool certain programs"); // // lblCATRigType // this.lblCATRigType.Image = null; this.lblCATRigType.Location = new System.Drawing.Point(440, 24); this.lblCATRigType.Name = "lblCATRigType"; this.lblCATRigType.Size = new System.Drawing.Size(40, 23); this.lblCATRigType.TabIndex = 95; this.lblCATRigType.Text = "ID as:"; // // comboCATRigType // this.comboCATRigType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATRigType.DropDownWidth = 56; this.comboCATRigType.Items.AddRange(new object[] { "PowerSDR", "TS-2000", "TS-50S", "TS-480"}); this.comboCATRigType.Location = new System.Drawing.Point(480, 24); this.comboCATRigType.Name = "comboCATRigType"; this.comboCATRigType.Size = new System.Drawing.Size(88, 20); this.comboCATRigType.TabIndex = 94; this.toolTip1.SetToolTip(this.comboCATRigType, "Sets the CAT protocol for programs that do not have SDR-1000 specific setups."); this.comboCATRigType.SelectedIndexChanged += new System.EventHandler(this.comboCATRigType_SelectedIndexChanged); // // btnCATTest // this.btnCATTest.Image = null; this.btnCATTest.Location = new System.Drawing.Point(344, 24); this.btnCATTest.Name = "btnCATTest"; this.btnCATTest.Size = new System.Drawing.Size(40, 20); this.btnCATTest.TabIndex = 92; this.btnCATTest.Text = "Test"; this.btnCATTest.Click += new System.EventHandler(this.btnCATTest_Click); // // grpPTTBitBang // this.grpPTTBitBang.Controls.Add(this.comboCATPTTPort); this.grpPTTBitBang.Controls.Add(this.lblCATPTTPort); this.grpPTTBitBang.Controls.Add(this.chkCATPTT_RTS); this.grpPTTBitBang.Controls.Add(this.chkCATPTT_DTR); this.grpPTTBitBang.Controls.Add(this.chkCATPTTEnabled); this.grpPTTBitBang.Location = new System.Drawing.Point(192, 16); this.grpPTTBitBang.Name = "grpPTTBitBang"; this.grpPTTBitBang.Size = new System.Drawing.Size(128, 152); this.grpPTTBitBang.TabIndex = 91; this.grpPTTBitBang.TabStop = false; this.grpPTTBitBang.Text = "PTT Control"; // // comboCATPTTPort // this.comboCATPTTPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATPTTPort.DropDownWidth = 56; this.comboCATPTTPort.Location = new System.Drawing.Point(40, 56); this.comboCATPTTPort.Name = "comboCATPTTPort"; this.comboCATPTTPort.Size = new System.Drawing.Size(80, 20); this.comboCATPTTPort.TabIndex = 96; this.toolTip1.SetToolTip(this.comboCATPTTPort, "Selects the COM port for use with PTT control"); this.comboCATPTTPort.SelectedIndexChanged += new System.EventHandler(this.comboCATPTTPort_SelectedIndexChanged); // // lblCATPTTPort // this.lblCATPTTPort.Image = null; this.lblCATPTTPort.Location = new System.Drawing.Point(8, 56); this.lblCATPTTPort.Name = "lblCATPTTPort"; this.lblCATPTTPort.Size = new System.Drawing.Size(40, 23); this.lblCATPTTPort.TabIndex = 6; this.lblCATPTTPort.Text = "Port:"; // // chkCATPTT_RTS // this.chkCATPTT_RTS.Image = null; this.chkCATPTT_RTS.Location = new System.Drawing.Point(40, 88); this.chkCATPTT_RTS.Name = "chkCATPTT_RTS"; this.chkCATPTT_RTS.Size = new System.Drawing.Size(48, 24); this.chkCATPTT_RTS.TabIndex = 0; this.chkCATPTT_RTS.Text = "RTS"; this.chkCATPTT_RTS.CheckedChanged += new System.EventHandler(this.chkCATPTT_RTS_CheckedChanged); // // chkCATPTT_DTR // this.chkCATPTT_DTR.Image = null; this.chkCATPTT_DTR.Location = new System.Drawing.Point(40, 120); this.chkCATPTT_DTR.Name = "chkCATPTT_DTR"; this.chkCATPTT_DTR.Size = new System.Drawing.Size(48, 16); this.chkCATPTT_DTR.TabIndex = 1; this.chkCATPTT_DTR.Text = "DTR"; this.chkCATPTT_DTR.CheckedChanged += new System.EventHandler(this.chkCATPTT_DTR_CheckedChanged); // // chkCATPTTEnabled // this.chkCATPTTEnabled.Image = null; this.chkCATPTTEnabled.Location = new System.Drawing.Point(8, 16); this.chkCATPTTEnabled.Name = "chkCATPTTEnabled"; this.chkCATPTTEnabled.TabIndex = 4; this.chkCATPTTEnabled.Text = "Enable PTT"; this.chkCATPTTEnabled.CheckedChanged += new System.EventHandler(this.chkCATPTTEnabled_CheckedChanged); // // grpCatControlBox // this.grpCatControlBox.Controls.Add(this.comboCATPort); this.grpCatControlBox.Controls.Add(this.comboCATbaud); this.grpCatControlBox.Controls.Add(this.lblCATBaud); this.grpCatControlBox.Controls.Add(this.lblCATPort); this.grpCatControlBox.Controls.Add(this.chkCATEnable); this.grpCatControlBox.Controls.Add(this.lblCATParity); this.grpCatControlBox.Controls.Add(this.lblCATData); this.grpCatControlBox.Controls.Add(this.lblCATStop); this.grpCatControlBox.Controls.Add(this.comboCATparity); this.grpCatControlBox.Controls.Add(this.comboCATdatabits); this.grpCatControlBox.Controls.Add(this.comboCATstopbits); this.grpCatControlBox.Location = new System.Drawing.Point(16, 16); this.grpCatControlBox.Name = "grpCatControlBox"; this.grpCatControlBox.Size = new System.Drawing.Size(160, 216); this.grpCatControlBox.TabIndex = 90; this.grpCatControlBox.TabStop = false; this.grpCatControlBox.Text = "CAT Control"; // // comboCATPort // this.comboCATPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATPort.DropDownWidth = 56; this.comboCATPort.Location = new System.Drawing.Point(72, 48); this.comboCATPort.Name = "comboCATPort"; this.comboCATPort.Size = new System.Drawing.Size(72, 20); this.comboCATPort.TabIndex = 95; this.toolTip1.SetToolTip(this.comboCATPort, "Sets the COM port to be used for the CAT interface."); this.comboCATPort.SelectedIndexChanged += new System.EventHandler(this.comboCATPort_SelectedIndexChanged); // // comboCATbaud // this.comboCATbaud.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATbaud.DropDownWidth = 56; this.comboCATbaud.Items.AddRange(new object[] { "300", "1200", "2400", "4800", "9600", "19200", "38400", "57600"}); this.comboCATbaud.Location = new System.Drawing.Point(72, 88); this.comboCATbaud.Name = "comboCATbaud"; this.comboCATbaud.Size = new System.Drawing.Size(72, 20); this.comboCATbaud.TabIndex = 93; this.comboCATbaud.SelectedIndexChanged += new System.EventHandler(this.comboCATbaud_SelectedIndexChanged); // // lblCATBaud // this.lblCATBaud.Image = null; this.lblCATBaud.Location = new System.Drawing.Point(24, 88); this.lblCATBaud.Name = "lblCATBaud"; this.lblCATBaud.Size = new System.Drawing.Size(40, 23); this.lblCATBaud.TabIndex = 5; this.lblCATBaud.Text = "Baud"; // // lblCATPort // this.lblCATPort.Image = null; this.lblCATPort.Location = new System.Drawing.Point(24, 48); this.lblCATPort.Name = "lblCATPort"; this.lblCATPort.Size = new System.Drawing.Size(40, 23); this.lblCATPort.TabIndex = 3; this.lblCATPort.Text = "Port:"; // // chkCATEnable // this.chkCATEnable.Image = null; this.chkCATEnable.Location = new System.Drawing.Point(16, 24); this.chkCATEnable.Name = "chkCATEnable"; this.chkCATEnable.TabIndex = 0; this.chkCATEnable.Text = "Enable CAT"; this.chkCATEnable.CheckedChanged += new System.EventHandler(this.chkCATEnable_CheckedChanged); // // lblCATParity // this.lblCATParity.Image = null; this.lblCATParity.Location = new System.Drawing.Point(24, 120); this.lblCATParity.Name = "lblCATParity"; this.lblCATParity.Size = new System.Drawing.Size(48, 23); this.lblCATParity.TabIndex = 92; this.lblCATParity.Text = "Parity"; // // lblCATData // this.lblCATData.Image = null; this.lblCATData.Location = new System.Drawing.Point(24, 152); this.lblCATData.Name = "lblCATData"; this.lblCATData.Size = new System.Drawing.Size(40, 23); this.lblCATData.TabIndex = 92; this.lblCATData.Text = "Data"; // // lblCATStop // this.lblCATStop.Image = null; this.lblCATStop.Location = new System.Drawing.Point(24, 184); this.lblCATStop.Name = "lblCATStop"; this.lblCATStop.Size = new System.Drawing.Size(40, 23); this.lblCATStop.TabIndex = 92; this.lblCATStop.Text = "Stop"; // // comboCATparity // this.comboCATparity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATparity.DropDownWidth = 56; this.comboCATparity.Items.AddRange(new object[] { "none", "odd ", "even", "mark", "space"}); this.comboCATparity.Location = new System.Drawing.Point(72, 120); this.comboCATparity.Name = "comboCATparity"; this.comboCATparity.Size = new System.Drawing.Size(72, 20); this.comboCATparity.TabIndex = 92; this.comboCATparity.SelectedIndexChanged += new System.EventHandler(this.comboCATparity_SelectedIndexChanged); // // comboCATdatabits // this.comboCATdatabits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATdatabits.DropDownWidth = 56; this.comboCATdatabits.Items.AddRange(new object[] { "8", "7", "6"}); this.comboCATdatabits.Location = new System.Drawing.Point(72, 152); this.comboCATdatabits.Name = "comboCATdatabits"; this.comboCATdatabits.Size = new System.Drawing.Size(72, 20); this.comboCATdatabits.TabIndex = 93; this.comboCATdatabits.SelectedIndexChanged += new System.EventHandler(this.comboCATdatabits_SelectedIndexChanged); // // comboCATstopbits // this.comboCATstopbits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboCATstopbits.DropDownWidth = 56; this.comboCATstopbits.Items.AddRange(new object[] { "1", "1.5", "2"}); this.comboCATstopbits.Location = new System.Drawing.Point(72, 184); this.comboCATstopbits.Name = "comboCATstopbits"; this.comboCATstopbits.Size = new System.Drawing.Size(72, 20); this.comboCATstopbits.TabIndex = 94; this.comboCATstopbits.SelectedIndexChanged += new System.EventHandler(this.comboCATstopbits_SelectedIndexChanged); // // grpRTTYOffset // this.grpRTTYOffset.Controls.Add(this.labelTS4); this.grpRTTYOffset.Controls.Add(this.labelTS3); this.grpRTTYOffset.Controls.Add(this.udRTTYU); this.grpRTTYOffset.Controls.Add(this.udRTTYL); this.grpRTTYOffset.Controls.Add(this.chkRTTYOffsetEnableB); this.grpRTTYOffset.Controls.Add(this.chkRTTYOffsetEnableA); this.grpRTTYOffset.Location = new System.Drawing.Point(400, 120); this.grpRTTYOffset.Name = "grpRTTYOffset"; this.grpRTTYOffset.Size = new System.Drawing.Size(168, 120); this.grpRTTYOffset.TabIndex = 97; this.grpRTTYOffset.TabStop = false; this.grpRTTYOffset.Text = "RTTY Offset"; // // labelTS4 // this.labelTS4.Image = null; this.labelTS4.Location = new System.Drawing.Point(108, 69); this.labelTS4.Name = "labelTS4"; this.labelTS4.Size = new System.Drawing.Size(40, 16); this.labelTS4.TabIndex = 101; this.labelTS4.Text = "DIGU"; // // labelTS3 // this.labelTS3.Image = null; this.labelTS3.Location = new System.Drawing.Point(24, 69); this.labelTS3.Name = "labelTS3"; this.labelTS3.Size = new System.Drawing.Size(40, 16); this.labelTS3.TabIndex = 100; this.labelTS3.Text = "DIGL"; // // udRTTYU // this.udRTTYU.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udRTTYU.Location = new System.Drawing.Point(104, 88); this.udRTTYU.Maximum = new System.Decimal(new int[] { 3000, 0, 0, 0}); this.udRTTYU.Minimum = new System.Decimal(new int[] { 3000, 0, 0, -2147483648}); this.udRTTYU.Name = "udRTTYU"; this.udRTTYU.Size = new System.Drawing.Size(48, 20); this.udRTTYU.TabIndex = 99; this.toolTip1.SetToolTip(this.udRTTYU, "Sets the DIGU frequency offset"); this.udRTTYU.Value = new System.Decimal(new int[] { 2125, 0, 0, 0}); this.udRTTYU.ValueChanged += new System.EventHandler(this.udRTTYU_ValueChanged); // // udRTTYL // this.udRTTYL.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udRTTYL.Location = new System.Drawing.Point(16, 88); this.udRTTYL.Maximum = new System.Decimal(new int[] { 3000, 0, 0, 0}); this.udRTTYL.Minimum = new System.Decimal(new int[] { 3000, 0, 0, -2147483648}); this.udRTTYL.Name = "udRTTYL"; this.udRTTYL.Size = new System.Drawing.Size(48, 20); this.udRTTYL.TabIndex = 98; this.toolTip1.SetToolTip(this.udRTTYL, "Sets the DIGL frequency offset"); this.udRTTYL.Value = new System.Decimal(new int[] { 2125, 0, 0, 0}); this.udRTTYL.ValueChanged += new System.EventHandler(this.udRTTYL_ValueChanged); // // chkRTTYOffsetEnableB // this.chkRTTYOffsetEnableB.Image = null; this.chkRTTYOffsetEnableB.Location = new System.Drawing.Point(16, 40); this.chkRTTYOffsetEnableB.Name = "chkRTTYOffsetEnableB"; this.chkRTTYOffsetEnableB.Size = new System.Drawing.Size(136, 24); this.chkRTTYOffsetEnableB.TabIndex = 97; this.chkRTTYOffsetEnableB.Text = "Enable Offset VFO B"; this.chkRTTYOffsetEnableB.CheckedChanged += new System.EventHandler(this.chkRTTYOffsetEnableB_CheckedChanged); // // chkRTTYOffsetEnableA // this.chkRTTYOffsetEnableA.Image = null; this.chkRTTYOffsetEnableA.Location = new System.Drawing.Point(16, 16); this.chkRTTYOffsetEnableA.Name = "chkRTTYOffsetEnableA"; this.chkRTTYOffsetEnableA.Size = new System.Drawing.Size(136, 24); this.chkRTTYOffsetEnableA.TabIndex = 96; this.chkRTTYOffsetEnableA.Text = "Enable Offset VFO A"; this.chkRTTYOffsetEnableA.CheckedChanged += new System.EventHandler(this.chkRTTYOffsetEnableA_CheckedChanged); // // tpTests // this.tpTests.Controls.Add(this.grpBoxTS1); this.tpTests.Controls.Add(this.ckEnableSigGen); this.tpTests.Controls.Add(this.grpTestX2); this.tpTests.Controls.Add(this.grpTestAudioBalance); this.tpTests.Controls.Add(this.grpTestTXIMD); this.tpTests.Controls.Add(this.grpImpulseTest); this.tpTests.Location = new System.Drawing.Point(4, 22); this.tpTests.Name = "tpTests"; this.tpTests.Size = new System.Drawing.Size(584, 286); this.tpTests.TabIndex = 7; this.tpTests.Text = "Tests"; // // grpBoxTS1 // this.grpBoxTS1.Controls.Add(this.grpSigGenTransmit); this.grpBoxTS1.Controls.Add(this.grpSigGenReceive); this.grpBoxTS1.Controls.Add(this.lblTestGenScale); this.grpBoxTS1.Controls.Add(this.udTestGenScale); this.grpBoxTS1.Controls.Add(this.lblTestSigGenFreqCallout); this.grpBoxTS1.Controls.Add(this.tkbarTestGenFreq); this.grpBoxTS1.Controls.Add(this.lblTestGenHzSec); this.grpBoxTS1.Controls.Add(this.udTestGenHzSec); this.grpBoxTS1.Controls.Add(this.lblTestGenHigh); this.grpBoxTS1.Controls.Add(this.udTestGenHigh); this.grpBoxTS1.Controls.Add(this.lblTestGenLow); this.grpBoxTS1.Controls.Add(this.udTestGenLow); this.grpBoxTS1.Controls.Add(this.btnTestGenSweep); this.grpBoxTS1.Location = new System.Drawing.Point(176, 80); this.grpBoxTS1.Name = "grpBoxTS1"; this.grpBoxTS1.Size = new System.Drawing.Size(400, 192); this.grpBoxTS1.TabIndex = 88; this.grpBoxTS1.TabStop = false; this.grpBoxTS1.Text = "Signal Generator"; // // grpSigGenTransmit // this.grpSigGenTransmit.Controls.Add(this.lblSigGenTXMode); this.grpSigGenTransmit.Controls.Add(this.cmboSigGenTXMode); this.grpSigGenTransmit.Controls.Add(this.radSigGenTXInput); this.grpSigGenTransmit.Controls.Add(this.radSigGenTXOutput); this.grpSigGenTransmit.Location = new System.Drawing.Point(160, 16); this.grpSigGenTransmit.Name = "grpSigGenTransmit"; this.grpSigGenTransmit.Size = new System.Drawing.Size(152, 64); this.grpSigGenTransmit.TabIndex = 102; this.grpSigGenTransmit.TabStop = false; this.grpSigGenTransmit.Text = "Transmit"; // // lblSigGenTXMode // this.lblSigGenTXMode.Image = null; this.lblSigGenTXMode.Location = new System.Drawing.Point(16, 16); this.lblSigGenTXMode.Name = "lblSigGenTXMode"; this.lblSigGenTXMode.Size = new System.Drawing.Size(40, 16); this.lblSigGenTXMode.TabIndex = 96; this.lblSigGenTXMode.Text = "Mode:"; // // cmboSigGenTXMode // this.cmboSigGenTXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmboSigGenTXMode.DropDownWidth = 121; this.cmboSigGenTXMode.Items.AddRange(new object[] { "Soundcard", "Tone", "Noise", "Triangle", "Sawtooth", "Silence"}); this.cmboSigGenTXMode.Location = new System.Drawing.Point(56, 16); this.cmboSigGenTXMode.Name = "cmboSigGenTXMode"; this.cmboSigGenTXMode.Size = new System.Drawing.Size(88, 20); this.cmboSigGenTXMode.TabIndex = 91; this.toolTip1.SetToolTip(this.cmboSigGenTXMode, "Select the signal type."); this.cmboSigGenTXMode.SelectedIndexChanged += new System.EventHandler(this.cmboSigGenTXMode_SelectedIndexChanged); // // radSigGenTXInput // this.radSigGenTXInput.Checked = true; this.radSigGenTXInput.Image = null; this.radSigGenTXInput.Location = new System.Drawing.Point(24, 40); this.radSigGenTXInput.Name = "radSigGenTXInput"; this.radSigGenTXInput.Size = new System.Drawing.Size(48, 16); this.radSigGenTXInput.TabIndex = 99; this.radSigGenTXInput.TabStop = true; this.radSigGenTXInput.Text = "Input"; this.radSigGenTXInput.CheckedChanged += new System.EventHandler(this.radSigGenTXInput_CheckedChanged); // // radSigGenTXOutput // this.radSigGenTXOutput.Image = null; this.radSigGenTXOutput.Location = new System.Drawing.Point(80, 40); this.radSigGenTXOutput.Name = "radSigGenTXOutput"; this.radSigGenTXOutput.Size = new System.Drawing.Size(56, 16); this.radSigGenTXOutput.TabIndex = 100; this.radSigGenTXOutput.Text = "Output"; this.radSigGenTXOutput.CheckedChanged += new System.EventHandler(this.radSigGenTXOutput_CheckedChanged); // // grpSigGenReceive // this.grpSigGenReceive.Controls.Add(this.chkSigGenRX2); this.grpSigGenReceive.Controls.Add(this.lblSigGenRXMode); this.grpSigGenReceive.Controls.Add(this.cmboSigGenRXMode); this.grpSigGenReceive.Controls.Add(this.radSigGenRXInput); this.grpSigGenReceive.Controls.Add(this.radSigGenRXOutput); this.grpSigGenReceive.Location = new System.Drawing.Point(8, 16); this.grpSigGenReceive.Name = "grpSigGenReceive"; this.grpSigGenReceive.Size = new System.Drawing.Size(152, 88); this.grpSigGenReceive.TabIndex = 101; this.grpSigGenReceive.TabStop = false; this.grpSigGenReceive.Text = "Receive"; // // chkSigGenRX2 // this.chkSigGenRX2.Location = new System.Drawing.Point(16, 56); this.chkSigGenRX2.Name = "chkSigGenRX2"; this.chkSigGenRX2.Size = new System.Drawing.Size(48, 24); this.chkSigGenRX2.TabIndex = 101; this.chkSigGenRX2.Text = "RX2"; this.chkSigGenRX2.CheckedChanged += new System.EventHandler(this.chkSigGenRX2_CheckedChanged); // // lblSigGenRXMode // this.lblSigGenRXMode.Image = null; this.lblSigGenRXMode.Location = new System.Drawing.Point(16, 16); this.lblSigGenRXMode.Name = "lblSigGenRXMode"; this.lblSigGenRXMode.Size = new System.Drawing.Size(40, 16); this.lblSigGenRXMode.TabIndex = 96; this.lblSigGenRXMode.Text = "Mode:"; // // cmboSigGenRXMode // this.cmboSigGenRXMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmboSigGenRXMode.DropDownWidth = 121; this.cmboSigGenRXMode.Items.AddRange(new object[] { "Soundcard", "Tone", "Noise", "Triangle", "Sawtooth", "Silence"}); this.cmboSigGenRXMode.Location = new System.Drawing.Point(56, 16); this.cmboSigGenRXMode.Name = "cmboSigGenRXMode"; this.cmboSigGenRXMode.Size = new System.Drawing.Size(88, 20); this.cmboSigGenRXMode.TabIndex = 91; this.toolTip1.SetToolTip(this.cmboSigGenRXMode, "Select the signal type."); this.cmboSigGenRXMode.SelectedIndexChanged += new System.EventHandler(this.cmboSigGenRXMode_SelectedIndexChanged); // // radSigGenRXInput // this.radSigGenRXInput.Checked = true; this.radSigGenRXInput.Image = null; this.radSigGenRXInput.Location = new System.Drawing.Point(24, 40); this.radSigGenRXInput.Name = "radSigGenRXInput"; this.radSigGenRXInput.Size = new System.Drawing.Size(48, 16); this.radSigGenRXInput.TabIndex = 99; this.radSigGenRXInput.TabStop = true; this.radSigGenRXInput.Text = "Input"; this.radSigGenRXInput.CheckedChanged += new System.EventHandler(this.radSigGenRXInput_CheckedChanged); // // radSigGenRXOutput // this.radSigGenRXOutput.Image = null; this.radSigGenRXOutput.Location = new System.Drawing.Point(80, 40); this.radSigGenRXOutput.Name = "radSigGenRXOutput"; this.radSigGenRXOutput.Size = new System.Drawing.Size(56, 16); this.radSigGenRXOutput.TabIndex = 100; this.radSigGenRXOutput.Text = "Output"; this.radSigGenRXOutput.CheckedChanged += new System.EventHandler(this.radSigGenRXOutput_CheckedChanged); // // lblTestGenScale // this.lblTestGenScale.Image = null; this.lblTestGenScale.Location = new System.Drawing.Point(320, 24); this.lblTestGenScale.Name = "lblTestGenScale"; this.lblTestGenScale.Size = new System.Drawing.Size(40, 16); this.lblTestGenScale.TabIndex = 95; this.lblTestGenScale.Text = "Scale:"; this.lblTestGenScale.Visible = false; // // udTestGenScale // this.udTestGenScale.DecimalPlaces = 6; this.udTestGenScale.Increment = new System.Decimal(new int[] { 1, 0, 0, 196608}); this.udTestGenScale.Location = new System.Drawing.Point(320, 40); this.udTestGenScale.Maximum = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udTestGenScale.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestGenScale.Name = "udTestGenScale"; this.udTestGenScale.Size = new System.Drawing.Size(72, 20); this.udTestGenScale.TabIndex = 94; this.toolTip1.SetToolTip(this.udTestGenScale, "Sets the amplitude of the signal (typically between 0 and 1.0)"); this.udTestGenScale.Value = new System.Decimal(new int[] { 10, 0, 0, 65536}); this.udTestGenScale.Visible = false; this.udTestGenScale.LostFocus += new System.EventHandler(this.udTestGenScale_LostFocus); this.udTestGenScale.ValueChanged += new System.EventHandler(this.updnTestGenScale_ValueChanged); // // lblTestSigGenFreqCallout // this.lblTestSigGenFreqCallout.Image = null; this.lblTestSigGenFreqCallout.Location = new System.Drawing.Point(24, 136); this.lblTestSigGenFreqCallout.Name = "lblTestSigGenFreqCallout"; this.lblTestSigGenFreqCallout.Size = new System.Drawing.Size(336, 16); this.lblTestSigGenFreqCallout.TabIndex = 90; this.lblTestSigGenFreqCallout.Text = "0 10k " + " 20k"; // // tkbarTestGenFreq // this.tkbarTestGenFreq.Location = new System.Drawing.Point(16, 104); this.tkbarTestGenFreq.Maximum = 20000; this.tkbarTestGenFreq.Name = "tkbarTestGenFreq"; this.tkbarTestGenFreq.Size = new System.Drawing.Size(344, 50); this.tkbarTestGenFreq.TabIndex = 1; this.tkbarTestGenFreq.TickFrequency = 1000; this.toolTip1.SetToolTip(this.tkbarTestGenFreq, "Sets the frequency of the signal."); this.tkbarTestGenFreq.Value = 10000; this.tkbarTestGenFreq.Scroll += new System.EventHandler(this.tkbarTestGenFreq_Scroll); // // lblTestGenHzSec // this.lblTestGenHzSec.Image = null; this.lblTestGenHzSec.Location = new System.Drawing.Point(200, 160); this.lblTestGenHzSec.Name = "lblTestGenHzSec"; this.lblTestGenHzSec.Size = new System.Drawing.Size(48, 16); this.lblTestGenHzSec.TabIndex = 88; this.lblTestGenHzSec.Text = "Hz/Sec:"; // // udTestGenHzSec // this.udTestGenHzSec.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTestGenHzSec.Location = new System.Drawing.Point(248, 160); this.udTestGenHzSec.Maximum = new System.Decimal(new int[] { 20000, 0, 0, 0}); this.udTestGenHzSec.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestGenHzSec.Name = "udTestGenHzSec"; this.udTestGenHzSec.Size = new System.Drawing.Size(56, 20); this.udTestGenHzSec.TabIndex = 87; this.toolTip1.SetToolTip(this.udTestGenHzSec, "See the Sweep Button to the right."); this.udTestGenHzSec.Value = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udTestGenHzSec.LostFocus += new System.EventHandler(this.udTestGenHzSec_LostFocus); // // lblTestGenHigh // this.lblTestGenHigh.Image = null; this.lblTestGenHigh.Location = new System.Drawing.Point(104, 160); this.lblTestGenHigh.Name = "lblTestGenHigh"; this.lblTestGenHigh.Size = new System.Drawing.Size(32, 16); this.lblTestGenHigh.TabIndex = 86; this.lblTestGenHigh.Text = "High:"; // // udTestGenHigh // this.udTestGenHigh.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTestGenHigh.Location = new System.Drawing.Point(136, 160); this.udTestGenHigh.Maximum = new System.Decimal(new int[] { 20000, 0, 0, 0}); this.udTestGenHigh.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestGenHigh.Name = "udTestGenHigh"; this.udTestGenHigh.Size = new System.Drawing.Size(56, 20); this.udTestGenHigh.TabIndex = 85; this.toolTip1.SetToolTip(this.udTestGenHigh, "See the Sweep Button to the right."); this.udTestGenHigh.Value = new System.Decimal(new int[] { 4000, 0, 0, 0}); this.udTestGenHigh.LostFocus += new System.EventHandler(this.udTestGenHigh_LostFocus); // // lblTestGenLow // this.lblTestGenLow.Image = null; this.lblTestGenLow.Location = new System.Drawing.Point(8, 160); this.lblTestGenLow.Name = "lblTestGenLow"; this.lblTestGenLow.Size = new System.Drawing.Size(32, 16); this.lblTestGenLow.TabIndex = 84; this.lblTestGenLow.Text = "Low:"; // // udTestGenLow // this.udTestGenLow.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTestGenLow.Location = new System.Drawing.Point(40, 160); this.udTestGenLow.Maximum = new System.Decimal(new int[] { 20000, 0, 0, 0}); this.udTestGenLow.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestGenLow.Name = "udTestGenLow"; this.udTestGenLow.Size = new System.Drawing.Size(56, 20); this.udTestGenLow.TabIndex = 83; this.toolTip1.SetToolTip(this.udTestGenLow, "See the Sweep Button to the right."); this.udTestGenLow.Value = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestGenLow.LostFocus += new System.EventHandler(this.udTestGenLow_LostFocus); // // btnTestGenSweep // this.btnTestGenSweep.Image = null; this.btnTestGenSweep.Location = new System.Drawing.Point(336, 160); this.btnTestGenSweep.Name = "btnTestGenSweep"; this.btnTestGenSweep.Size = new System.Drawing.Size(48, 23); this.btnTestGenSweep.TabIndex = 0; this.btnTestGenSweep.Text = "Sweep"; this.toolTip1.SetToolTip(this.btnTestGenSweep, "Click this button to sweep from the Low setting to the High setting using the Hz/" + "Sec setting."); this.btnTestGenSweep.Click += new System.EventHandler(this.buttonTestGenSweep_Click); // // ckEnableSigGen // this.ckEnableSigGen.Image = null; this.ckEnableSigGen.Location = new System.Drawing.Point(8, 240); this.ckEnableSigGen.Name = "ckEnableSigGen"; this.ckEnableSigGen.Size = new System.Drawing.Size(176, 40); this.ckEnableSigGen.TabIndex = 92; this.ckEnableSigGen.Text = "Enable HW Signal Generator (controlled by VFO B)"; this.ckEnableSigGen.Visible = false; this.ckEnableSigGen.CheckedChanged += new System.EventHandler(this.ckEnableSigGen_CheckedChanged); // // grpTestX2 // this.grpTestX2.Controls.Add(this.lblTestX2); this.grpTestX2.Controls.Add(this.chkTestX2Pin6); this.grpTestX2.Controls.Add(this.chkTestX2Pin5); this.grpTestX2.Controls.Add(this.chkTestX2Pin4); this.grpTestX2.Controls.Add(this.chkTestX2Pin3); this.grpTestX2.Controls.Add(this.chkTestX2Pin2); this.grpTestX2.Controls.Add(this.chkTestX2Pin1); this.grpTestX2.Location = new System.Drawing.Point(8, 160); this.grpTestX2.Name = "grpTestX2"; this.grpTestX2.Size = new System.Drawing.Size(160, 72); this.grpTestX2.TabIndex = 87; this.grpTestX2.TabStop = false; this.grpTestX2.Text = "X2"; // // lblTestX2 // this.lblTestX2.Image = null; this.lblTestX2.Location = new System.Drawing.Point(16, 48); this.lblTestX2.Name = "lblTestX2"; this.lblTestX2.Size = new System.Drawing.Size(136, 16); this.lblTestX2.TabIndex = 6; this.lblTestX2.Text = "1 2 3 4 5 6"; // // chkTestX2Pin6 // this.chkTestX2Pin6.Image = null; this.chkTestX2Pin6.Location = new System.Drawing.Point(136, 24); this.chkTestX2Pin6.Name = "chkTestX2Pin6"; this.chkTestX2Pin6.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin6.TabIndex = 5; this.chkTestX2Pin6.Text = "checkBox6"; this.chkTestX2Pin6.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin5 // this.chkTestX2Pin5.Image = null; this.chkTestX2Pin5.Location = new System.Drawing.Point(112, 24); this.chkTestX2Pin5.Name = "chkTestX2Pin5"; this.chkTestX2Pin5.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin5.TabIndex = 4; this.chkTestX2Pin5.Text = "checkBox5"; this.chkTestX2Pin5.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin4 // this.chkTestX2Pin4.Image = null; this.chkTestX2Pin4.Location = new System.Drawing.Point(88, 24); this.chkTestX2Pin4.Name = "chkTestX2Pin4"; this.chkTestX2Pin4.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin4.TabIndex = 3; this.chkTestX2Pin4.Text = "checkBox4"; this.chkTestX2Pin4.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin3 // this.chkTestX2Pin3.Image = null; this.chkTestX2Pin3.Location = new System.Drawing.Point(64, 24); this.chkTestX2Pin3.Name = "chkTestX2Pin3"; this.chkTestX2Pin3.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin3.TabIndex = 2; this.chkTestX2Pin3.Text = "checkBox3"; this.chkTestX2Pin3.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin2 // this.chkTestX2Pin2.Image = null; this.chkTestX2Pin2.Location = new System.Drawing.Point(40, 24); this.chkTestX2Pin2.Name = "chkTestX2Pin2"; this.chkTestX2Pin2.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin2.TabIndex = 1; this.chkTestX2Pin2.Text = "checkBox2"; this.chkTestX2Pin2.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // chkTestX2Pin1 // this.chkTestX2Pin1.Image = null; this.chkTestX2Pin1.Location = new System.Drawing.Point(16, 24); this.chkTestX2Pin1.Name = "chkTestX2Pin1"; this.chkTestX2Pin1.Size = new System.Drawing.Size(16, 24); this.chkTestX2Pin1.TabIndex = 0; this.chkTestX2Pin1.Text = "checkBox1"; this.chkTestX2Pin1.CheckedChanged += new System.EventHandler(this.chkTestX2_CheckedChanged); // // grpTestAudioBalance // this.grpTestAudioBalance.Controls.Add(this.btnTestAudioBalStart); this.grpTestAudioBalance.Location = new System.Drawing.Point(344, 8); this.grpTestAudioBalance.Name = "grpTestAudioBalance"; this.grpTestAudioBalance.Size = new System.Drawing.Size(120, 64); this.grpTestAudioBalance.TabIndex = 86; this.grpTestAudioBalance.TabStop = false; this.grpTestAudioBalance.Text = "Audio Balance Test"; // // btnTestAudioBalStart // this.btnTestAudioBalStart.Image = null; this.btnTestAudioBalStart.Location = new System.Drawing.Point(24, 24); this.btnTestAudioBalStart.Name = "btnTestAudioBalStart"; this.btnTestAudioBalStart.TabIndex = 0; this.btnTestAudioBalStart.Text = "Start"; this.btnTestAudioBalStart.Click += new System.EventHandler(this.btnTestAudioBalStart_Click); // // grpTestTXIMD // this.grpTestTXIMD.Controls.Add(this.lblTestToneFreq2); this.grpTestTXIMD.Controls.Add(this.udTestIMDFreq2); this.grpTestTXIMD.Controls.Add(this.lblTestIMDPower); this.grpTestTXIMD.Controls.Add(this.udTestIMDPower); this.grpTestTXIMD.Controls.Add(this.chekTestIMD); this.grpTestTXIMD.Controls.Add(this.lblTestToneFreq1); this.grpTestTXIMD.Controls.Add(this.udTestIMDFreq1); this.grpTestTXIMD.Location = new System.Drawing.Point(8, 8); this.grpTestTXIMD.Name = "grpTestTXIMD"; this.grpTestTXIMD.Size = new System.Drawing.Size(152, 144); this.grpTestTXIMD.TabIndex = 83; this.grpTestTXIMD.TabStop = false; this.grpTestTXIMD.Text = "Two Tone Test"; // // lblTestToneFreq2 // this.lblTestToneFreq2.Image = null; this.lblTestToneFreq2.Location = new System.Drawing.Point(16, 48); this.lblTestToneFreq2.Name = "lblTestToneFreq2"; this.lblTestToneFreq2.Size = new System.Drawing.Size(64, 16); this.lblTestToneFreq2.TabIndex = 88; this.lblTestToneFreq2.Text = "Freq #2:"; // // udTestIMDFreq2 // this.udTestIMDFreq2.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDFreq2.Location = new System.Drawing.Point(80, 48); this.udTestIMDFreq2.Maximum = new System.Decimal(new int[] { 20000, 0, 0, 0}); this.udTestIMDFreq2.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDFreq2.Name = "udTestIMDFreq2"; this.udTestIMDFreq2.Size = new System.Drawing.Size(56, 20); this.udTestIMDFreq2.TabIndex = 87; this.udTestIMDFreq2.Value = new System.Decimal(new int[] { 19000, 0, 0, 65536}); this.udTestIMDFreq2.LostFocus += new System.EventHandler(this.udTestIMDFreq2_LostFocus); // // lblTestIMDPower // this.lblTestIMDPower.Image = null; this.lblTestIMDPower.Location = new System.Drawing.Point(16, 72); this.lblTestIMDPower.Name = "lblTestIMDPower"; this.lblTestIMDPower.Size = new System.Drawing.Size(64, 16); this.lblTestIMDPower.TabIndex = 86; this.lblTestIMDPower.Text = "Power:"; // // udTestIMDPower // this.udTestIMDPower.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDPower.Location = new System.Drawing.Point(80, 72); this.udTestIMDPower.Maximum = new System.Decimal(new int[] { 100, 0, 0, 0}); this.udTestIMDPower.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDPower.Name = "udTestIMDPower"; this.udTestIMDPower.Size = new System.Drawing.Size(56, 20); this.udTestIMDPower.TabIndex = 85; this.udTestIMDPower.Value = new System.Decimal(new int[] { 50, 0, 0, 0}); this.udTestIMDPower.LostFocus += new System.EventHandler(this.udTestIMDPower_LostFocus); // // chekTestIMD // this.chekTestIMD.Appearance = System.Windows.Forms.Appearance.Button; this.chekTestIMD.Image = null; this.chekTestIMD.Location = new System.Drawing.Point(48, 104); this.chekTestIMD.Name = "chekTestIMD"; this.chekTestIMD.Size = new System.Drawing.Size(64, 24); this.chekTestIMD.TabIndex = 84; this.chekTestIMD.Text = "Start"; this.chekTestIMD.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.chekTestIMD.CheckedChanged += new System.EventHandler(this.chkTestIMD_CheckedChanged); // // lblTestToneFreq1 // this.lblTestToneFreq1.Image = null; this.lblTestToneFreq1.Location = new System.Drawing.Point(16, 24); this.lblTestToneFreq1.Name = "lblTestToneFreq1"; this.lblTestToneFreq1.Size = new System.Drawing.Size(64, 16); this.lblTestToneFreq1.TabIndex = 83; this.lblTestToneFreq1.Text = "Freq #1:"; // // udTestIMDFreq1 // this.udTestIMDFreq1.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udTestIMDFreq1.Location = new System.Drawing.Point(80, 24); this.udTestIMDFreq1.Maximum = new System.Decimal(new int[] { 20000, 0, 0, 0}); this.udTestIMDFreq1.Minimum = new System.Decimal(new int[] { 0, 0, 0, 0}); this.udTestIMDFreq1.Name = "udTestIMDFreq1"; this.udTestIMDFreq1.Size = new System.Drawing.Size(56, 20); this.udTestIMDFreq1.TabIndex = 82; this.udTestIMDFreq1.Value = new System.Decimal(new int[] { 7000, 0, 0, 65536}); this.udTestIMDFreq1.LostFocus += new System.EventHandler(this.udTestIMDFreq1_LostFocus); // // grpImpulseTest // this.grpImpulseTest.Controls.Add(this.udImpulseNum); this.grpImpulseTest.Controls.Add(this.btnImpulse); this.grpImpulseTest.Location = new System.Drawing.Point(168, 8); this.grpImpulseTest.Name = "grpImpulseTest"; this.grpImpulseTest.Size = new System.Drawing.Size(160, 64); this.grpImpulseTest.TabIndex = 91; this.grpImpulseTest.TabStop = false; this.grpImpulseTest.Text = "Impulse Test"; // // udImpulseNum // this.udImpulseNum.Increment = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udImpulseNum.Location = new System.Drawing.Point(104, 24); this.udImpulseNum.Maximum = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udImpulseNum.Minimum = new System.Decimal(new int[] { 1, 0, 0, 0}); this.udImpulseNum.Name = "udImpulseNum"; this.udImpulseNum.Size = new System.Drawing.Size(40, 20); this.udImpulseNum.TabIndex = 92; this.udImpulseNum.Value = new System.Decimal(new int[] { 20, 0, 0, 0}); this.udImpulseNum.LostFocus += new System.EventHandler(this.udImpulseNum_LostFocus); // // btnImpulse // this.btnImpulse.Image = null; this.btnImpulse.Location = new System.Drawing.Point(16, 24); this.btnImpulse.Name = "btnImpulse"; this.btnImpulse.TabIndex = 90; this.btnImpulse.Text = "Impulse"; this.btnImpulse.Click += new System.EventHandler(this.btnImpulse_Click); // // btnOK // this.btnOK.Image = null; this.btnOK.Location = new System.Drawing.Point(328, 328); this.btnOK.Name = "btnOK"; this.btnOK.TabIndex = 17; this.btnOK.Text = "OK"; this.toolTip1.SetToolTip(this.btnOK, "Keep current settings and close form."); this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // btnCancel // this.btnCancel.Image = null; this.btnCancel.Location = new System.Drawing.Point(416, 328); this.btnCancel.Name = "btnCancel"; this.btnCancel.TabIndex = 18; this.btnCancel.Text = "Cancel"; this.toolTip1.SetToolTip(this.btnCancel, "Load settings from database and close form."); this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnApply // this.btnApply.Image = null; this.btnApply.Location = new System.Drawing.Point(504, 328); this.btnApply.Name = "btnApply"; this.btnApply.TabIndex = 19; this.btnApply.Text = "Apply"; this.toolTip1.SetToolTip(this.btnApply, "Save current settings to the database."); this.btnApply.Click += new System.EventHandler(this.btnApply_Click); // // btnResetDB // this.btnResetDB.Image = null; this.btnResetDB.Location = new System.Drawing.Point(16, 328); this.btnResetDB.Name = "btnResetDB"; this.btnResetDB.Size = new System.Drawing.Size(96, 23); this.btnResetDB.TabIndex = 20; this.btnResetDB.Text = "Reset Database"; this.toolTip1.SetToolTip(this.btnResetDB, "Copies the current database to the desktop and resets to the defaults (after rest" + "arting)"); this.btnResetDB.Click += new System.EventHandler(this.btnResetDB_Click); // // btnImportDB // this.btnImportDB.Image = null; this.btnImportDB.Location = new System.Drawing.Point(136, 328); this.btnImportDB.Name = "btnImportDB"; this.btnImportDB.Size = new System.Drawing.Size(112, 23); this.btnImportDB.TabIndex = 21; this.btnImportDB.Text = "Import Database..."; this.toolTip1.SetToolTip(this.btnImportDB, "Import a saved PowerSDR Database file."); this.btnImportDB.Click += new System.EventHandler(this.btnImportDB_Click); // // openFileDialog1 // this.openFileDialog1.InitialDirectory = "Application.StartupPath"; this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk); // // timer_sweep // this.timer_sweep.Tick += new System.EventHandler(this.timer_sweep_Tick); // // Setup // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(606, 347); this.Controls.Add(this.btnImportDB); this.Controls.Add(this.btnResetDB); this.Controls.Add(this.btnApply); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOK); this.Controls.Add(this.tcSetup); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Menu = this.mainMenu1; this.Name = "Setup"; this.Text = "PowerSDR-IQ Setup"; this.Closing += new System.ComponentModel.CancelEventHandler(this.Setup_Closing); this.tcSetup.ResumeLayout(false); this.tpGeneral.ResumeLayout(false); this.tcGeneral.ResumeLayout(false); this.tpGeneralHardware.ResumeLayout(false); this.grpHWSoftRock.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udSoftRockCenterFreq)).EndInit(); this.grpGeneralDDS.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udSi570Addr)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udMaxFreq)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udFreqMult)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSCorrection)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSIFFreq)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDDSPLLMult)).EndInit(); this.grpGeneralModel.ResumeLayout(false); this.grpGeneralHardwareSDR1000.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralLPTDelay)).EndInit(); this.grpGeneralHardwareFLEX5000.ResumeLayout(false); this.tpUSB.ResumeLayout(false); this.groupBox2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAD995xAtt)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xCalibration)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xSDRMult)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xClockPLL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAD995xClock)).EndInit(); this.groupBox3.ResumeLayout(false); this.tpGeneralCalibration.ResumeLayout(false); this.grpGenCalRXImage.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAIRPosition)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRPoints)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRGain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRPhase)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRBin)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq3)).EndInit(); this.grpGenCalLevel.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq2)).EndInit(); this.grpGeneralCalibration.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralCalFreq1)).EndInit(); this.tpFilters.ResumeLayout(false); this.grpOptFilterControls.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udFilterDefaultLowCut)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterShift)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptMaxFilterWidth)).EndInit(); this.tpRX2.ResumeLayout(false); this.tpGeneralOptions.ResumeLayout(false); this.grpGenCustomTitleText.ResumeLayout(false); this.grpOptMisc.ResumeLayout(false); this.grpOptQuickQSY.ResumeLayout(false); this.grpGenAutoMute.ResumeLayout(false); this.grpGenTuningOptions.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGL)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udOptClickTuneOffsetDIGU)).EndInit(); this.grpGeneralOptions.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udGeneralX2Delay)).EndInit(); this.grpGeneralProcessPriority.ResumeLayout(false); this.grpGeneralUpdates.ResumeLayout(false); this.tpExtIO.ResumeLayout(false); this.grpExtIOPMSDR.ResumeLayout(false); this.tpBPFLPF.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.ud6mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud6mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud10mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud10mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud12mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud12mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud15mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud15mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud17mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud17mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud20mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud20mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud30mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud30mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud40mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud40mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud60mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud60mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud80mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud80mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud160mLPFEnd)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud160mLPFStart)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud6m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud10m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud12m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud15m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud17m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud20m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud30m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud40m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud60m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud80m)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ud160m)).EndInit(); this.tpSerial.ResumeLayout(false); this.grpGeneralSerial.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udSerialDelay)).EndInit(); this.tpExtCtrl.ResumeLayout(false); this.grpExtTX.ResumeLayout(false); this.grpExtRX.ResumeLayout(false); this.tpAudio.ResumeLayout(false); this.tcAudio.ResumeLayout(false); this.tpAudioCard1.ResumeLayout(false); this.groupBoxTS1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udIQCorrection)).EndInit(); this.grpAudioMicBoost.ResumeLayout(false); this.grpAudioChannels.ResumeLayout(false); this.grpAudioMicInGain1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioMicGain1)).EndInit(); this.grpAudioLineInGain1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioLineIn1)).EndInit(); this.grpAudioVolts1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioVoltage1)).EndInit(); this.grpAudioDetails1.ResumeLayout(false); this.grpAudioLatency1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency1)).EndInit(); this.grpAudioCard.ResumeLayout(false); this.grpAudioBufferSize1.ResumeLayout(false); this.grpAudioSampleRate1.ResumeLayout(false); this.tpVAC.ResumeLayout(false); this.grpDirectIQOutput.ResumeLayout(false); this.grpAudioVACAutoEnable.ResumeLayout(false); this.grpAudioVACGain.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAudioVACGainRX)).EndInit(); this.grpAudio2Stereo.ResumeLayout(false); this.grpAudioLatency2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAudioLatency2)).EndInit(); this.grpAudioSampleRate2.ResumeLayout(false); this.grpAudioBuffer2.ResumeLayout(false); this.grpAudioDetails2.ResumeLayout(false); this.tpDSP.ResumeLayout(false); this.tcDSP.ResumeLayout(false); this.tpDSPOptions.ResumeLayout(false); this.grpDSPBufferSize.ResumeLayout(false); this.grpDSPBufDig.ResumeLayout(false); this.grpDSPBufCW.ResumeLayout(false); this.grpDSPBufPhone.ResumeLayout(false); this.grpDSPNB.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB)).EndInit(); this.grpDSPLMSNR.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRLeak)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRgain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRdelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSNRtaps)).EndInit(); this.grpDSPLMSANF.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFLeak)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFgain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFdelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udLMSANFtaps)).EndInit(); this.grpDSPWindow.ResumeLayout(false); this.grpDSPNB2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPNB2)).EndInit(); this.tpDSPImageReject.ResumeLayout(false); this.grpDSPImageRejectRX.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udAIRCalibrationPoint)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRCalibrationIF)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udAIRCalibrationPosition)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbAIRCalibrationPosition)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainRX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseRX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseRX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainRX)).EndInit(); this.grpDSPImageRejectTX.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPImageGainTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPImagePhaseTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImagePhaseTX)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPImageGainTX)).EndInit(); this.tpDSPKeyer.ResumeLayout(false); this.grpKeyerConnections.ResumeLayout(false); this.grpDSPCWPitch.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPCWPitch)).EndInit(); this.grpDSPKeyerOptions.ResumeLayout(false); this.grpDSPKeyerSignalShaping.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerDeBounce)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerWeight)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udCWKeyerRamp)).EndInit(); this.grpDSPKeyerSemiBreakIn.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udCWBreakInDelay)).EndInit(); this.tpDSPAGCALC.ResumeLayout(false); this.grpDSPLeveler.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPLevelerAttack)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbDSPLevelerHangThreshold)).EndInit(); this.grpDSPALC.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbDSPALCHangThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPALCAttack)).EndInit(); this.grpDSPAGC.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbDSPAGCHangThreshold)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCMaxGaindB)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCSlope)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCDecay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCAttack)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDSPAGCFixedGaindB)).EndInit(); this.tpDisplay.ResumeLayout(false); this.grpDisplayMultimeter.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udMeterDigitalDelay)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterAvg)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiTextHoldTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMultiPeakHoldTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayMeterDelay)).EndInit(); this.grpDisplayDriverEngine.ResumeLayout(false); this.grpDisplayPolyPhase.ResumeLayout(false); this.grpDisplayScopeMode.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayScopeTime)).EndInit(); this.grpDisplayWaterfall.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallUpdatePeriod)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallAvgTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallLowLevel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayWaterfallHighLevel)).EndInit(); this.grpDisplayRefreshRates.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayCPUMeter)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPeakText)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayFPS)).EndInit(); this.grpDisplayAverage.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayAVGTime)).EndInit(); this.grpDisplayPhase.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayPhasePts)).EndInit(); this.grpDisplaySpectrumGrid.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridStep)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMin)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udDisplayGridMax)).EndInit(); this.tpTransmit.ResumeLayout(false); this.grpTXAM.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXAMCarrierLevel)).EndInit(); this.grpTXMonitor.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXAF)).EndInit(); this.grpTXVOX.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXHangTime)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXVOXThreshold)).EndInit(); this.grpTXNoiseGate.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXNoiseGate)).EndInit(); this.grpTXProfile.ResumeLayout(false); this.grpPATune.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXTunePower)).EndInit(); this.grpTXFilter.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterLow)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTXFilterHigh)).EndInit(); this.tpKeyboard.ResumeLayout(false); this.grpKBXIT.ResumeLayout(false); this.grpKBRIT.ResumeLayout(false); this.grpKBMode.ResumeLayout(false); this.grpKBBand.ResumeLayout(false); this.grpKBTune.ResumeLayout(false); this.grpKBFilter.ResumeLayout(false); this.grpKBCW.ResumeLayout(false); this.tpAppearance.ResumeLayout(false); this.tcAppearance.ResumeLayout(false); this.tpAppearanceDisplay.ResumeLayout(false); this.grpAppPanadapter.ResumeLayout(false); this.grpDisplayPeakCursor.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udDisplayLineWidth)).EndInit(); this.tpAppearanceGeneral.ResumeLayout(false); this.grpAppearanceBand.ResumeLayout(false); this.grpAppearanceVFO.ResumeLayout(false); this.tpAppearanceMeter.ResumeLayout(false); this.grpMeterEdge.ResumeLayout(false); this.grpAppearanceMeter.ResumeLayout(false); this.tpPowerAmplifier.ResumeLayout(false); this.grpPABandOffset.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udPAADC17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC160)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC80)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC60)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC40)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAADC30)).EndInit(); this.grpPAGainByBand.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udPACalPower)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain15)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain17)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain20)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain30)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain40)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain60)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain80)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udPAGain160)).EndInit(); this.tpCAT.ResumeLayout(false); this.grpPTTBitBang.ResumeLayout(false); this.grpCatControlBox.ResumeLayout(false); this.grpRTTYOffset.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udRTTYU)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udRTTYL)).EndInit(); this.tpTests.ResumeLayout(false); this.grpBoxTS1.ResumeLayout(false); this.grpSigGenTransmit.ResumeLayout(false); this.grpSigGenReceive.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTestGenScale)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tkbarTestGenFreq)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHzSec)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenHigh)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestGenLow)).EndInit(); this.grpTestX2.ResumeLayout(false); this.grpTestAudioBalance.ResumeLayout(false); this.grpTestTXIMD.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDPower)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.udTestIMDFreq1)).EndInit(); this.grpImpulseTest.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.udImpulseNum)).EndInit(); this.ResumeLayout(false); }