rifacimento area monitor variabili (sono aumentate x poter fare debug OSAI...)

This commit is contained in:
Samuele E. Locatelli
2017-04-24 17:10:56 +02:00
parent bb4f5e006f
commit 0a1ea6ab8f
8 changed files with 229 additions and 172 deletions
+5 -5
View File
@@ -572,7 +572,7 @@ namespace MTC_Adapter
sb.AppendLine(string.Format("SpeedRateOver: {0} %", SpeedRateOver));
// update form!
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
/// <summary>
/// Carica ed acquisisce dati del buffer WORD (16 bit) di memoria
@@ -930,7 +930,7 @@ namespace MTC_Adapter
if (FeedRateGrp[i] != 0) sb.AppendLine(string.Format("FeedRate_{1}: {0:00} mm/min", FeedRateGrp[i], i));
}
// update form!
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
/// <summary>
/// Carica ed acquisisce dati del buffer STRING di memoria
@@ -976,7 +976,7 @@ namespace MTC_Adapter
sb.AppendLine(string.Format("{0}: {1}", mapIOT_String[j].varName, valString));
}
// update form!
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
public override void getGlobalData()
{
@@ -989,7 +989,7 @@ namespace MTC_Adapter
public override void processAllMemory()
{
// inizializzo data monitor su FORM
parentForm.dataMonitor = "";
parentForm.dataMonitorSx = "";
// recupero le varie memorie (prima string che mi serve x area selezionata --> programma selezionato)
getIotMem_String();
@@ -1097,7 +1097,7 @@ namespace MTC_Adapter
prevDirAxis[i] = newDir;
}
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
}
}
+4 -4
View File
@@ -1226,7 +1226,7 @@ namespace MTC_Adapter
allarmiCNC = new CMSCncLib.Focas1.ODBALMMSG2();
}
parentForm.dataMonitor = sb.ToString();
parentForm.dataMonitorSx = sb.ToString();
// gestisco lettura dati manutenzione da PLC...
getMtzDataFromPlc();
@@ -1405,7 +1405,7 @@ namespace MTC_Adapter
}
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
/// <summary>
/// procedura di lettura (Multipla) dati da memoria x caricare dati utensile
@@ -1627,7 +1627,7 @@ namespace MTC_Adapter
sb.AppendLine(string.Format("Path {0}, Cent 1: {1:N3}", i + 1, ((decimal)vettTTCoord.c1) / utils.CRI("fattdecimale")));
sb.AppendLine(string.Format("Path {0}, Cent 2: {1:N3}", i + 1, ((decimal)vettTTCoord.c2) / utils.CRI("fattdecimale")));
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
}
@@ -1857,7 +1857,7 @@ namespace MTC_Adapter
}
}
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
}
}
+16 -15
View File
@@ -1713,7 +1713,8 @@ namespace MTC_Adapter
adpRunning = false;
// chiudo!
parentForm.resetProgBar();
parentForm.dataMonitor = "... not connected, waiting for data ...";
parentForm.dataMonitorSx = "... not connected, waiting for data ...";
parentForm.dataMonitorDx = "...";
parentForm.displayTaskAndWait("Adapter Stopped.");
}
@@ -2610,7 +2611,7 @@ namespace MTC_Adapter
// salvo su maschera...
StringBuilder sb = new StringBuilder();
sb.AppendLine(string.Format("ACC_TIME: {0}", mAccTime.Value));
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
// ...aggiorno valore riferimento...
contOreMaccOn = istOreMaccOn;
@@ -2637,7 +2638,7 @@ namespace MTC_Adapter
// salvo su maschera...
StringBuilder sb = new StringBuilder();
sb.AppendLine(string.Format("ACC_TIME_WORK: {0}", mAccTimeWork.Value));
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
// ...aggiorno valore riferimento...
contOreMaccLav = istOreMaccLav;
@@ -2664,7 +2665,7 @@ namespace MTC_Adapter
// salvo su maschera...
StringBuilder sb = new StringBuilder();
sb.AppendLine(string.Format("SlittaTastatore_Count: {0}", mSlittaTast.Value));
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
// ...aggiorno valore riferimento...
contSlittaTast = istSlittaTast;
@@ -2763,7 +2764,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettPath[i].mPathPartCount.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorDx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -2793,7 +2794,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettUnOp[i].mUnOpAccTime.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorDx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -2823,7 +2824,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettUnOp[i].mUnOpNumCU.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorDx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -2853,7 +2854,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettAxis[i].mAxDistDone.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorDx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -2882,7 +2883,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettAxis[i].mAxAccTime.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorDx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -2912,7 +2913,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettAxis[i].mAxInvDDone.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorDx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -2942,7 +2943,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettVacPump[i].mVacPumpWrkTime.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorSx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -2972,7 +2973,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettVacAct[i].mVacActCount.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorSx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -3002,7 +3003,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettLubro[i].mLubroNum.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorSx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -3032,7 +3033,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettSlittaMag[i].mSlittaMagCount.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorSx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
/// <summary>
@@ -3062,7 +3063,7 @@ namespace MTC_Adapter
outString += string.Format("{0} | ", vettProtMag[i].mProtMagCount.Value);
}
// salvo su maschera...
parentForm.dataMonitor += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
parentForm.dataMonitorSx += string.Format("{0}{1}", outString.Substring(0, outString.Length - 3), Environment.NewLine);
return needSave;
}
+4 -3
View File
@@ -1194,7 +1194,8 @@ namespace MTC_Adapter
allarmiCNC = new CMSCncLib.OPENcontrol.MSGERROR();
}
parentForm.dataMonitor = sb.ToString();
parentForm.dataMonitorSx = sb.ToString();
parentForm.dataMonitorDx = "";
// gestisco lettura dati manutenzione da PLC...
getMtzDataFromPlc();
@@ -1342,7 +1343,7 @@ namespace MTC_Adapter
mAlarmCNC.Add(MTConnect.Condition.Level.FAULT, alarmText, allarme.CodeErr.ToString(), "", "");
// mostro in form!
sb.AppendLine(alarmText);
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
catch (Exception exc)
{
@@ -1721,7 +1722,7 @@ namespace MTC_Adapter
}
}
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorDx += sb.ToString();
}
}
}
+4 -4
View File
@@ -1143,7 +1143,7 @@ namespace MTC_Adapter
allarmiCNC = new CMSCncLib.Focas1.ODBALMMSG2();
}
parentForm.dataMonitor = sb.ToString();
parentForm.dataMonitorSx = sb.ToString();
// gestisco lettura dati manutenzione da PLC...
getMtzDataFromPlc();
@@ -1314,7 +1314,7 @@ namespace MTC_Adapter
}
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
/// <summary>
/// procedura di lettura (Multipla) dati da memoria x caricare dati utensile
@@ -1536,7 +1536,7 @@ namespace MTC_Adapter
sb.AppendLine(string.Format("Path {0}, Cent 1: {1:N3}", i + 1, ((decimal)vettTTCoord.c1) / utils.CRI("fattdecimale")));
sb.AppendLine(string.Format("Path {0}, Cent 2: {1:N3}", i + 1, ((decimal)vettTTCoord.c2) / utils.CRI("fattdecimale")));
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
}
@@ -1655,7 +1655,7 @@ namespace MTC_Adapter
//vettAxis[i].mAxBattery.Value = AxData.AxisBattery;
}
parentForm.dataMonitor += sb.ToString();
parentForm.dataMonitorSx += sb.ToString();
}
}
}
+162 -138
View File
@@ -140,8 +140,9 @@
this.lblCurrAdapt = new System.Windows.Forms.Label();
this.tabCtrlMain = new System.Windows.Forms.TabControl();
this.tpStatus = new System.Windows.Forms.TabPage();
this.gbMonitor = new System.Windows.Forms.GroupBox();
this.lblOutMessage = new System.Windows.Forms.Label();
this.label53 = new System.Windows.Forms.Label();
this.lblOutMessage2 = new System.Windows.Forms.Label();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.STATUS_ACK_DW3 = new System.Windows.Forms.TextBox();
this.label52 = new System.Windows.Forms.Label();
@@ -227,6 +228,7 @@
this.menuStrip1.SuspendLayout();
this.tabCtrlMain.SuspendLayout();
this.tpStatus.SuspendLayout();
this.gbMonitor.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox1.SuspendLayout();
this.tbConf.SuspendLayout();
@@ -244,7 +246,7 @@
//
this.PlcErr_02.AutoSize = true;
this.PlcErr_02.Location = new System.Drawing.Point(128, 53);
this.PlcErr_02.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.PlcErr_02.Margin = new System.Windows.Forms.Padding(4);
this.PlcErr_02.Name = "PlcErr_02";
this.PlcErr_02.Size = new System.Drawing.Size(92, 21);
this.PlcErr_02.TabIndex = 6;
@@ -263,9 +265,9 @@
this.groupBox4.Controls.Add(this.messageText);
this.groupBox4.Controls.Add(this.messageCode);
this.groupBox4.Location = new System.Drawing.Point(5, 514);
this.groupBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox4.Margin = new System.Windows.Forms.Padding(4);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox4.Padding = new System.Windows.Forms.Padding(4);
this.groupBox4.Size = new System.Drawing.Size(505, 64);
this.groupBox4.TabIndex = 44;
this.groupBox4.TabStop = false;
@@ -294,7 +296,7 @@
// messageText
//
this.messageText.Location = new System.Drawing.Point(201, 28);
this.messageText.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.messageText.Margin = new System.Windows.Forms.Padding(4);
this.messageText.Name = "messageText";
this.messageText.Size = new System.Drawing.Size(285, 22);
this.messageText.TabIndex = 14;
@@ -303,7 +305,7 @@
// messageCode
//
this.messageCode.Location = new System.Drawing.Point(67, 28);
this.messageCode.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.messageCode.Margin = new System.Windows.Forms.Padding(4);
this.messageCode.Name = "messageCode";
this.messageCode.Size = new System.Drawing.Size(81, 22);
this.messageCode.TabIndex = 13;
@@ -320,7 +322,7 @@
// AxFeedOverValue
//
this.AxFeedOverValue.Location = new System.Drawing.Point(353, 201);
this.AxFeedOverValue.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxFeedOverValue.Margin = new System.Windows.Forms.Padding(4);
this.AxFeedOverValue.Name = "AxFeedOverValue";
this.AxFeedOverValue.Size = new System.Drawing.Size(132, 22);
this.AxFeedOverValue.TabIndex = 26;
@@ -328,7 +330,7 @@
// AxFeedActValue
//
this.AxFeedActValue.Location = new System.Drawing.Point(353, 175);
this.AxFeedActValue.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxFeedActValue.Margin = new System.Windows.Forms.Padding(4);
this.AxFeedActValue.Name = "AxFeedActValue";
this.AxFeedActValue.Size = new System.Drawing.Size(132, 22);
this.AxFeedActValue.TabIndex = 25;
@@ -373,7 +375,7 @@
// partID
//
this.partID.Location = new System.Drawing.Point(107, 55);
this.partID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.partID.Margin = new System.Windows.Forms.Padding(4);
this.partID.Name = "partID";
this.partID.Size = new System.Drawing.Size(132, 22);
this.partID.TabIndex = 49;
@@ -392,7 +394,7 @@
//
this.functionalMode.FormattingEnabled = true;
this.functionalMode.Location = new System.Drawing.Point(107, 87);
this.functionalMode.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.functionalMode.Margin = new System.Windows.Forms.Padding(4);
this.functionalMode.Name = "functionalMode";
this.functionalMode.Size = new System.Drawing.Size(389, 24);
this.functionalMode.TabIndex = 47;
@@ -422,7 +424,7 @@
this.J,
this.K});
this.PosAct.Location = new System.Drawing.Point(107, 142);
this.PosAct.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.PosAct.Margin = new System.Windows.Forms.Padding(4);
this.PosAct.Name = "PosAct";
this.PosAct.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.PosAct.Size = new System.Drawing.Size(389, 50);
@@ -474,7 +476,7 @@
//
this.PlcErr_03.AutoSize = true;
this.PlcErr_03.Location = new System.Drawing.Point(128, 81);
this.PlcErr_03.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.PlcErr_03.Margin = new System.Windows.Forms.Padding(4);
this.PlcErr_03.Name = "PlcErr_03";
this.PlcErr_03.Size = new System.Drawing.Size(92, 21);
this.PlcErr_03.TabIndex = 5;
@@ -486,7 +488,7 @@
//
this.PlcErr_01.AutoSize = true;
this.PlcErr_01.Location = new System.Drawing.Point(128, 25);
this.PlcErr_01.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.PlcErr_01.Margin = new System.Windows.Forms.Padding(4);
this.PlcErr_01.Name = "PlcErr_01";
this.PlcErr_01.Size = new System.Drawing.Size(92, 21);
this.PlcErr_01.TabIndex = 4;
@@ -509,9 +511,9 @@
this.groupBox3.Controls.Add(this.SysErr_02);
this.groupBox3.Controls.Add(this.SysErr_01);
this.groupBox3.Location = new System.Drawing.Point(4, 620);
this.groupBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox3.Margin = new System.Windows.Forms.Padding(4);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox3.Padding = new System.Windows.Forms.Padding(4);
this.groupBox3.Size = new System.Drawing.Size(505, 140);
this.groupBox3.TabIndex = 41;
this.groupBox3.TabStop = false;
@@ -521,7 +523,7 @@
//
this.ErrRT_03.AutoSize = true;
this.ErrRT_03.Location = new System.Drawing.Point(357, 81);
this.ErrRT_03.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ErrRT_03.Margin = new System.Windows.Forms.Padding(4);
this.ErrRT_03.Name = "ErrRT_03";
this.ErrRT_03.Size = new System.Drawing.Size(83, 21);
this.ErrRT_03.TabIndex = 11;
@@ -533,7 +535,7 @@
//
this.ErrRT_02.AutoSize = true;
this.ErrRT_02.Location = new System.Drawing.Point(357, 53);
this.ErrRT_02.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ErrRT_02.Margin = new System.Windows.Forms.Padding(4);
this.ErrRT_02.Name = "ErrRT_02";
this.ErrRT_02.Size = new System.Drawing.Size(83, 21);
this.ErrRT_02.TabIndex = 10;
@@ -545,7 +547,7 @@
//
this.CncErr_02.AutoSize = true;
this.CncErr_02.Location = new System.Drawing.Point(241, 53);
this.CncErr_02.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.CncErr_02.Margin = new System.Windows.Forms.Padding(4);
this.CncErr_02.Name = "CncErr_02";
this.CncErr_02.Size = new System.Drawing.Size(97, 21);
this.CncErr_02.TabIndex = 9;
@@ -557,7 +559,7 @@
//
this.CncErr_03.AutoSize = true;
this.CncErr_03.Location = new System.Drawing.Point(241, 81);
this.CncErr_03.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.CncErr_03.Margin = new System.Windows.Forms.Padding(4);
this.CncErr_03.Name = "CncErr_03";
this.CncErr_03.Size = new System.Drawing.Size(97, 21);
this.CncErr_03.TabIndex = 8;
@@ -569,7 +571,7 @@
//
this.CncErr_01.AutoSize = true;
this.CncErr_01.Location = new System.Drawing.Point(241, 25);
this.CncErr_01.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.CncErr_01.Margin = new System.Windows.Forms.Padding(4);
this.CncErr_01.Name = "CncErr_01";
this.CncErr_01.Size = new System.Drawing.Size(97, 21);
this.CncErr_01.TabIndex = 7;
@@ -581,7 +583,7 @@
//
this.SysErr_03.AutoSize = true;
this.SysErr_03.Location = new System.Drawing.Point(9, 81);
this.SysErr_03.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.SysErr_03.Margin = new System.Windows.Forms.Padding(4);
this.SysErr_03.Name = "SysErr_03";
this.SysErr_03.Size = new System.Drawing.Size(96, 21);
this.SysErr_03.TabIndex = 3;
@@ -593,7 +595,7 @@
//
this.ErrRT_01.AutoSize = true;
this.ErrRT_01.Location = new System.Drawing.Point(357, 25);
this.ErrRT_01.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ErrRT_01.Margin = new System.Windows.Forms.Padding(4);
this.ErrRT_01.Name = "ErrRT_01";
this.ErrRT_01.Size = new System.Drawing.Size(83, 21);
this.ErrRT_01.TabIndex = 2;
@@ -605,7 +607,7 @@
//
this.SysErr_02.AutoSize = true;
this.SysErr_02.Location = new System.Drawing.Point(9, 53);
this.SysErr_02.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.SysErr_02.Margin = new System.Windows.Forms.Padding(4);
this.SysErr_02.Name = "SysErr_02";
this.SysErr_02.Size = new System.Drawing.Size(96, 21);
this.SysErr_02.TabIndex = 1;
@@ -617,7 +619,7 @@
//
this.SysErr_01.AutoSize = true;
this.SysErr_01.Location = new System.Drawing.Point(9, 25);
this.SysErr_01.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.SysErr_01.Margin = new System.Windows.Forms.Padding(4);
this.SysErr_01.Name = "SysErr_01";
this.SysErr_01.Size = new System.Drawing.Size(96, 21);
this.SysErr_01.TabIndex = 0;
@@ -658,9 +660,9 @@
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Controls.Add(this.AxLoad);
this.groupBox2.Location = new System.Drawing.Point(513, 514);
this.groupBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox2.Margin = new System.Windows.Forms.Padding(4);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox2.Padding = new System.Windows.Forms.Padding(4);
this.groupBox2.Size = new System.Drawing.Size(500, 277);
this.groupBox2.TabIndex = 40;
this.groupBox2.TabStop = false;
@@ -669,7 +671,7 @@
// AxAccelAct
//
this.AxAccelAct.Location = new System.Drawing.Point(107, 226);
this.AxAccelAct.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxAccelAct.Margin = new System.Windows.Forms.Padding(4);
this.AxAccelAct.Name = "AxAccelAct";
this.AxAccelAct.Size = new System.Drawing.Size(60, 22);
this.AxAccelAct.TabIndex = 43;
@@ -687,7 +689,7 @@
// AxBatt
//
this.AxBatt.Location = new System.Drawing.Point(405, 226);
this.AxBatt.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxBatt.Margin = new System.Windows.Forms.Padding(4);
this.AxBatt.Name = "AxBatt";
this.AxBatt.Size = new System.Drawing.Size(80, 22);
this.AxBatt.TabIndex = 41;
@@ -705,7 +707,7 @@
// AxAccTime
//
this.AxAccTime.Location = new System.Drawing.Point(263, 226);
this.AxAccTime.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxAccTime.Margin = new System.Windows.Forms.Padding(4);
this.AxAccTime.Name = "AxAccTime";
this.AxAccTime.Size = new System.Drawing.Size(68, 22);
this.AxAccTime.TabIndex = 39;
@@ -723,7 +725,7 @@
// AxDir
//
this.AxDir.Location = new System.Drawing.Point(353, 82);
this.AxDir.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxDir.Margin = new System.Windows.Forms.Padding(4);
this.AxDir.Name = "AxDir";
this.AxDir.Size = new System.Drawing.Size(105, 22);
this.AxDir.TabIndex = 37;
@@ -756,7 +758,7 @@
"LINEAR",
"ROTARY"});
this.cbAxType.Location = new System.Drawing.Point(108, 85);
this.cbAxType.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.cbAxType.Margin = new System.Windows.Forms.Padding(4);
this.cbAxType.Name = "cbAxType";
this.cbAxType.Size = new System.Drawing.Size(119, 24);
this.cbAxType.TabIndex = 34;
@@ -764,7 +766,7 @@
// AxMastId
//
this.AxMastId.Location = new System.Drawing.Point(380, 50);
this.AxMastId.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxMastId.Margin = new System.Windows.Forms.Padding(4);
this.AxMastId.Name = "AxMastId";
this.AxMastId.Size = new System.Drawing.Size(105, 22);
this.AxMastId.TabIndex = 33;
@@ -783,7 +785,7 @@
//
this.AxIsMaster.AutoSize = true;
this.AxIsMaster.Location = new System.Drawing.Point(237, 54);
this.AxIsMaster.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxIsMaster.Margin = new System.Windows.Forms.Padding(4);
this.AxIsMaster.Name = "AxIsMaster";
this.AxIsMaster.Size = new System.Drawing.Size(73, 21);
this.AxIsMaster.TabIndex = 31;
@@ -793,7 +795,7 @@
// AxMainProc
//
this.AxMainProc.Location = new System.Drawing.Point(108, 50);
this.AxMainProc.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxMainProc.Margin = new System.Windows.Forms.Padding(4);
this.AxMainProc.Name = "AxMainProc";
this.AxMainProc.Size = new System.Drawing.Size(60, 22);
this.AxMainProc.TabIndex = 30;
@@ -813,7 +815,7 @@
this.cbAxNum.DisplayMember = "Name";
this.cbAxNum.FormattingEnabled = true;
this.cbAxNum.Location = new System.Drawing.Point(108, 18);
this.cbAxNum.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.cbAxNum.Margin = new System.Windows.Forms.Padding(4);
this.cbAxNum.Name = "cbAxNum";
this.cbAxNum.Size = new System.Drawing.Size(160, 24);
this.cbAxNum.TabIndex = 28;
@@ -833,7 +835,7 @@
// AxPositionValue
//
this.AxPositionValue.Location = new System.Drawing.Point(353, 149);
this.AxPositionValue.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxPositionValue.Margin = new System.Windows.Forms.Padding(4);
this.AxPositionValue.Name = "AxPositionValue";
this.AxPositionValue.Size = new System.Drawing.Size(132, 22);
this.AxPositionValue.TabIndex = 26;
@@ -841,7 +843,7 @@
// AxLoadValue
//
this.AxLoadValue.Location = new System.Drawing.Point(353, 123);
this.AxLoadValue.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.AxLoadValue.Margin = new System.Windows.Forms.Padding(4);
this.AxLoadValue.Name = "AxLoadValue";
this.AxLoadValue.Size = new System.Drawing.Size(132, 22);
this.AxLoadValue.TabIndex = 25;
@@ -894,7 +896,7 @@
// program
//
this.program.Location = new System.Drawing.Point(107, 23);
this.program.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.program.Margin = new System.Windows.Forms.Padding(4);
this.program.Name = "program";
this.program.Size = new System.Drawing.Size(203, 22);
this.program.TabIndex = 39;
@@ -928,9 +930,9 @@
this.groupBox9.Controls.Add(this.functionalMode);
this.groupBox9.Controls.Add(this.label12);
this.groupBox9.Location = new System.Drawing.Point(4, 182);
this.groupBox9.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox9.Margin = new System.Windows.Forms.Padding(4);
this.groupBox9.Name = "groupBox9";
this.groupBox9.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox9.Padding = new System.Windows.Forms.Padding(4);
this.groupBox9.Size = new System.Drawing.Size(505, 194);
this.groupBox9.TabIndex = 55;
this.groupBox9.TabStop = false;
@@ -939,7 +941,7 @@
// txtPzKo
//
this.txtPzKo.Location = new System.Drawing.Point(417, 121);
this.txtPzKo.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtPzKo.Margin = new System.Windows.Forms.Padding(4);
this.txtPzKo.Name = "txtPzKo";
this.txtPzKo.Size = new System.Drawing.Size(79, 22);
this.txtPzKo.TabIndex = 59;
@@ -959,7 +961,7 @@
//
this.txtPzOk.Enabled = false;
this.txtPzOk.Location = new System.Drawing.Point(268, 121);
this.txtPzOk.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtPzOk.Margin = new System.Windows.Forms.Padding(4);
this.txtPzOk.Name = "txtPzOk";
this.txtPzOk.Size = new System.Drawing.Size(79, 22);
this.txtPzOk.TabIndex = 57;
@@ -978,7 +980,7 @@
//
this.txtPzTot.Enabled = false;
this.txtPzTot.Location = new System.Drawing.Point(107, 121);
this.txtPzTot.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtPzTot.Margin = new System.Windows.Forms.Padding(4);
this.txtPzTot.Name = "txtPzTot";
this.txtPzTot.Size = new System.Drawing.Size(79, 22);
this.txtPzTot.TabIndex = 55;
@@ -996,7 +998,7 @@
// OPERATOR_ID
//
this.OPERATOR_ID.Location = new System.Drawing.Point(364, 55);
this.OPERATOR_ID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.OPERATOR_ID.Margin = new System.Windows.Forms.Padding(4);
this.OPERATOR_ID.Name = "OPERATOR_ID";
this.OPERATOR_ID.Size = new System.Drawing.Size(132, 22);
this.OPERATOR_ID.TabIndex = 53;
@@ -1014,7 +1016,7 @@
// PROG_ROW_NUM
//
this.PROG_ROW_NUM.Location = new System.Drawing.Point(417, 23);
this.PROG_ROW_NUM.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.PROG_ROW_NUM.Margin = new System.Windows.Forms.Padding(4);
this.PROG_ROW_NUM.Name = "PROG_ROW_NUM";
this.PROG_ROW_NUM.Size = new System.Drawing.Size(79, 22);
this.PROG_ROW_NUM.TabIndex = 51;
@@ -1039,10 +1041,10 @@
this.groupBox11.Controls.Add(this.label18);
this.groupBox11.Controls.Add(this.STATUS_STRB_DW0);
this.groupBox11.Controls.Add(this.lblPLC_ADP);
this.groupBox11.Location = new System.Drawing.Point(4, 133);
this.groupBox11.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox11.Location = new System.Drawing.Point(10, 71);
this.groupBox11.Margin = new System.Windows.Forms.Padding(4);
this.groupBox11.Name = "groupBox11";
this.groupBox11.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox11.Padding = new System.Windows.Forms.Padding(4);
this.groupBox11.Size = new System.Drawing.Size(509, 191);
this.groupBox11.TabIndex = 57;
this.groupBox11.TabStop = false;
@@ -1052,7 +1054,7 @@
//
this.STATUS_STRB_DW3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_STRB_DW3.Location = new System.Drawing.Point(113, 146);
this.STATUS_STRB_DW3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_STRB_DW3.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_STRB_DW3.Name = "STATUS_STRB_DW3";
this.STATUS_STRB_DW3.Size = new System.Drawing.Size(387, 28);
this.STATUS_STRB_DW3.TabIndex = 59;
@@ -1071,7 +1073,7 @@
//
this.STATUS_STRB_DW2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_STRB_DW2.Location = new System.Drawing.Point(113, 103);
this.STATUS_STRB_DW2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_STRB_DW2.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_STRB_DW2.Name = "STATUS_STRB_DW2";
this.STATUS_STRB_DW2.Size = new System.Drawing.Size(387, 28);
this.STATUS_STRB_DW2.TabIndex = 57;
@@ -1090,7 +1092,7 @@
//
this.STATUS_STRB_DW1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_STRB_DW1.Location = new System.Drawing.Point(113, 60);
this.STATUS_STRB_DW1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_STRB_DW1.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_STRB_DW1.Name = "STATUS_STRB_DW1";
this.STATUS_STRB_DW1.Size = new System.Drawing.Size(387, 28);
this.STATUS_STRB_DW1.TabIndex = 55;
@@ -1109,7 +1111,7 @@
//
this.STATUS_STRB_DW0.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_STRB_DW0.Location = new System.Drawing.Point(113, 17);
this.STATUS_STRB_DW0.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_STRB_DW0.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_STRB_DW0.Name = "STATUS_STRB_DW0";
this.STATUS_STRB_DW0.Size = new System.Drawing.Size(387, 28);
this.STATUS_STRB_DW0.TabIndex = 53;
@@ -1132,7 +1134,7 @@
this.lblVers,
this.MainProgrBar,
this.lblStatus});
this.statusStrip1.Location = new System.Drawing.Point(0, 883);
this.statusStrip1.Location = new System.Drawing.Point(0, 669);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Padding = new System.Windows.Forms.Padding(1, 0, 19, 0);
this.statusStrip1.Size = new System.Drawing.Size(1047, 29);
@@ -1183,9 +1185,9 @@
this.groupBox13.Controls.Add(this.label26);
this.groupBox13.Controls.Add(this.hsPathFeed);
this.groupBox13.Location = new System.Drawing.Point(513, 103);
this.groupBox13.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox13.Margin = new System.Windows.Forms.Padding(4);
this.groupBox13.Name = "groupBox13";
this.groupBox13.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox13.Padding = new System.Windows.Forms.Padding(4);
this.groupBox13.Size = new System.Drawing.Size(505, 206);
this.groupBox13.TabIndex = 60;
this.groupBox13.TabStop = false;
@@ -1196,7 +1198,7 @@
this.cbPathSel.DisplayMember = "Name";
this.cbPathSel.FormattingEnabled = true;
this.cbPathSel.Location = new System.Drawing.Point(107, 20);
this.cbPathSel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.cbPathSel.Margin = new System.Windows.Forms.Padding(4);
this.cbPathSel.Name = "cbPathSel";
this.cbPathSel.Size = new System.Drawing.Size(160, 24);
this.cbPathSel.TabIndex = 63;
@@ -1226,7 +1228,7 @@
// txtPathSpeedOver
//
this.txtPathSpeedOver.Location = new System.Drawing.Point(397, 108);
this.txtPathSpeedOver.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtPathSpeedOver.Margin = new System.Windows.Forms.Padding(4);
this.txtPathSpeedOver.Name = "txtPathSpeedOver";
this.txtPathSpeedOver.Size = new System.Drawing.Size(97, 22);
this.txtPathSpeedOver.TabIndex = 32;
@@ -1254,7 +1256,7 @@
// txtPathFeedOver
//
this.txtPathFeedOver.Location = new System.Drawing.Point(397, 78);
this.txtPathFeedOver.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtPathFeedOver.Margin = new System.Windows.Forms.Padding(4);
this.txtPathFeedOver.Name = "txtPathFeedOver";
this.txtPathFeedOver.Size = new System.Drawing.Size(97, 22);
this.txtPathFeedOver.TabIndex = 29;
@@ -1282,7 +1284,7 @@
// txtPathFeed
//
this.txtPathFeed.Location = new System.Drawing.Point(397, 46);
this.txtPathFeed.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtPathFeed.Margin = new System.Windows.Forms.Padding(4);
this.txtPathFeed.Name = "txtPathFeed";
this.txtPathFeed.Size = new System.Drawing.Size(97, 22);
this.txtPathFeed.TabIndex = 26;
@@ -1371,48 +1373,68 @@
this.tabCtrlMain.Controls.Add(this.tpSIM);
this.tabCtrlMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabCtrlMain.Location = new System.Drawing.Point(0, 60);
this.tabCtrlMain.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tabCtrlMain.Margin = new System.Windows.Forms.Padding(4);
this.tabCtrlMain.Name = "tabCtrlMain";
this.tabCtrlMain.SelectedIndex = 0;
this.tabCtrlMain.Size = new System.Drawing.Size(1047, 823);
this.tabCtrlMain.Size = new System.Drawing.Size(1047, 609);
this.tabCtrlMain.TabIndex = 65;
//
// tpStatus
//
this.tpStatus.BackColor = System.Drawing.Color.WhiteSmoke;
this.tpStatus.Controls.Add(this.lblOutMessage);
this.tpStatus.Controls.Add(this.label53);
this.tpStatus.Controls.Add(this.gbMonitor);
this.tpStatus.Controls.Add(this.groupBox6);
this.tpStatus.Controls.Add(this.groupBox1);
this.tpStatus.Controls.Add(this.groupBox11);
this.tpStatus.Location = new System.Drawing.Point(4, 25);
this.tpStatus.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tpStatus.Margin = new System.Windows.Forms.Padding(4);
this.tpStatus.Name = "tpStatus";
this.tpStatus.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tpStatus.Size = new System.Drawing.Size(1039, 794);
this.tpStatus.Padding = new System.Windows.Forms.Padding(4);
this.tpStatus.Size = new System.Drawing.Size(1039, 580);
this.tpStatus.TabIndex = 0;
this.tpStatus.Text = "STATUS";
//
// gbMonitor
//
this.gbMonitor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gbMonitor.BackColor = System.Drawing.Color.Black;
this.gbMonitor.Controls.Add(this.lblOutMessage);
this.gbMonitor.Controls.Add(this.lblOutMessage2);
this.gbMonitor.ForeColor = System.Drawing.SystemColors.Control;
this.gbMonitor.Location = new System.Drawing.Point(0, 266);
this.gbMonitor.Margin = new System.Windows.Forms.Padding(0);
this.gbMonitor.Name = "gbMonitor";
this.gbMonitor.Padding = new System.Windows.Forms.Padding(0);
this.gbMonitor.Size = new System.Drawing.Size(1039, 311);
this.gbMonitor.TabIndex = 62;
this.gbMonitor.TabStop = false;
this.gbMonitor.Text = "Monitor variabili";
//
// lblOutMessage
//
this.lblOutMessage.AutoSize = true;
this.lblOutMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblOutMessage.Location = new System.Drawing.Point(127, 346);
this.lblOutMessage.Font = new System.Drawing.Font("Arial Narrow", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblOutMessage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
this.lblOutMessage.Location = new System.Drawing.Point(4, 15);
this.lblOutMessage.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblOutMessage.Name = "lblOutMessage";
this.lblOutMessage.Size = new System.Drawing.Size(16, 15);
this.lblOutMessage.Size = new System.Drawing.Size(17, 16);
this.lblOutMessage.TabIndex = 60;
this.lblOutMessage.Text = "...";
//
// label53
// lblOutMessage2
//
this.label53.AutoSize = true;
this.label53.Location = new System.Drawing.Point(24, 346);
this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label53.Name = "label53";
this.label53.Size = new System.Drawing.Size(69, 17);
this.label53.TabIndex = 59;
this.label53.Text = "Data Mon";
this.lblOutMessage2.AutoSize = true;
this.lblOutMessage2.Font = new System.Drawing.Font("Arial Narrow", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblOutMessage2.ForeColor = System.Drawing.Color.Yellow;
this.lblOutMessage2.Location = new System.Drawing.Point(325, 15);
this.lblOutMessage2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblOutMessage2.Name = "lblOutMessage2";
this.lblOutMessage2.Size = new System.Drawing.Size(17, 16);
this.lblOutMessage2.TabIndex = 61;
this.lblOutMessage2.Text = "...";
//
// groupBox6
//
@@ -1424,10 +1446,10 @@
this.groupBox6.Controls.Add(this.label50);
this.groupBox6.Controls.Add(this.STATUS_ACK_DW0);
this.groupBox6.Controls.Add(this.label48);
this.groupBox6.Location = new System.Drawing.Point(517, 133);
this.groupBox6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox6.Location = new System.Drawing.Point(523, 71);
this.groupBox6.Margin = new System.Windows.Forms.Padding(4);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox6.Padding = new System.Windows.Forms.Padding(4);
this.groupBox6.Size = new System.Drawing.Size(512, 191);
this.groupBox6.TabIndex = 58;
this.groupBox6.TabStop = false;
@@ -1437,7 +1459,7 @@
//
this.STATUS_ACK_DW3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_ACK_DW3.Location = new System.Drawing.Point(113, 145);
this.STATUS_ACK_DW3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_ACK_DW3.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_ACK_DW3.Name = "STATUS_ACK_DW3";
this.STATUS_ACK_DW3.Size = new System.Drawing.Size(389, 28);
this.STATUS_ACK_DW3.TabIndex = 59;
@@ -1456,7 +1478,7 @@
//
this.STATUS_ACK_DW2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_ACK_DW2.Location = new System.Drawing.Point(113, 102);
this.STATUS_ACK_DW2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_ACK_DW2.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_ACK_DW2.Name = "STATUS_ACK_DW2";
this.STATUS_ACK_DW2.Size = new System.Drawing.Size(389, 28);
this.STATUS_ACK_DW2.TabIndex = 57;
@@ -1475,7 +1497,7 @@
//
this.STATUS_ACK_DW1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_ACK_DW1.Location = new System.Drawing.Point(113, 59);
this.STATUS_ACK_DW1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_ACK_DW1.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_ACK_DW1.Name = "STATUS_ACK_DW1";
this.STATUS_ACK_DW1.Size = new System.Drawing.Size(389, 28);
this.STATUS_ACK_DW1.TabIndex = 55;
@@ -1494,7 +1516,7 @@
//
this.STATUS_ACK_DW0.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.STATUS_ACK_DW0.Location = new System.Drawing.Point(113, 18);
this.STATUS_ACK_DW0.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.STATUS_ACK_DW0.Margin = new System.Windows.Forms.Padding(4);
this.STATUS_ACK_DW0.Name = "STATUS_ACK_DW0";
this.STATUS_ACK_DW0.Size = new System.Drawing.Size(389, 28);
this.STATUS_ACK_DW0.TabIndex = 53;
@@ -1517,9 +1539,9 @@
this.groupBox1.Controls.Add(this.port);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(8, 7);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
this.groupBox1.Size = new System.Drawing.Size(505, 53);
this.groupBox1.TabIndex = 35;
this.groupBox1.TabStop = false;
@@ -1528,7 +1550,7 @@
// dump
//
this.dump.Location = new System.Drawing.Point(397, 18);
this.dump.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dump.Margin = new System.Windows.Forms.Padding(4);
this.dump.Name = "dump";
this.dump.Size = new System.Drawing.Size(100, 28);
this.dump.TabIndex = 4;
@@ -1539,7 +1561,7 @@
// stop
//
this.stop.Location = new System.Drawing.Point(269, 18);
this.stop.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.stop.Margin = new System.Windows.Forms.Padding(4);
this.stop.Name = "stop";
this.stop.Size = new System.Drawing.Size(100, 28);
this.stop.TabIndex = 3;
@@ -1550,7 +1572,7 @@
// start
//
this.start.Location = new System.Drawing.Point(161, 18);
this.start.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.start.Margin = new System.Windows.Forms.Padding(4);
this.start.Name = "start";
this.start.Size = new System.Drawing.Size(100, 28);
this.start.TabIndex = 2;
@@ -1561,7 +1583,7 @@
// port
//
this.port.Location = new System.Drawing.Point(67, 21);
this.port.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.port.Margin = new System.Windows.Forms.Padding(4);
this.port.Name = "port";
this.port.Size = new System.Drawing.Size(81, 22);
this.port.TabIndex = 1;
@@ -1583,10 +1605,10 @@
this.tbConf.BackColor = System.Drawing.Color.Maroon;
this.tbConf.Controls.Add(this.wbXmlConf);
this.tbConf.Location = new System.Drawing.Point(4, 25);
this.tbConf.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tbConf.Margin = new System.Windows.Forms.Padding(4);
this.tbConf.Name = "tbConf";
this.tbConf.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tbConf.Size = new System.Drawing.Size(1039, 786);
this.tbConf.Padding = new System.Windows.Forms.Padding(4);
this.tbConf.Size = new System.Drawing.Size(1039, 580);
this.tbConf.TabIndex = 1;
this.tbConf.Text = "XML CONFIG";
//
@@ -1594,10 +1616,10 @@
//
this.wbXmlConf.Dock = System.Windows.Forms.DockStyle.Fill;
this.wbXmlConf.Location = new System.Drawing.Point(4, 4);
this.wbXmlConf.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.wbXmlConf.Margin = new System.Windows.Forms.Padding(4);
this.wbXmlConf.MinimumSize = new System.Drawing.Size(27, 25);
this.wbXmlConf.Name = "wbXmlConf";
this.wbXmlConf.Size = new System.Drawing.Size(1031, 778);
this.wbXmlConf.Size = new System.Drawing.Size(1031, 572);
this.wbXmlConf.TabIndex = 0;
//
// tpSIM
@@ -1616,9 +1638,9 @@
this.tpSIM.Controls.Add(this.groupBox2);
this.tpSIM.Controls.Add(this.groupBox12);
this.tpSIM.Location = new System.Drawing.Point(4, 25);
this.tpSIM.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tpSIM.Margin = new System.Windows.Forms.Padding(4);
this.tpSIM.Name = "tpSIM";
this.tpSIM.Size = new System.Drawing.Size(1039, 786);
this.tpSIM.Size = new System.Drawing.Size(1039, 580);
this.tpSIM.TabIndex = 2;
this.tpSIM.Text = "SIMULATION";
//
@@ -1643,9 +1665,9 @@
this.groupBox5.Controls.Add(this.cbUnOpSel);
this.groupBox5.Controls.Add(this.label39);
this.groupBox5.Location = new System.Drawing.Point(513, 316);
this.groupBox5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox5.Margin = new System.Windows.Forms.Padding(4);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox5.Padding = new System.Windows.Forms.Padding(4);
this.groupBox5.Size = new System.Drawing.Size(505, 191);
this.groupBox5.TabIndex = 62;
this.groupBox5.TabStop = false;
@@ -1654,7 +1676,7 @@
// uoSpeedVal
//
this.uoSpeedVal.Location = new System.Drawing.Point(343, 146);
this.uoSpeedVal.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uoSpeedVal.Margin = new System.Windows.Forms.Padding(4);
this.uoSpeedVal.Name = "uoSpeedVal";
this.uoSpeedVal.Size = new System.Drawing.Size(132, 22);
this.uoSpeedVal.TabIndex = 81;
@@ -1662,7 +1684,7 @@
// uoLoadVal
//
this.uoLoadVal.Location = new System.Drawing.Point(343, 121);
this.uoLoadVal.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uoLoadVal.Margin = new System.Windows.Forms.Padding(4);
this.uoLoadVal.Name = "uoLoadVal";
this.uoLoadVal.Size = new System.Drawing.Size(132, 22);
this.uoLoadVal.TabIndex = 80;
@@ -1706,7 +1728,7 @@
// uoVitaRes
//
this.uoVitaRes.Location = new System.Drawing.Point(97, 89);
this.uoVitaRes.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uoVitaRes.Margin = new System.Windows.Forms.Padding(4);
this.uoVitaRes.Name = "uoVitaRes";
this.uoVitaRes.Size = new System.Drawing.Size(60, 22);
this.uoVitaRes.TabIndex = 75;
@@ -1724,7 +1746,7 @@
// uoAccTime
//
this.uoAccTime.Location = new System.Drawing.Point(253, 89);
this.uoAccTime.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uoAccTime.Margin = new System.Windows.Forms.Padding(4);
this.uoAccTime.Name = "uoAccTime";
this.uoAccTime.Size = new System.Drawing.Size(68, 22);
this.uoAccTime.TabIndex = 73;
@@ -1742,7 +1764,7 @@
// uoToolId
//
this.uoToolId.Location = new System.Drawing.Point(97, 57);
this.uoToolId.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uoToolId.Margin = new System.Windows.Forms.Padding(4);
this.uoToolId.Name = "uoToolId";
this.uoToolId.Size = new System.Drawing.Size(60, 22);
this.uoToolId.TabIndex = 71;
@@ -1760,7 +1782,7 @@
// uoStatus
//
this.uoStatus.Location = new System.Drawing.Point(396, 57);
this.uoStatus.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uoStatus.Margin = new System.Windows.Forms.Padding(4);
this.uoStatus.Name = "uoStatus";
this.uoStatus.Size = new System.Drawing.Size(80, 22);
this.uoStatus.TabIndex = 69;
@@ -1778,7 +1800,7 @@
// uoNumCU
//
this.uoNumCU.Location = new System.Drawing.Point(253, 57);
this.uoNumCU.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.uoNumCU.Margin = new System.Windows.Forms.Padding(4);
this.uoNumCU.Name = "uoNumCU";
this.uoNumCU.Size = new System.Drawing.Size(68, 22);
this.uoNumCU.TabIndex = 67;
@@ -1798,7 +1820,7 @@
this.cbUnOpSel.DisplayMember = "Name";
this.cbUnOpSel.FormattingEnabled = true;
this.cbUnOpSel.Location = new System.Drawing.Point(97, 23);
this.cbUnOpSel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.cbUnOpSel.Margin = new System.Windows.Forms.Padding(4);
this.cbUnOpSel.Name = "cbUnOpSel";
this.cbUnOpSel.Size = new System.Drawing.Size(160, 24);
this.cbUnOpSel.TabIndex = 65;
@@ -1822,9 +1844,9 @@
this.Execution.Controls.Add(this.stopped);
this.Execution.Controls.Add(this.running);
this.Execution.Location = new System.Drawing.Point(4, 116);
this.Execution.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Execution.Margin = new System.Windows.Forms.Padding(4);
this.Execution.Name = "Execution";
this.Execution.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Execution.Padding = new System.Windows.Forms.Padding(4);
this.Execution.Size = new System.Drawing.Size(507, 59);
this.Execution.TabIndex = 61;
this.Execution.TabStop = false;
@@ -1835,7 +1857,7 @@
this.ready.AutoSize = true;
this.ready.Checked = true;
this.ready.Location = new System.Drawing.Point(152, 20);
this.ready.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ready.Margin = new System.Windows.Forms.Padding(4);
this.ready.Name = "ready";
this.ready.Size = new System.Drawing.Size(70, 21);
this.ready.TabIndex = 9;
@@ -1847,7 +1869,7 @@
//
this.feedhold.AutoSize = true;
this.feedhold.Location = new System.Drawing.Point(337, 20);
this.feedhold.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.feedhold.Margin = new System.Windows.Forms.Padding(4);
this.feedhold.Name = "feedhold";
this.feedhold.Size = new System.Drawing.Size(94, 21);
this.feedhold.TabIndex = 8;
@@ -1858,7 +1880,7 @@
//
this.stopped.AutoSize = true;
this.stopped.Location = new System.Drawing.Point(240, 20);
this.stopped.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.stopped.Margin = new System.Windows.Forms.Padding(4);
this.stopped.Name = "stopped";
this.stopped.Size = new System.Drawing.Size(82, 21);
this.stopped.TabIndex = 7;
@@ -1869,7 +1891,7 @@
//
this.running.AutoSize = true;
this.running.Location = new System.Drawing.Point(48, 20);
this.running.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.running.Margin = new System.Windows.Forms.Padding(4);
this.running.Name = "running";
this.running.Size = new System.Drawing.Size(82, 21);
this.running.TabIndex = 6;
@@ -1883,9 +1905,9 @@
this.mode.Controls.Add(this.manual);
this.mode.Controls.Add(this.automatic);
this.mode.Location = new System.Drawing.Point(4, 49);
this.mode.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.mode.Margin = new System.Windows.Forms.Padding(4);
this.mode.Name = "mode";
this.mode.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.mode.Padding = new System.Windows.Forms.Padding(4);
this.mode.Size = new System.Drawing.Size(505, 59);
this.mode.TabIndex = 60;
this.mode.TabStop = false;
@@ -1895,7 +1917,7 @@
//
this.edit.AutoSize = true;
this.edit.Location = new System.Drawing.Point(399, 20);
this.edit.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.edit.Margin = new System.Windows.Forms.Padding(4);
this.edit.Name = "edit";
this.edit.Size = new System.Drawing.Size(53, 21);
this.edit.TabIndex = 9;
@@ -1906,7 +1928,7 @@
//
this.mdi.AutoSize = true;
this.mdi.Location = new System.Drawing.Point(240, 18);
this.mdi.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.mdi.Margin = new System.Windows.Forms.Padding(4);
this.mdi.Name = "mdi";
this.mdi.Size = new System.Drawing.Size(144, 21);
this.mdi.TabIndex = 8;
@@ -1918,7 +1940,7 @@
this.manual.AutoSize = true;
this.manual.Checked = true;
this.manual.Location = new System.Drawing.Point(152, 18);
this.manual.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.manual.Margin = new System.Windows.Forms.Padding(4);
this.manual.Name = "manual";
this.manual.Size = new System.Drawing.Size(75, 21);
this.manual.TabIndex = 7;
@@ -1930,7 +1952,7 @@
//
this.automatic.AutoSize = true;
this.automatic.Location = new System.Drawing.Point(48, 20);
this.automatic.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.automatic.Margin = new System.Windows.Forms.Padding(4);
this.automatic.Name = "automatic";
this.automatic.Size = new System.Drawing.Size(91, 21);
this.automatic.TabIndex = 6;
@@ -1950,9 +1972,9 @@
this.groupBox7.Controls.Add(this.label15);
this.groupBox7.Controls.Add(this.label14);
this.groupBox7.Location = new System.Drawing.Point(513, 4);
this.groupBox7.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox7.Margin = new System.Windows.Forms.Padding(4);
this.groupBox7.Name = "groupBox7";
this.groupBox7.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox7.Padding = new System.Windows.Forms.Padding(4);
this.groupBox7.Size = new System.Drawing.Size(507, 92);
this.groupBox7.TabIndex = 59;
this.groupBox7.TabStop = false;
@@ -2004,7 +2026,7 @@
// txtAccTime
//
this.txtAccTime.Location = new System.Drawing.Point(312, 21);
this.txtAccTime.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtAccTime.Margin = new System.Windows.Forms.Padding(4);
this.txtAccTime.Name = "txtAccTime";
this.txtAccTime.Size = new System.Drawing.Size(69, 22);
this.txtAccTime.TabIndex = 62;
@@ -2022,7 +2044,7 @@
// txtPower
//
this.txtPower.Location = new System.Drawing.Point(433, 21);
this.txtPower.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.txtPower.Margin = new System.Windows.Forms.Padding(4);
this.txtPower.Name = "txtPower";
this.txtPower.Size = new System.Drawing.Size(64, 22);
this.txtPower.TabIndex = 60;
@@ -2061,9 +2083,9 @@
//
this.groupBox10.Controls.Add(this.enableDataSim);
this.groupBox10.Location = new System.Drawing.Point(273, 4);
this.groupBox10.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox10.Margin = new System.Windows.Forms.Padding(4);
this.groupBox10.Name = "groupBox10";
this.groupBox10.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox10.Padding = new System.Windows.Forms.Padding(4);
this.groupBox10.Size = new System.Drawing.Size(236, 38);
this.groupBox10.TabIndex = 58;
this.groupBox10.TabStop = false;
@@ -2073,7 +2095,7 @@
//
this.enableDataSim.AutoSize = true;
this.enableDataSim.Location = new System.Drawing.Point(149, 11);
this.enableDataSim.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.enableDataSim.Margin = new System.Windows.Forms.Padding(4);
this.enableDataSim.Name = "enableDataSim";
this.enableDataSim.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.enableDataSim.Size = new System.Drawing.Size(74, 21);
@@ -2085,9 +2107,9 @@
//
this.groupBox8.Controls.Add(this.estop);
this.groupBox8.Location = new System.Drawing.Point(4, 4);
this.groupBox8.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox8.Margin = new System.Windows.Forms.Padding(4);
this.groupBox8.Name = "groupBox8";
this.groupBox8.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox8.Padding = new System.Windows.Forms.Padding(4);
this.groupBox8.Size = new System.Drawing.Size(261, 38);
this.groupBox8.TabIndex = 57;
this.groupBox8.TabStop = false;
@@ -2097,7 +2119,7 @@
//
this.estop.AutoSize = true;
this.estop.Location = new System.Drawing.Point(79, 11);
this.estop.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.estop.Margin = new System.Windows.Forms.Padding(4);
this.estop.Name = "estop";
this.estop.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.estop.Size = new System.Drawing.Size(134, 21);
@@ -2117,9 +2139,9 @@
this.groupBox12.Controls.Add(this.addCodM);
this.groupBox12.Controls.Add(this.label20);
this.groupBox12.Location = new System.Drawing.Point(4, 384);
this.groupBox12.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox12.Margin = new System.Windows.Forms.Padding(4);
this.groupBox12.Name = "groupBox12";
this.groupBox12.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox12.Padding = new System.Windows.Forms.Padding(4);
this.groupBox12.Size = new System.Drawing.Size(507, 123);
this.groupBox12.TabIndex = 58;
this.groupBox12.TabStop = false;
@@ -2138,7 +2160,7 @@
// addCodT
//
this.addCodT.Location = new System.Drawing.Point(68, 87);
this.addCodT.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.addCodT.Margin = new System.Windows.Forms.Padding(4);
this.addCodT.Name = "addCodT";
this.addCodT.Size = new System.Drawing.Size(79, 22);
this.addCodT.TabIndex = 59;
@@ -2168,7 +2190,7 @@
// addCodS
//
this.addCodS.Location = new System.Drawing.Point(69, 55);
this.addCodS.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.addCodS.Margin = new System.Windows.Forms.Padding(4);
this.addCodS.Name = "addCodS";
this.addCodS.Size = new System.Drawing.Size(79, 22);
this.addCodS.TabIndex = 56;
@@ -2198,7 +2220,7 @@
// addCodM
//
this.addCodM.Location = new System.Drawing.Point(69, 23);
this.addCodM.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.addCodM.Margin = new System.Windows.Forms.Padding(4);
this.addCodM.Name = "addCodM";
this.addCodM.Size = new System.Drawing.Size(79, 22);
this.addCodM.TabIndex = 53;
@@ -2233,7 +2255,7 @@
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1047, 912);
this.ClientSize = new System.Drawing.Size(1047, 698);
this.Controls.Add(this.tabCtrlMain);
this.Controls.Add(this.lblCurrAdapt);
this.Controls.Add(this.statusStrip1);
@@ -2241,7 +2263,7 @@
this.Controls.Add(this.label6);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximizeBox = false;
this.Name = "MainForm";
this.ShowInTaskbar = false;
@@ -2269,7 +2291,8 @@
this.menuStrip1.PerformLayout();
this.tabCtrlMain.ResumeLayout(false);
this.tpStatus.ResumeLayout(false);
this.tpStatus.PerformLayout();
this.gbMonitor.ResumeLayout(false);
this.gbMonitor.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.groupBox1.ResumeLayout(false);
@@ -2478,11 +2501,12 @@
private System.Windows.Forms.Label label50;
private System.Windows.Forms.CheckBox ErrRT_03;
private System.Windows.Forms.Label lblOutMessage;
private System.Windows.Forms.Label label53;
private System.Windows.Forms.ToolStripStatusLabel lblApp;
private System.Windows.Forms.ToolStripStatusLabel lblVers;
private System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.ContextMenuStrip trayMenu;
private System.Windows.Forms.Label lblOutMessage2;
private System.Windows.Forms.GroupBox gbMonitor;
}
}
+16 -3
View File
@@ -1593,9 +1593,9 @@ namespace MTC_Adapter
/// <summary>
/// Stringa dati monitoraggio mostrata...
/// Stringa dati monitoraggio mostrata (SX)...
/// </summary>
public string dataMonitor
public string dataMonitorSx
{
get
{
@@ -1606,7 +1606,20 @@ namespace MTC_Adapter
lblOutMessage.Text = value;
}
}
/// <summary>
/// Stringa dati monitoraggio mostrata (DX)...
/// </summary>
public string dataMonitorDx
{
get
{
return lblOutMessage2.Text;
}
set
{
lblOutMessage2.Text = value;
}
}
private void SysErr_01_CheckedChanged(object sender, EventArgs e)
{
// aggiorno il vettore allarmi (da 128 byte) sulla base della selezione dei checkbox (per i primi 9...) - ultimi 3 selezionano 8 allarmi ciascuno...
+18
View File
@@ -138,6 +138,24 @@
<metadata name="K.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="X.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Y.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="Z.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="I.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="J.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="K.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="statusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>104, 17</value>
</metadata>