diff --git a/ServiceFwUpdate/ServiceFwUpdate.sln.DotSettings b/ServiceFwUpdate/ServiceFwUpdate.sln.DotSettings index f941901b..68ca4beb 100644 --- a/ServiceFwUpdate/ServiceFwUpdate.sln.DotSettings +++ b/ServiceFwUpdate/ServiceFwUpdate.sln.DotSettings @@ -1,11 +1,15 @@  + False + False + False PCB - False - False - False - False - False + True + True + True + True + True False + True False True False diff --git a/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.Designer.cs b/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.Designer.cs index 888c8b76..76e4824e 100644 --- a/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.Designer.cs +++ b/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.Designer.cs @@ -414,6 +414,7 @@ this.gridViewCordonelSelection.Name = "gridViewCordonelSelection"; this.gridViewCordonelSelection.ReadOnly = true; this.gridViewCordonelSelection.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridViewCordonelsSelection_CellClick); + this.gridViewCordonelSelection.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.gridViewCordonelSelection_ColumnHeaderMouseClick); // // tblPanelCordonelSearch // diff --git a/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.cs b/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.cs index bb4c9f0a..a375e91c 100644 --- a/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.cs +++ b/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.cs @@ -767,7 +767,6 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder SetStatusProgressBar(); _dbAccessDelayCtrMs = 0; _processState = ProcessState.GetCordonelProductionOrdersFromDb; - } if (e.TabPage == tabPageCustomerSelection) @@ -1041,7 +1040,7 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder _logger.Info(StrSeparator); InitializeComponent(); - + if (_cultureInfo.IetfLanguageTag.Contains("de-")) radioBtnGermanLanguage.Checked = true; else @@ -1341,7 +1340,7 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder if (_fwUpdateCapability.All(x => x.ReleaseContainerLoaded == false) || _fwUpdateCapability.Any(x => x.RecoveryNotNeededOrLoaded == false) || _fwUpdateCapability.Any(x => x.PowerCorrectionNotNeededOrLoaded == false) || - _fwUpdateCapability.Any(x => x.PasswordContainerLoaded == false) ) + _fwUpdateCapability.Any(x => x.PasswordContainerLoaded == false)) { _processState = ProcessState.Error; return false; @@ -2450,8 +2449,8 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder value = 100; if (value < 0) value = 0; - ProgressBarStatus.Visible = visible; - ProgressBarStatus.Value = value; + ProgressBarStatus.Visible = visible; + ProgressBarStatus.Value = value; } catch (Exception) { @@ -4011,7 +4010,7 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder } - // select register restore + // select factory reset if (gridViewCordonelSelection.Columns[e.ColumnIndex].Name == Resources.StrTableRegisterRestoreSelect) { // Search the cordonel in the production search list @@ -4114,14 +4113,14 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder // fill search masks for FW package selection if (!string.IsNullOrEmpty(cordSearch.CoreRevision) && cordSearch.CoreRevision != Constants.StrUnknown && - _coreSearchItems.All( x => x != cordSearch.CoreRevision)) + _coreSearchItems.All(x => x != cordSearch.CoreRevision)) { _coreSearchItems.Add(cordSearch.CoreRevision); } // fill search masks for FW package selection if (!string.IsNullOrEmpty(cordSearch.Metrology) && - cordSearch.Metrology != Constants.StrUnknown && + cordSearch.Metrology != Constants.StrUnknown && _metrologySearchItems.All(x => x != cordSearch.Metrology)) { _metrologySearchItems.Add(cordSearch.Metrology); @@ -4157,6 +4156,38 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder _processState = ProcessState.Error; } } + /// + /// Overwrite header cell click to to toggle all Cordonel selections + /// + /// + /// + /// + /// - Initial. + /// + private void gridViewCordonelSelection_ColumnHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e) + { + try + { + var cordSearchCtr = 0; + // Toggle all factory resets for every Cordonel + if (gridViewCordonelSelection.Columns[e.ColumnIndex].Name == Resources.StrTableRegisterRestoreSelect || + gridViewCordonelSelection.Columns[e.ColumnIndex].Name == Resources.StrTableSelect) + { + // Search the cordonel in the production search list + foreach (var cordSearch in _cordonelProductionSearchInfos) + { + var cellEventArgs = new DataGridViewCellEventArgs(e.ColumnIndex, cordSearchCtr); + gridViewCordonelsSelection_CellClick(this, cellEventArgs); + cordSearchCtr++; + Update(); + } + } + } + catch (Exception) + { + _processState = ProcessState.Error; + } + } /// /// Build data grid for cordonels @@ -4185,6 +4216,9 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder /// /// - Disabled language selection, culture info fixed to english. /// + /// + /// - Avoid sorting of 'selection' and 'factory reset' columns. + /// private void FillDataGridWithCordonelInfos() { grpLanguageSelection.Enabled = false; @@ -4264,7 +4298,9 @@ namespace Xylem.ServiceFwUpdate.Ui.FwUpdateBuilder foreach (DataGridViewColumn column in gridViewCordonelSelection.Columns) { - column.SortMode = DataGridViewColumnSortMode.Automatic; + if (column.Name != Resources.StrTableRegisterRestoreSelect && + column.Name != Resources.StrTableSelect) + column.SortMode = DataGridViewColumnSortMode.Automatic; } } catch (Exception) diff --git a/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.resx b/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.resx index 78bd0c11..ef8c4da0 100644 --- a/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.resx +++ b/ServiceFwUpdate/Ui/ServiceFwUpdateBuilder/FrmFwUpdateBuilder.resx @@ -241,6 +241,57 @@ 0 + + radioBtnGermanLanguage + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + grpLanguageSelection + + + 0 + + + radioBtnEnglishLanguage + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + grpLanguageSelection + + + 1 + + + 6, 78 + + + 101, 61 + + + 42 + + + Language + + + False + + + grpLanguageSelection + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelInfo + + + 1 + True @@ -301,36 +352,33 @@ 1 - - 6, 78 - - - 101, 61 - - - 42 - - - Language - - - False - - - grpLanguageSelection - - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelInfo - - - 1 - 17, 17 + + 0, 707 + + + 1008, 22 + + + 44 + + + Main Status + + + StatusDisplay + + + System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + MiddleRight @@ -361,63 +409,9 @@ False - - 0, 707 - - - 1008, 22 - - - 44 - - - Main Status - - - StatusDisplay - - - System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 1 - 133, 17 - - 93, 22 - - - E&xit - - - 37, 20 - - - &File - - - 55, 20 - - - &Wizard - - - 95, 22 - - - &Info - - - 44, 20 - - - &Help - 0, 0 @@ -442,6 +436,36 @@ 2 + + 37, 20 + + + &File + + + 93, 22 + + + E&xit + + + 55, 20 + + + &Wizard + + + 44, 20 + + + &Help + + + 95, 22 + + + &Info + Fill @@ -475,12 +499,918 @@ GrowAndShrink + + panelCustomerSelection + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageCustomerSelection + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 4 + + + Customer Selection + + + tabPageCustomerSelection + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 0 + + + 1 + + + Fill + + + 0, 31 + + + 0, 0, 0, 0 + + + 986, 390 + + + 2 + + + gridViewCordonelSelection + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSelection + + + 0 + + + 7 + + + tbxCordonelProductionOrdersSearch + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSearch + + + 0 + + + cbxCordonelProductionOrdersSearch + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSearch + + + 1 + + + lblInfoSelectCustomer + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSearch + + + 2 + + + btnCordonelSearch + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSearch + + + 3 + + + lblCordonelProductionNumberSearch + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSearch + + + 4 + + + lblCordonelCustomerSerialNumberSearch + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSearch + + + 5 + + + Fill + + + 0, 0 + + + 0, 0, 0, 0 + + + 1 + + + 986, 31 + + + 1 + + + tblPanelCordonelSearch + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCordonelSelection + + + 1 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tbxCordonelProductionOrdersSearch" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cbxCordonelProductionOrdersSearch" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lblInfoSelectCustomer" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="btnCordonelSearch" Row="0" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="lblCordonelProductionNumberSearch" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelCustomerSerialNumberSearch" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /></Controls><Columns Styles="Absolute,122,Absolute,141,Absolute,108,Absolute,134,Absolute,104,Absolute,108,Percent,100" /><Rows Styles="Percent,100" /></TableLayoutSettings> + + + Fill + + + 0, 0 + + + 0, 0, 0, 0 + + + 2 + + + 986, 421 + + + 0 + + + tblPanelCordonelSelection + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelCordonelSelection + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="gridViewCordonelSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelCordonelSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> + + + Fill + + + 3, 3 + + + 0, 0, 0, 0 + + + 986, 421 + + + 1 + + + panelCordonelSelection + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageCordonelSelection + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 0 + + + Cordonel Selection + + + tabPageCordonelSelection + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 1 + + + panelFwPackageSelection + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageFwPackageSelection + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 5 + + + FW-Package Selection + + + tabPageFwPackageSelection + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 2 + + + gridViewUpdateOperators + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageUpdateOperator + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 1 + + + Update Operators + + + tabPageUpdateOperator + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 3 + + + gridViewPreBuildSummary + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPagePreBuildSummary + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 6 + + + Pre Build Summary + + + tabPagePreBuildSummary + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 4 + + + rtbReport + + + System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageSafeBuildReport + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 3 + + + Safe Build Report + + + tabPageSafeBuildReport + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 5 + + + tblFwUpdateSafeSelection + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageFwUpdateSafes + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelFwUpdateSafeSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewFwUpdateSafeSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 8 + + + FW-Update Safes + + + tabPageFwUpdateSafes + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 6 + + + tblPanelFwUpdateReports + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageReports + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelFwUpdateReportsSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewFwUpdateReportSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> + + + 4, 22 + + + 3, 3, 3, 3 + + + 994, 429 + + + 7 + + + FW-Update Reports + + + tabPageReports + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabControlSelection + + + 7 + + + Fill + + + 0, 0 + + + 0, 31 + + + 1002, 455 + + + 50 + + + tabControlSelection + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelSelection + + + 0 + + + Fill + + + 3, 166 + + + 1002, 455 + + + 43 + + + panelSelection + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer0 + + + 0 + + + True + + + GrowAndShrink + + + 3 + + + tblPanelSafeInfo + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Top + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lblCustomerNameText" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblCustomerNumber" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCustomerNumberText" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwUpdateDutyDateText" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwUpdateDutyDate" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblUpdateOperatorText" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblOrderNumberText" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblUpdateOperator" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelsCustomerText" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="tbxCustomerName" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tbxCordonelsCustomerCount" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="tableLayoutPanel1" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelSelectedCountText" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblCordonelsSelectedCount" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lblSelectedFwPackagesText" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblSelectedFwPackages" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lblCordonelApprovedCountText" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblCordonelsApprovedCount" Row="3" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="Absolute,129,Absolute,131,Absolute,40,Absolute,150,Absolute,50,Percent,100" /><Rows Styles="Absolute,25,Absolute,25,Percent,100,Absolute,25,Absolute,25,Absolute,25" /></TableLayoutSettings> + + + pictureBox1 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Top + + + 1 + + + Fill + + + 3, 3 + + + 1 + + + 1002, 157 + + + 44 + + + tblPanelLayer1Top + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer0 + + + 1 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelSafeInfo" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pictureBox1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="panelInfo" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /></Controls><Columns Styles="Absolute,150,Percent,100,Absolute,120" /><Rows Styles="Percent,100" /></TableLayoutSettings> + + + GrowAndShrink + + + 3 + + + tblPanelSpecialButtons + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Bottom + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="btnLicenseFwUpdateBuilder" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="btnLicenseFwUpdateSw" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,41,Absolute,38,Absolute,34,Absolute,105" /><Rows Styles="Absolute,30,Percent,100" /></TableLayoutSettings> + + + tblPanelStandardButtons + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Bottom + + + 1 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="btnBuildFwUpdateSafe" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="btnUploadSafeToDb" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Absolute,106,Absolute,114" /><Rows Styles="Percent,50,Percent,50" /></TableLayoutSettings> + + + tblPanelDebugDevices + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Bottom + + + 2 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="cbxAddDebugCordonels" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,10" /><Rows Styles="Percent,50,Percent,50" /></TableLayoutSettings> + + + Fill + + + 0, 624 + + + 0, 0, 0, 0 + + + 1 + + + 1008, 59 + + + 45 + + + tblPanelLayer1Bottom + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer0 + + + 2 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelSpecialButtons" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tblPanelStandardButtons" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="tblPanelDebugDevices" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,396,Absolute,220" /><Rows Styles="Percent,100" /></TableLayoutSettings> + + + Fill + + + 0, 24 + + + 3 + + + 1008, 683 + + + 50 + + + tblPanelLayer0 + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="panelSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelLayer1Top" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelLayer1Bottom" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,163,Percent,100,Absolute,59" /></TableLayoutSettings> + + + tblPanelCustomerSelection + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelCustomerSelection + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelCustomerSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewCustomerSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> + + + Fill + + + 3, 3 + + + 0, 0, 0, 0 + + + 986, 421 + + + 1 + + + panelCustomerSelection + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageCustomerSelection + + + 0 + 1 + + tblPanelCustomerSearch + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCustomerSelection + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tbxCustomerSearchMask" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lblCustomerMaskText" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="btnSearchCustomer" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /></Controls><Columns Styles="Absolute,145,Absolute,150,Absolute,120,Absolute,106,Percent,100" /><Rows Styles="Percent,100" /></TableLayoutSettings> + + + gridViewCustomerSelection + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCustomerSelection + + + 1 + + + Fill + + + 0, 0 + + + 0, 0, 0, 0 + + + 2 + + + 986, 421 + + + 1 + + + tblPanelCustomerSelection + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelCustomerSelection + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelCustomerSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewCustomerSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> + 5 + + tbxCustomerSearchMask + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCustomerSearch + + + 0 + + + lblCustomerMaskText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCustomerSearch + + + 1 + + + btnSearchCustomer + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCustomerSearch + + + 2 + + + Fill + + + 0, 0 + + + 0, 0, 0, 0 + + + 1 + + + 986, 31 + + + 0 + + + tblPanelCustomerSearch + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelCustomerSelection + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tbxCustomerSearchMask" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lblCustomerMaskText" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="btnSearchCustomer" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /></Controls><Columns Styles="Absolute,145,Absolute,150,Absolute,120,Absolute,106,Percent,100" /><Rows Styles="Percent,100" /></TableLayoutSettings> + None @@ -568,39 +1498,6 @@ 2 - - Fill - - - 0, 0 - - - 0, 0, 0, 0 - - - 1 - - - 986, 31 - - - 0 - - - tblPanelCustomerSearch - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelCustomerSelection - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tbxCustomerSearchMask" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lblCustomerMaskText" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="btnSearchCustomer" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /></Controls><Columns Styles="Absolute,145,Absolute,150,Absolute,120,Absolute,106,Percent,100" /><Rows Styles="Percent,100" /></TableLayoutSettings> - Fill @@ -628,126 +1525,6 @@ 1 - - Fill - - - 0, 0 - - - 0, 0, 0, 0 - - - 2 - - - 986, 421 - - - 1 - - - tblPanelCustomerSelection - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelCustomerSelection - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelCustomerSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewCustomerSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> - - - Fill - - - 3, 3 - - - 0, 0, 0, 0 - - - 986, 421 - - - 1 - - - panelCustomerSelection - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabPageCustomerSelection - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 4 - - - Customer Selection - - - tabPageCustomerSelection - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 0 - - - 1 - - - Fill - - - 0, 31 - - - 0, 0, 0, 0 - - - 986, 390 - - - 2 - - - gridViewCordonelSelection - - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelCordonelSelection - - - 0 - - - 7 - Left, Right @@ -937,129 +1714,114 @@ 5 - - Fill + + tblFwPackageSelection - - 0, 0 - - - 0, 0, 0, 0 - - - 1 - - - 986, 31 - - - 1 - - - tblPanelCordonelSearch - - + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tblPanelCordonelSelection + + panelFwPackageSelection - - 1 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tbxCordonelProductionOrdersSearch" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cbxCordonelProductionOrdersSearch" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="lblInfoSelectCustomer" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="btnCordonelSearch" Row="0" RowSpan="1" Column="5" ColumnSpan="1" /><Control Name="lblCordonelProductionNumberSearch" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelCustomerSerialNumberSearch" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /></Controls><Columns Styles="Absolute,122,Absolute,141,Absolute,108,Absolute,134,Absolute,104,Absolute,108,Percent,100" /><Rows Styles="Percent,100" /></TableLayoutSettings> - - - Fill - - - 0, 0 - - - 0, 0, 0, 0 - - - 2 - - - 986, 421 - - + 0 - - tblPanelCordonelSelection + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="gridViewFwPackageSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelFwPackageSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,62,Percent,100" /></TableLayoutSettings> - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelCordonelSelection - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="gridViewCordonelSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelCordonelSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> - - + Fill - + 3, 3 - + 0, 0, 0, 0 - + 986, 421 - + 1 - - panelCordonelSelection + + panelFwPackageSelection - + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tabPageCordonelSelection + + tabPageFwPackageSelection - + 0 - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 0 - - - Cordonel Selection - - - tabPageCordonelSelection - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 1 - + + True + 1 + + gridViewFwPackageSelection + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblFwPackageSelection + + + 0 + + + tblPanelFwPackageSearch + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblFwPackageSelection + + + 1 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lblFwPackageSearchRegion" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwPackageSearchFrequency" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="cbxFwPackageRegionMask" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="cbxFwPackageRadioMask" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="btnFwPackageSearch" Row="0" RowSpan="1" Column="8" ColumnSpan="1" /><Control Name="lblFwPackageSearchSize" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="cbxFwPackageSizeMask" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblFwPackageSearchMetrology" Row="1" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="cbxFwPackageMetrologyMask" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblFwPackageSearchCore" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cbxFwPackageCoreMak" Row="0" RowSpan="1" Column="5" ColumnSpan="1" /></Controls><Columns Styles="Absolute,60,Absolute,80,Absolute,80,Absolute,80,Absolute,80,Absolute,80,Absolute,60,Absolute,80,Absolute,106,Absolute,60,Percent,100" /><Rows Styles="Absolute,31,Absolute,31" /></TableLayoutSettings> + + + Fill + + + 0, 0 + + + 0, 0, 0, 0 + + + 2 + + + 986, 421 + + + 0 + + + tblFwPackageSelection + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panelFwPackageSelection + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="gridViewFwPackageSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelFwPackageSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,62,Percent,100" /></TableLayoutSettings> + Fill @@ -1093,6 +1855,171 @@ 11 + + lblFwPackageSearchRegion + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 0 + + + lblFwPackageSearchFrequency + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 1 + + + cbxFwPackageRegionMask + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 2 + + + cbxFwPackageRadioMask + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 3 + + + btnFwPackageSearch + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 4 + + + lblFwPackageSearchSize + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 5 + + + cbxFwPackageSizeMask + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 6 + + + lblFwPackageSearchMetrology + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 7 + + + cbxFwPackageMetrologyMask + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 8 + + + lblFwPackageSearchCore + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 9 + + + cbxFwPackageCoreMak + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwPackageSearch + + + 10 + + + Fill + + + 0, 0 + + + 0, 0, 0, 0 + + + 2 + + + 986, 62 + + + 1 + + + tblPanelFwPackageSearch + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblFwPackageSelection + + + 1 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lblFwPackageSearchRegion" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwPackageSearchFrequency" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="cbxFwPackageRegionMask" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="cbxFwPackageRadioMask" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="btnFwPackageSearch" Row="0" RowSpan="1" Column="8" ColumnSpan="1" /><Control Name="lblFwPackageSearchSize" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="cbxFwPackageSizeMask" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblFwPackageSearchMetrology" Row="1" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="cbxFwPackageMetrologyMask" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblFwPackageSearchCore" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cbxFwPackageCoreMak" Row="0" RowSpan="1" Column="5" ColumnSpan="1" /></Controls><Columns Styles="Absolute,60,Absolute,80,Absolute,80,Absolute,80,Absolute,80,Absolute,80,Absolute,60,Absolute,80,Absolute,106,Absolute,60,Percent,100" /><Rows Styles="Absolute,31,Absolute,31" /></TableLayoutSettings> + Right @@ -1414,126 +2341,6 @@ 10 - - Fill - - - 0, 0 - - - 0, 0, 0, 0 - - - 2 - - - 986, 62 - - - 1 - - - tblPanelFwPackageSearch - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblFwPackageSelection - - - 1 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lblFwPackageSearchRegion" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwPackageSearchFrequency" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="cbxFwPackageRegionMask" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="cbxFwPackageRadioMask" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="btnFwPackageSearch" Row="0" RowSpan="1" Column="8" ColumnSpan="1" /><Control Name="lblFwPackageSearchSize" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="cbxFwPackageSizeMask" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblFwPackageSearchMetrology" Row="1" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="cbxFwPackageMetrologyMask" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblFwPackageSearchCore" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="cbxFwPackageCoreMak" Row="0" RowSpan="1" Column="5" ColumnSpan="1" /></Controls><Columns Styles="Absolute,60,Absolute,80,Absolute,80,Absolute,80,Absolute,80,Absolute,80,Absolute,60,Absolute,80,Absolute,106,Absolute,60,Percent,100" /><Rows Styles="Absolute,31,Absolute,31" /></TableLayoutSettings> - - - Fill - - - 0, 0 - - - 0, 0, 0, 0 - - - 2 - - - 986, 421 - - - 0 - - - tblFwPackageSelection - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelFwPackageSelection - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="gridViewFwPackageSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelFwPackageSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,62,Percent,100" /></TableLayoutSettings> - - - Fill - - - 3, 3 - - - 0, 0, 0, 0 - - - 986, 421 - - - 1 - - - panelFwPackageSelection - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabPageFwPackageSelection - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 5 - - - FW-Package Selection - - - tabPageFwPackageSelection - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 2 - Fill @@ -1561,33 +2368,6 @@ 0 - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 1 - - - Update Operators - - - tabPageUpdateOperator - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 3 - Fill @@ -1612,33 +2392,6 @@ 0 - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 6 - - - Pre Build Summary - - - tabPagePreBuildSummary - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 4 - Fill @@ -1666,36 +2419,69 @@ 0 - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 3 - - - Safe Build Report - - - tabPageSafeBuildReport - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 5 - 1 + + tblPanelFwUpdateSafeSearch + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblFwUpdateSafeSelection + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls /><Columns Styles="Percent,50,Percent,50" /><Rows Styles="Percent,50" /></TableLayoutSettings> + + + gridViewFwUpdateSafeSelection + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblFwUpdateSafeSelection + + + 1 + + + Fill + + + 3, 3 + + + 0, 0, 0, 0 + + + 2 + + + 986, 421 + + + 0 + + + tblFwUpdateSafeSelection + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageFwUpdateSafes + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelFwUpdateSafeSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewFwUpdateSafeSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> + 2 @@ -1759,69 +2545,69 @@ 1 - - Fill - - - 3, 3 - - - 0, 0, 0, 0 - - - 2 - - - 986, 421 - - - 0 - - - tblFwUpdateSafeSelection - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabPageFwUpdateSafes - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelFwUpdateSafeSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewFwUpdateSafeSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> - - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 8 - - - FW-Update Safes - - - tabPageFwUpdateSafes - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 6 - 1 + + tblPanelFwUpdateReportsSearch + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwUpdateReports + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls /><Columns Styles="Percent,50,Percent,50" /><Rows Styles="Percent,50" /></TableLayoutSettings> + + + gridViewFwUpdateReportSelection + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelFwUpdateReports + + + 1 + + + Fill + + + 3, 3 + + + 0, 0, 0, 0 + + + 2 + + + 986, 421 + + + 0 + + + tblPanelFwUpdateReports + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tabPageReports + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelFwUpdateReportsSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewFwUpdateReportSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> + 2 @@ -1885,129 +2671,264 @@ 1 - - Fill - - - 3, 3 - - - 0, 0, 0, 0 - - - 2 - - - 986, 421 - - - 0 - - - tblPanelFwUpdateReports - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabPageReports - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelFwUpdateReportsSearch" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="gridViewFwUpdateReportSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,31,Percent,100" /></TableLayoutSettings> - - - 4, 22 - - - 3, 3, 3, 3 - - - 994, 429 - - - 7 - - - FW-Update Reports - - - tabPageReports - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tabControlSelection - - - 7 - - - Fill - - - 0, 0 - - - 0, 31 - - - 1002, 455 - - - 50 - - - tabControlSelection - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelSelection - - - 0 - - - Fill - - - 3, 166 - - - 1002, 455 - - - 43 - - - panelSelection - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelLayer0 - - - 0 - - - GrowAndShrink - - - 3 - True + + True + 6 + + lblCustomerNameText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 0 + + + lblCustomerNumber + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 1 + + + lblCustomerNumberText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 2 + + + lblFwUpdateDutyDateText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 3 + + + lblFwUpdateDutyDate + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 4 + + + lblUpdateOperatorText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 5 + + + lblOrderNumberText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 6 + + + lblUpdateOperator + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 7 + + + lblCordonelsCustomerText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 8 + + + tbxCustomerName + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 9 + + + tbxCordonelsCustomerCount + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 10 + + + tableLayoutPanel1 + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 11 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label1" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tbxOrderNumber" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tbxOrderPosition" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,15,Absolute,35" /><Rows Styles="Percent,100" /></TableLayoutSettings> + + + lblCordonelSelectedCountText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 12 + + + lblCordonelsSelectedCount + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 13 + + + lblSelectedFwPackagesText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 14 + + + lblSelectedFwPackages + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 15 + + + lblCordonelApprovedCountText + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 16 + + + lblCordonelsApprovedCount + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 17 + + + Left + + + 153, 3 + + + 6 + + + 508, 151 + + + 48 + + + tblPanelSafeInfo + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Top + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lblCustomerNameText" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblCustomerNumber" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCustomerNumberText" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwUpdateDutyDateText" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwUpdateDutyDate" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblUpdateOperatorText" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblOrderNumberText" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblUpdateOperator" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelsCustomerText" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="tbxCustomerName" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tbxCordonelsCustomerCount" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="tableLayoutPanel1" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelSelectedCountText" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblCordonelsSelectedCount" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lblSelectedFwPackagesText" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblSelectedFwPackages" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lblCordonelApprovedCountText" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblCordonelsApprovedCount" Row="3" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="Absolute,129,Absolute,131,Absolute,40,Absolute,150,Absolute,50,Percent,100" /><Rows Styles="Absolute,25,Absolute,25,Percent,100,Absolute,25,Absolute,25,Absolute,25" /></TableLayoutSettings> + Top, Bottom, Left, Right @@ -2404,6 +3325,75 @@ 3 + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tableLayoutPanel1 + + + 0 + + + tbxOrderNumber + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tableLayoutPanel1 + + + 1 + + + tbxOrderPosition + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tableLayoutPanel1 + + + 2 + + + Fill + + + 129, 76 + + + 0, 0, 0, 0 + + + 1 + + + 131, 25 + + + 20 + + + tableLayoutPanel1 + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSafeInfo + + + 11 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label1" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tbxOrderNumber" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tbxOrderPosition" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,15,Absolute,35" /><Rows Styles="Percent,100" /></TableLayoutSettings> + Left @@ -2488,39 +3478,6 @@ 2 - - Fill - - - 129, 76 - - - 0, 0, 0, 0 - - - 1 - - - 131, 25 - - - 20 - - - tableLayoutPanel1 - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelSafeInfo - - - 11 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label1" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tbxOrderNumber" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tbxOrderPosition" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,15,Absolute,35" /><Rows Styles="Percent,100" /></TableLayoutSettings> - Left @@ -2740,36 +3697,6 @@ 17 - - Left - - - 153, 3 - - - 6 - - - 508, 151 - - - 48 - - - tblPanelSafeInfo - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelLayer1Top - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="lblCustomerNameText" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblCustomerNumber" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCustomerNumberText" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwUpdateDutyDateText" Row="5" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblFwUpdateDutyDate" Row="5" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblUpdateOperatorText" Row="4" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblOrderNumberText" Row="3" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="lblUpdateOperator" Row="4" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelsCustomerText" Row="0" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="tbxCustomerName" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tbxCordonelsCustomerCount" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="tableLayoutPanel1" Row="3" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="lblCordonelSelectedCountText" Row="1" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblCordonelsSelectedCount" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lblSelectedFwPackagesText" Row="2" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblSelectedFwPackages" Row="2" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="lblCordonelApprovedCountText" Row="3" RowSpan="1" Column="3" ColumnSpan="1" /><Control Name="lblCordonelsApprovedCount" Row="3" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="Absolute,129,Absolute,131,Absolute,40,Absolute,150,Absolute,50,Percent,100" /><Rows Styles="Absolute,25,Absolute,25,Percent,100,Absolute,25,Absolute,25,Absolute,25" /></TableLayoutSettings> - @@ -2922,45 +3849,66 @@ 1 - - Fill - - - 3, 3 - - - 1 - - - 1002, 157 - - - 44 - - - tblPanelLayer1Top - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelLayer0 - - - 1 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelSafeInfo" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="pictureBox1" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="panelInfo" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /></Controls><Columns Styles="Absolute,150,Percent,100,Absolute,120" /><Rows Styles="Percent,100" /></TableLayoutSettings> - - - GrowAndShrink - - - 3 - 5 + + btnLicenseFwUpdateBuilder + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSpecialButtons + + + 0 + + + btnLicenseFwUpdateSw + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelSpecialButtons + + + 1 + + + Right + + + 398, 0 + + + 0, 0, 0, 0 + + + 2 + + + 390, 59 + + + 0 + + + tblPanelSpecialButtons + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Bottom + + + 0 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="btnLicenseFwUpdateBuilder" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="btnLicenseFwUpdateSw" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,41,Absolute,38,Absolute,34,Absolute,105" /><Rows Styles="Absolute,30,Percent,100" /></TableLayoutSettings> + None @@ -3030,42 +3978,66 @@ 1 - - Right - - - 398, 0 - - - 0, 0, 0, 0 - - - 2 - - - 390, 59 - - - 0 - - - tblPanelSpecialButtons - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelLayer1Bottom - - - 0 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="btnLicenseFwUpdateBuilder" Row="1" RowSpan="1" Column="4" ColumnSpan="1" /><Control Name="btnLicenseFwUpdateSw" Row="0" RowSpan="1" Column="4" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,41,Absolute,38,Absolute,34,Absolute,105" /><Rows Styles="Absolute,30,Percent,100" /></TableLayoutSettings> - 2 + + btnBuildFwUpdateSafe + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelStandardButtons + + + 0 + + + btnUploadSafeToDb + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelStandardButtons + + + 1 + + + Fill + + + 788, 0 + + + 0, 0, 0, 0 + + + 2 + + + 220, 59 + + + 1 + + + tblPanelStandardButtons + + + System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelLayer1Bottom + + + 1 + + + <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="btnBuildFwUpdateSafe" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="btnUploadSafeToDb" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Absolute,106,Absolute,114" /><Rows Styles="Percent,50,Percent,50" /></TableLayoutSettings> + None @@ -3129,66 +4101,9 @@ 1 - - Fill - - - 788, 0 - - - 0, 0, 0, 0 - - - 2 - - - 220, 59 - - - 1 - - - tblPanelStandardButtons - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelLayer1Bottom - - - 1 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="btnBuildFwUpdateSafe" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="btnUploadSafeToDb" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Absolute,106,Absolute,114" /><Rows Styles="Percent,50,Percent,50" /></TableLayoutSettings> - 2 - - Left - - - True - - - 9, 6 - - - 9, 3, 3, 3 - - - 130, 17 - - - 0 - - - Add Debug Cordonels - - - False - cbxAddDebugCordonels @@ -3231,68 +4146,41 @@ <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="cbxAddDebugCordonels" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,10" /><Rows Styles="Percent,50,Percent,50" /></TableLayoutSettings> - - Fill + + Left - - 0, 624 + + True - - 0, 0, 0, 0 + + 9, 6 - - 1 + + 9, 3, 3, 3 - - 1008, 59 + + 130, 17 - - 45 - - - tblPanelLayer1Bottom - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tblPanelLayer0 - - - 2 - - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="tblPanelSpecialButtons" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="tblPanelStandardButtons" Row="0" RowSpan="1" Column="2" ColumnSpan="1" /><Control Name="tblPanelDebugDevices" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100,Absolute,396,Absolute,220" /><Rows Styles="Percent,100" /></TableLayoutSettings> - - - Fill - - - 0, 24 - - - 3 - - - 1008, 683 - - - 50 - - - tblPanelLayer0 - - - System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - + 0 - - <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="panelSelection" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelLayer1Top" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="tblPanelLayer1Bottom" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,100" /><Rows Styles="Absolute,163,Percent,100,Absolute,59" /></TableLayoutSettings> + + Add Debug Cordonels + + + False + + + cbxAddDebugCordonels + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tblPanelDebugDevices + + + 0 243, 17