diff --git a/MTC_Adapter/CMSCncLib/CNC/CNC.SIEMENS/CNC.SIEMENS.vb b/MTC_Adapter/CMSCncLib/CNC/CNC.SIEMENS/CNC.SIEMENS.vb
index 8055de0..df4eb41 100644
--- a/MTC_Adapter/CMSCncLib/CNC/CNC.SIEMENS/CNC.SIEMENS.vb
+++ b/MTC_Adapter/CMSCncLib/CNC/CNC.SIEMENS/CNC.SIEMENS.vb
@@ -1065,13 +1065,20 @@ Namespace CNC
'''
''' Vettore codici attivi correnti
'''
- Public Function getPathGCodeMod(maxProc As Integer, ByRef GCodeCurr As String()) As Boolean
+ Public Function getPathGCodeMod(maxProc As Integer, ByRef GCodeCurr As String(,)) As Boolean
' RIFERIMENTO:
- ' txt Giuseppe
+ ' SynumerikOperate_net, pg 52
+ ' Parameter manual NC, pg 401
- ReDim itemRead(0)
- itemRead(0) = New Item("/Channel/SelectedFunctions/ncFktAct[u1,1,#64]") ' leggo TUTTI i 64 gruppi...
+ ' preparo memorie
+ Dim maxGruppi As Int16
+ maxGruppi = 64
+ ReDim itemRead(maxProc - 1)
+ For i As Integer = 0 To maxProc - 1
+ itemRead(i) = New Item("/Channel/SelectedFunctions/ncFktAct[u" & i + 1 & ",1,#" & maxGruppi & "]") ' leggo TUTTI i gruppi...
+ Next i
+ 'lettura
Do
Try
m_DataSvcRW.Read(itemRead)
@@ -1084,8 +1091,10 @@ Namespace CNC
Loop
' faccio copia valori!
- For i As Integer = 0 To 63
- GCodeCurr(i) = itemRead(0).Value(i)
+ For i As Integer = 0 To maxGruppi - 1
+ For j As Integer = 0 To maxProc - 1
+ GCodeCurr(j, i) = itemRead(j).Value(i)
+ Next j
Next i
' chiudo!
diff --git a/MTC_Adapter/MTC_Adapter/AdapterSiemens.cs b/MTC_Adapter/MTC_Adapter/AdapterSiemens.cs
index 66f34b8..0c15e5c 100644
--- a/MTC_Adapter/MTC_Adapter/AdapterSiemens.cs
+++ b/MTC_Adapter/MTC_Adapter/AdapterSiemens.cs
@@ -971,55 +971,16 @@ namespace MTC_Adapter
{
base.getPath();
- string[] vettGCod = new string[64];
+ string[,] vettGCod = new string[2, 64];
// recupero vettore generale G MODE
inizio = DateTime.Now;
- SIEMENS_ref.getPathGCodeMod(1, ref vettGCod);
+ SIEMENS_ref.getPathGCodeMod(2, ref vettGCod);
if (utils.CRB("recTime")) TimingData.addResult("R-GCodModal", DateTime.Now.Subtract(inizio).Ticks);
- string GCodAttivi = vettGCod[0];
-
+
#if false
-
- string GCodAttivi = "";
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd0.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd1.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd2.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd3.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd4.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd5.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd6.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd7.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd8.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd9.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd10.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd11.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd12.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd13.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd14.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd15.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd16.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd17.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd18.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd19.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd20.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd21.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd22.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd23.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd24.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd25.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd26.code);
- GCodAttivi += string.Format("[{0}]", vettGCodes.gcd27.code);
-
- inizio = DateTime.Now;
- vettGCodes = SIEMENS_ref.getPathGCode1Shot();
- if (utils.CRB("recTime")) TimingData.addResult("R-GCodOneShot", DateTime.Now.Subtract(inizio).Ticks);
- if (vettGCodes.gcd0.flag > 0) GCodAttivi += string.Format("[{0}]", vettGCodes.gcd0.code);
- if (vettGCodes.gcd1.flag > 0) GCodAttivi += string.Format("[{0}]", vettGCodes.gcd1.code);
- if (vettGCodes.gcd2.flag > 0) GCodAttivi += string.Format("[{0}]", vettGCodes.gcd2.code);
- if (vettGCodes.gcd3.flag > 0) GCodAttivi += string.Format("[{0}]", vettGCodes.gcd3.code);
-
+
inizio = DateTime.Now;
CMSCncLib.Focas1.ODB5AXMAN vettTTCoord = SIEMENS_ref.getPathTTCoord();
if (utils.CRB("recTime")) TimingData.addResult("R-TTCoord", DateTime.Now.Subtract(inizio).Ticks);
@@ -1034,8 +995,20 @@ namespace MTC_Adapter
sb_2 = new StringBuilder();
sb_3 = new StringBuilder();
+ // copio gcodes!
+ string GCodAttivi = "";
+ for (int j = 0; j < 64; j++)
+ {
+ // SOLO se รจ diverso da vuoto...
+ if (vettGCod[i, j] != "")
+ {
+ GCodAttivi += string.Format("[{0}]", vettGCod[i, j]);
+ }
+ }
+
+ vettPath[i].mPathCodG_Act.Value = GCodAttivi;
+ sb_3.AppendLine(string.Format("Path {0}, GCodes: {1}", i + 1, GCodAttivi));
#if false
- vettPath[i].mPathCodG_Act.Value = GCodAttivi;
vettPath[i].mPathPosActX.Value = ((decimal)vettTTCoord.data1) / utils.CRI("fattdecimale");
vettPath[i].mPathPosActY.Value = ((decimal)vettTTCoord.data2) / utils.CRI("fattdecimale");
@@ -1049,7 +1022,6 @@ namespace MTC_Adapter
vettPath[i].mPathActiveAxes.Value = "";
sb_2.AppendLine(string.Format("Path {0}, PROG: {1}", i + 1, vettPath[i].mPathCurrProg.Value));
- sb_3.AppendLine(string.Format("Path {0}, GCodes: {1}", i + 1, GCodAttivi));
sb_3.AppendLine(string.Format("Path {0}, Asse 1: {1:N3}", i + 1, ((decimal)vettTTCoord.data1) / utils.CRI("fattdecimale")));
sb_3.AppendLine(string.Format("Path {0}, Asse 2: {1:N3}", i + 1, ((decimal)vettTTCoord.data2) / utils.CRI("fattdecimale")));
diff --git a/MTC_Adapter/MTC_Adapter/MainForm.Designer.cs b/MTC_Adapter/MTC_Adapter/MainForm.Designer.cs
index 9f9ef86..1f63910 100644
--- a/MTC_Adapter/MTC_Adapter/MainForm.Designer.cs
+++ b/MTC_Adapter/MTC_Adapter/MainForm.Designer.cs
@@ -28,2318 +28,2318 @@
///
private void InitializeComponent()
{
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
- this.PlcErr_02 = new System.Windows.Forms.CheckBox();
- this.gather = new System.Windows.Forms.Timer(this.components);
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.label8 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.messageText = new System.Windows.Forms.TextBox();
- this.messageCode = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.AxFeedOverValue = new System.Windows.Forms.TextBox();
- this.AxFeedActValue = new System.Windows.Forms.TextBox();
- this.label9 = new System.Windows.Forms.Label();
- this.AxFeedOver = new System.Windows.Forms.HScrollBar();
- this.label10 = new System.Windows.Forms.Label();
- this.AxFeedAct = new System.Windows.Forms.HScrollBar();
- this.partID = new System.Windows.Forms.TextBox();
- this.label13 = new System.Windows.Forms.Label();
- this.functionalMode = new System.Windows.Forms.ComboBox();
- this.label12 = new System.Windows.Forms.Label();
- this.PosAct = new System.Windows.Forms.DataGridView();
- this.X = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Z = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.I = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.J = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.K = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.PlcErr_03 = new System.Windows.Forms.CheckBox();
- this.PlcErr_01 = new System.Windows.Forms.CheckBox();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.ErrRT_03 = new System.Windows.Forms.CheckBox();
- this.ErrRT_02 = new System.Windows.Forms.CheckBox();
- this.CncErr_02 = new System.Windows.Forms.CheckBox();
- this.CncErr_03 = new System.Windows.Forms.CheckBox();
- this.CncErr_01 = new System.Windows.Forms.CheckBox();
- this.SysErr_03 = new System.Windows.Forms.CheckBox();
- this.ErrRT_01 = new System.Windows.Forms.CheckBox();
- this.SysErr_02 = new System.Windows.Forms.CheckBox();
- this.SysErr_01 = new System.Windows.Forms.CheckBox();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.AxAccelAct = new System.Windows.Forms.TextBox();
- this.label37 = new System.Windows.Forms.Label();
- this.AxBatt = new System.Windows.Forms.TextBox();
- this.label36 = new System.Windows.Forms.Label();
- this.AxAccTime = new System.Windows.Forms.TextBox();
- this.label11 = new System.Windows.Forms.Label();
- this.AxDir = new System.Windows.Forms.TextBox();
- this.label35 = new System.Windows.Forms.Label();
- this.label34 = new System.Windows.Forms.Label();
- this.cbAxType = new System.Windows.Forms.ComboBox();
- this.AxMastId = new System.Windows.Forms.TextBox();
- this.label33 = new System.Windows.Forms.Label();
- this.AxIsMaster = new System.Windows.Forms.CheckBox();
- this.AxMainProc = new System.Windows.Forms.TextBox();
- this.label32 = new System.Windows.Forms.Label();
- this.cbAxNum = new System.Windows.Forms.ComboBox();
- this.label31 = new System.Windows.Forms.Label();
- this.AxPositionValue = new System.Windows.Forms.TextBox();
- this.AxLoadValue = new System.Windows.Forms.TextBox();
- this.label5 = new System.Windows.Forms.Label();
- this.AxPosition = new System.Windows.Forms.HScrollBar();
- this.label4 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.AxLoad = new System.Windows.Forms.HScrollBar();
- this.program = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.groupBox9 = new System.Windows.Forms.GroupBox();
- this.txtPzKo = new System.Windows.Forms.TextBox();
- this.label25 = new System.Windows.Forms.Label();
- this.txtPzOk = new System.Windows.Forms.TextBox();
- this.label23 = new System.Windows.Forms.Label();
- this.txtPzTot = new System.Windows.Forms.TextBox();
- this.label21 = new System.Windows.Forms.Label();
- this.OPERATOR_ID = new System.Windows.Forms.TextBox();
- this.label19 = new System.Windows.Forms.Label();
- this.PROG_ROW_NUM = new System.Windows.Forms.TextBox();
- this.label17 = new System.Windows.Forms.Label();
- this.groupBox11 = new System.Windows.Forms.GroupBox();
- this.STATUS_STRB_DW3 = new System.Windows.Forms.TextBox();
- this.label49 = new System.Windows.Forms.Label();
- this.STATUS_STRB_DW2 = new System.Windows.Forms.TextBox();
- this.label47 = new System.Windows.Forms.Label();
- this.STATUS_STRB_DW1 = new System.Windows.Forms.TextBox();
- this.label18 = new System.Windows.Forms.Label();
- this.STATUS_STRB_DW0 = new System.Windows.Forms.TextBox();
- this.lblPLC_ADP = new System.Windows.Forms.Label();
- this.statusStrip1 = new System.Windows.Forms.StatusStrip();
- this.lblApp = new System.Windows.Forms.ToolStripStatusLabel();
- this.lblVers = new System.Windows.Forms.ToolStripStatusLabel();
- this.MainProgrBar = new System.Windows.Forms.ToolStripProgressBar();
- this.lblComStats = new System.Windows.Forms.ToolStripStatusLabel();
- this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
- this.groupBox13 = new System.Windows.Forms.GroupBox();
- this.cbPathSel = new System.Windows.Forms.ComboBox();
- this.label38 = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.txtPathSpeedOver = new System.Windows.Forms.TextBox();
- this.label28 = new System.Windows.Forms.Label();
- this.hsPathSpeedOver = new System.Windows.Forms.HScrollBar();
- this.txtPathFeedOver = new System.Windows.Forms.TextBox();
- this.label27 = new System.Windows.Forms.Label();
- this.hsPathFeedOver = new System.Windows.Forms.HScrollBar();
- this.txtPathFeed = new System.Windows.Forms.TextBox();
- this.label26 = new System.Windows.Forms.Label();
- this.hsPathFeed = new System.Windows.Forms.HScrollBar();
- this.menuStrip1 = new System.Windows.Forms.MenuStrip();
- this.fILEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.mLoadAdaptConf = new System.Windows.Forms.ToolStripMenuItem();
- this.sETUPToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.mConfGen = new System.Windows.Forms.ToolStripMenuItem();
- 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.lblOutMessage3 = new System.Windows.Forms.Label();
- this.lblOutMessage = 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();
- this.STATUS_ACK_DW2 = new System.Windows.Forms.TextBox();
- this.label51 = new System.Windows.Forms.Label();
- this.STATUS_ACK_DW1 = new System.Windows.Forms.TextBox();
- this.label50 = new System.Windows.Forms.Label();
- this.STATUS_ACK_DW0 = new System.Windows.Forms.TextBox();
- this.label48 = new System.Windows.Forms.Label();
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.dump = new System.Windows.Forms.Button();
- this.stop = new System.Windows.Forms.Button();
- this.start = new System.Windows.Forms.Button();
- this.port = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.tbConf = new System.Windows.Forms.TabPage();
- this.wbXmlConf = new System.Windows.Forms.WebBrowser();
- this.tpSIM = new System.Windows.Forms.TabPage();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.uoSpeedVal = new System.Windows.Forms.TextBox();
- this.uoLoadVal = new System.Windows.Forms.TextBox();
- this.label45 = new System.Windows.Forms.Label();
- this.uoSpeed = new System.Windows.Forms.HScrollBar();
- this.label46 = new System.Windows.Forms.Label();
- this.uoLoad = new System.Windows.Forms.HScrollBar();
- this.uoVitaRes = new System.Windows.Forms.TextBox();
- this.label43 = new System.Windows.Forms.Label();
- this.uoAccTime = new System.Windows.Forms.TextBox();
- this.label44 = new System.Windows.Forms.Label();
- this.uoToolId = new System.Windows.Forms.TextBox();
- this.label40 = new System.Windows.Forms.Label();
- this.uoStatus = new System.Windows.Forms.TextBox();
- this.label41 = new System.Windows.Forms.Label();
- this.uoNumCU = new System.Windows.Forms.TextBox();
- this.label42 = new System.Windows.Forms.Label();
- this.cbUnOpSel = new System.Windows.Forms.ComboBox();
- this.label39 = new System.Windows.Forms.Label();
- this.Execution = new System.Windows.Forms.GroupBox();
- this.ready = new System.Windows.Forms.RadioButton();
- this.feedhold = new System.Windows.Forms.RadioButton();
- this.stopped = new System.Windows.Forms.RadioButton();
- this.running = new System.Windows.Forms.RadioButton();
- this.mode = new System.Windows.Forms.GroupBox();
- this.edit = new System.Windows.Forms.RadioButton();
- this.mdi = new System.Windows.Forms.RadioButton();
- this.manual = new System.Windows.Forms.RadioButton();
- this.automatic = new System.Windows.Forms.RadioButton();
- this.groupBox7 = new System.Windows.Forms.GroupBox();
- this.D1_UUID = new System.Windows.Forms.Label();
- this.D1_ID = new System.Windows.Forms.Label();
- this.D1_NAME = new System.Windows.Forms.Label();
- this.lblAT = new System.Windows.Forms.Label();
- this.txtAccTime = new System.Windows.Forms.TextBox();
- this.label30 = new System.Windows.Forms.Label();
- this.txtPower = new System.Windows.Forms.TextBox();
- this.label16 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.groupBox10 = new System.Windows.Forms.GroupBox();
- this.enableDataSim = new System.Windows.Forms.CheckBox();
- this.groupBox8 = new System.Windows.Forms.GroupBox();
- this.estop = new System.Windows.Forms.CheckBox();
- this.groupBox12 = new System.Windows.Forms.GroupBox();
- this.lblCodaT = new System.Windows.Forms.Label();
- this.addCodT = new System.Windows.Forms.TextBox();
- this.label24 = new System.Windows.Forms.Label();
- this.lblCodaS = new System.Windows.Forms.Label();
- this.addCodS = new System.Windows.Forms.TextBox();
- this.label22 = new System.Windows.Forms.Label();
- this.lblCodaM = new System.Windows.Forms.Label();
- this.addCodM = new System.Windows.Forms.TextBox();
- this.label20 = new System.Windows.Forms.Label();
- this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
- this.trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
- this.groupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.PosAct)).BeginInit();
- this.groupBox3.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.groupBox9.SuspendLayout();
- this.groupBox11.SuspendLayout();
- this.statusStrip1.SuspendLayout();
- this.groupBox13.SuspendLayout();
- this.menuStrip1.SuspendLayout();
- this.tabCtrlMain.SuspendLayout();
- this.tpStatus.SuspendLayout();
- this.gbMonitor.SuspendLayout();
- this.groupBox6.SuspendLayout();
- this.groupBox1.SuspendLayout();
- this.tbConf.SuspendLayout();
- this.tpSIM.SuspendLayout();
- this.groupBox5.SuspendLayout();
- this.Execution.SuspendLayout();
- this.mode.SuspendLayout();
- this.groupBox7.SuspendLayout();
- this.groupBox10.SuspendLayout();
- this.groupBox8.SuspendLayout();
- this.groupBox12.SuspendLayout();
- this.SuspendLayout();
- //
- // PlcErr_02
- //
- 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);
- this.PlcErr_02.Name = "PlcErr_02";
- this.PlcErr_02.Size = new System.Drawing.Size(92, 21);
- this.PlcErr_02.TabIndex = 6;
- this.PlcErr_02.Text = "PlcErr_05";
- this.PlcErr_02.UseVisualStyleBackColor = true;
- this.PlcErr_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // gather
- //
- this.gather.Tick += new System.EventHandler(this.gather_Tick);
- //
- // groupBox4
- //
- this.groupBox4.Controls.Add(this.label8);
- this.groupBox4.Controls.Add(this.label7);
- 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);
- this.groupBox4.Name = "groupBox4";
- 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;
- this.groupBox4.Text = "Message";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(157, 32);
- this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(35, 17);
- this.label8.TabIndex = 19;
- this.label8.Text = "Text";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(5, 32);
- this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(41, 17);
- this.label7.TabIndex = 18;
- this.label7.Text = "Code";
- //
- // messageText
- //
- this.messageText.Location = new System.Drawing.Point(201, 28);
- 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;
- this.messageText.Leave += new System.EventHandler(this.message_Leave);
- //
- // messageCode
- //
- this.messageCode.Location = new System.Drawing.Point(67, 28);
- 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;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(16, 452);
- this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(0, 17);
- this.label6.TabIndex = 43;
- //
- // AxFeedOverValue
- //
- this.AxFeedOverValue.Location = new System.Drawing.Point(353, 201);
- 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;
- //
- // AxFeedActValue
- //
- this.AxFeedActValue.Location = new System.Drawing.Point(353, 175);
- 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;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(16, 204);
- this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(75, 17);
- this.label9.TabIndex = 24;
- this.label9.Text = "Feed Over";
- //
- // AxFeedOver
- //
- this.AxFeedOver.Location = new System.Drawing.Point(108, 201);
- this.AxFeedOver.Maximum = 150;
- this.AxFeedOver.Name = "AxFeedOver";
- this.AxFeedOver.Size = new System.Drawing.Size(224, 18);
- this.AxFeedOver.TabIndex = 23;
- this.AxFeedOver.Scroll += new System.Windows.Forms.ScrollEventHandler(this.cSpeed_Scroll);
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(16, 178);
- this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(64, 17);
- this.label10.TabIndex = 22;
- this.label10.Text = "Feed Act";
- //
- // AxFeedAct
- //
- this.AxFeedAct.Location = new System.Drawing.Point(108, 175);
- this.AxFeedAct.Name = "AxFeedAct";
- this.AxFeedAct.Size = new System.Drawing.Size(224, 18);
- this.AxFeedAct.TabIndex = 20;
- this.AxFeedAct.Scroll += new System.Windows.Forms.ScrollEventHandler(this.cLoad_Scroll);
- //
- // partID
- //
- this.partID.Location = new System.Drawing.Point(107, 55);
- 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;
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(41, 59);
- this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(51, 17);
- this.label13.TabIndex = 48;
- this.label13.Text = "Part ID";
- //
- // functionalMode
- //
- this.functionalMode.FormattingEnabled = true;
- this.functionalMode.Location = new System.Drawing.Point(107, 87);
- 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;
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(20, 91);
- this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(69, 17);
- this.label12.TabIndex = 46;
- this.label12.Text = "Halt Type";
- //
- // PosAct
- //
- this.PosAct.AllowUserToAddRows = false;
- this.PosAct.AllowUserToDeleteRows = false;
- this.PosAct.AllowUserToResizeColumns = false;
- this.PosAct.AllowUserToResizeRows = false;
- this.PosAct.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.PosAct.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
+ this.PlcErr_02 = new System.Windows.Forms.CheckBox();
+ this.gather = new System.Windows.Forms.Timer(this.components);
+ this.groupBox4 = new System.Windows.Forms.GroupBox();
+ this.label8 = new System.Windows.Forms.Label();
+ this.label7 = new System.Windows.Forms.Label();
+ this.messageText = new System.Windows.Forms.TextBox();
+ this.messageCode = new System.Windows.Forms.TextBox();
+ this.label6 = new System.Windows.Forms.Label();
+ this.AxFeedOverValue = new System.Windows.Forms.TextBox();
+ this.AxFeedActValue = new System.Windows.Forms.TextBox();
+ this.label9 = new System.Windows.Forms.Label();
+ this.AxFeedOver = new System.Windows.Forms.HScrollBar();
+ this.label10 = new System.Windows.Forms.Label();
+ this.AxFeedAct = new System.Windows.Forms.HScrollBar();
+ this.partID = new System.Windows.Forms.TextBox();
+ this.label13 = new System.Windows.Forms.Label();
+ this.functionalMode = new System.Windows.Forms.ComboBox();
+ this.label12 = new System.Windows.Forms.Label();
+ this.PosAct = new System.Windows.Forms.DataGridView();
+ this.X = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Y = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.Z = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.I = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.J = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.K = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.PlcErr_03 = new System.Windows.Forms.CheckBox();
+ this.PlcErr_01 = new System.Windows.Forms.CheckBox();
+ this.groupBox3 = new System.Windows.Forms.GroupBox();
+ this.ErrRT_03 = new System.Windows.Forms.CheckBox();
+ this.ErrRT_02 = new System.Windows.Forms.CheckBox();
+ this.CncErr_02 = new System.Windows.Forms.CheckBox();
+ this.CncErr_03 = new System.Windows.Forms.CheckBox();
+ this.CncErr_01 = new System.Windows.Forms.CheckBox();
+ this.SysErr_03 = new System.Windows.Forms.CheckBox();
+ this.ErrRT_01 = new System.Windows.Forms.CheckBox();
+ this.SysErr_02 = new System.Windows.Forms.CheckBox();
+ this.SysErr_01 = new System.Windows.Forms.CheckBox();
+ this.groupBox2 = new System.Windows.Forms.GroupBox();
+ this.AxAccelAct = new System.Windows.Forms.TextBox();
+ this.label37 = new System.Windows.Forms.Label();
+ this.AxBatt = new System.Windows.Forms.TextBox();
+ this.label36 = new System.Windows.Forms.Label();
+ this.AxAccTime = new System.Windows.Forms.TextBox();
+ this.label11 = new System.Windows.Forms.Label();
+ this.AxDir = new System.Windows.Forms.TextBox();
+ this.label35 = new System.Windows.Forms.Label();
+ this.label34 = new System.Windows.Forms.Label();
+ this.cbAxType = new System.Windows.Forms.ComboBox();
+ this.AxMastId = new System.Windows.Forms.TextBox();
+ this.label33 = new System.Windows.Forms.Label();
+ this.AxIsMaster = new System.Windows.Forms.CheckBox();
+ this.AxMainProc = new System.Windows.Forms.TextBox();
+ this.label32 = new System.Windows.Forms.Label();
+ this.cbAxNum = new System.Windows.Forms.ComboBox();
+ this.label31 = new System.Windows.Forms.Label();
+ this.AxPositionValue = new System.Windows.Forms.TextBox();
+ this.AxLoadValue = new System.Windows.Forms.TextBox();
+ this.label5 = new System.Windows.Forms.Label();
+ this.AxPosition = new System.Windows.Forms.HScrollBar();
+ this.label4 = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
+ this.AxLoad = new System.Windows.Forms.HScrollBar();
+ this.program = new System.Windows.Forms.TextBox();
+ this.label2 = new System.Windows.Forms.Label();
+ this.groupBox9 = new System.Windows.Forms.GroupBox();
+ this.txtPzKo = new System.Windows.Forms.TextBox();
+ this.label25 = new System.Windows.Forms.Label();
+ this.txtPzOk = new System.Windows.Forms.TextBox();
+ this.label23 = new System.Windows.Forms.Label();
+ this.txtPzTot = new System.Windows.Forms.TextBox();
+ this.label21 = new System.Windows.Forms.Label();
+ this.OPERATOR_ID = new System.Windows.Forms.TextBox();
+ this.label19 = new System.Windows.Forms.Label();
+ this.PROG_ROW_NUM = new System.Windows.Forms.TextBox();
+ this.label17 = new System.Windows.Forms.Label();
+ this.groupBox11 = new System.Windows.Forms.GroupBox();
+ this.STATUS_STRB_DW3 = new System.Windows.Forms.TextBox();
+ this.label49 = new System.Windows.Forms.Label();
+ this.STATUS_STRB_DW2 = new System.Windows.Forms.TextBox();
+ this.label47 = new System.Windows.Forms.Label();
+ this.STATUS_STRB_DW1 = new System.Windows.Forms.TextBox();
+ this.label18 = new System.Windows.Forms.Label();
+ this.STATUS_STRB_DW0 = new System.Windows.Forms.TextBox();
+ this.lblPLC_ADP = new System.Windows.Forms.Label();
+ this.statusStrip1 = new System.Windows.Forms.StatusStrip();
+ this.lblApp = new System.Windows.Forms.ToolStripStatusLabel();
+ this.lblVers = new System.Windows.Forms.ToolStripStatusLabel();
+ this.MainProgrBar = new System.Windows.Forms.ToolStripProgressBar();
+ this.lblComStats = new System.Windows.Forms.ToolStripStatusLabel();
+ this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
+ this.groupBox13 = new System.Windows.Forms.GroupBox();
+ this.cbPathSel = new System.Windows.Forms.ComboBox();
+ this.label38 = new System.Windows.Forms.Label();
+ this.label29 = new System.Windows.Forms.Label();
+ this.txtPathSpeedOver = new System.Windows.Forms.TextBox();
+ this.label28 = new System.Windows.Forms.Label();
+ this.hsPathSpeedOver = new System.Windows.Forms.HScrollBar();
+ this.txtPathFeedOver = new System.Windows.Forms.TextBox();
+ this.label27 = new System.Windows.Forms.Label();
+ this.hsPathFeedOver = new System.Windows.Forms.HScrollBar();
+ this.txtPathFeed = new System.Windows.Forms.TextBox();
+ this.label26 = new System.Windows.Forms.Label();
+ this.hsPathFeed = new System.Windows.Forms.HScrollBar();
+ this.menuStrip1 = new System.Windows.Forms.MenuStrip();
+ this.fILEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.mLoadAdaptConf = new System.Windows.Forms.ToolStripMenuItem();
+ this.sETUPToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.mConfGen = new System.Windows.Forms.ToolStripMenuItem();
+ 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.lblOutMessage3 = new System.Windows.Forms.Label();
+ this.lblOutMessage2 = new System.Windows.Forms.Label();
+ this.lblOutMessage = 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();
+ this.STATUS_ACK_DW2 = new System.Windows.Forms.TextBox();
+ this.label51 = new System.Windows.Forms.Label();
+ this.STATUS_ACK_DW1 = new System.Windows.Forms.TextBox();
+ this.label50 = new System.Windows.Forms.Label();
+ this.STATUS_ACK_DW0 = new System.Windows.Forms.TextBox();
+ this.label48 = new System.Windows.Forms.Label();
+ this.groupBox1 = new System.Windows.Forms.GroupBox();
+ this.dump = new System.Windows.Forms.Button();
+ this.stop = new System.Windows.Forms.Button();
+ this.start = new System.Windows.Forms.Button();
+ this.port = new System.Windows.Forms.TextBox();
+ this.label1 = new System.Windows.Forms.Label();
+ this.tbConf = new System.Windows.Forms.TabPage();
+ this.wbXmlConf = new System.Windows.Forms.WebBrowser();
+ this.tpSIM = new System.Windows.Forms.TabPage();
+ this.groupBox5 = new System.Windows.Forms.GroupBox();
+ this.uoSpeedVal = new System.Windows.Forms.TextBox();
+ this.uoLoadVal = new System.Windows.Forms.TextBox();
+ this.label45 = new System.Windows.Forms.Label();
+ this.uoSpeed = new System.Windows.Forms.HScrollBar();
+ this.label46 = new System.Windows.Forms.Label();
+ this.uoLoad = new System.Windows.Forms.HScrollBar();
+ this.uoVitaRes = new System.Windows.Forms.TextBox();
+ this.label43 = new System.Windows.Forms.Label();
+ this.uoAccTime = new System.Windows.Forms.TextBox();
+ this.label44 = new System.Windows.Forms.Label();
+ this.uoToolId = new System.Windows.Forms.TextBox();
+ this.label40 = new System.Windows.Forms.Label();
+ this.uoStatus = new System.Windows.Forms.TextBox();
+ this.label41 = new System.Windows.Forms.Label();
+ this.uoNumCU = new System.Windows.Forms.TextBox();
+ this.label42 = new System.Windows.Forms.Label();
+ this.cbUnOpSel = new System.Windows.Forms.ComboBox();
+ this.label39 = new System.Windows.Forms.Label();
+ this.Execution = new System.Windows.Forms.GroupBox();
+ this.ready = new System.Windows.Forms.RadioButton();
+ this.feedhold = new System.Windows.Forms.RadioButton();
+ this.stopped = new System.Windows.Forms.RadioButton();
+ this.running = new System.Windows.Forms.RadioButton();
+ this.mode = new System.Windows.Forms.GroupBox();
+ this.edit = new System.Windows.Forms.RadioButton();
+ this.mdi = new System.Windows.Forms.RadioButton();
+ this.manual = new System.Windows.Forms.RadioButton();
+ this.automatic = new System.Windows.Forms.RadioButton();
+ this.groupBox7 = new System.Windows.Forms.GroupBox();
+ this.D1_UUID = new System.Windows.Forms.Label();
+ this.D1_ID = new System.Windows.Forms.Label();
+ this.D1_NAME = new System.Windows.Forms.Label();
+ this.lblAT = new System.Windows.Forms.Label();
+ this.txtAccTime = new System.Windows.Forms.TextBox();
+ this.label30 = new System.Windows.Forms.Label();
+ this.txtPower = new System.Windows.Forms.TextBox();
+ this.label16 = new System.Windows.Forms.Label();
+ this.label15 = new System.Windows.Forms.Label();
+ this.label14 = new System.Windows.Forms.Label();
+ this.groupBox10 = new System.Windows.Forms.GroupBox();
+ this.enableDataSim = new System.Windows.Forms.CheckBox();
+ this.groupBox8 = new System.Windows.Forms.GroupBox();
+ this.estop = new System.Windows.Forms.CheckBox();
+ this.groupBox12 = new System.Windows.Forms.GroupBox();
+ this.lblCodaT = new System.Windows.Forms.Label();
+ this.addCodT = new System.Windows.Forms.TextBox();
+ this.label24 = new System.Windows.Forms.Label();
+ this.lblCodaS = new System.Windows.Forms.Label();
+ this.addCodS = new System.Windows.Forms.TextBox();
+ this.label22 = new System.Windows.Forms.Label();
+ this.lblCodaM = new System.Windows.Forms.Label();
+ this.addCodM = new System.Windows.Forms.TextBox();
+ this.label20 = new System.Windows.Forms.Label();
+ this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
+ this.trayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
+ this.groupBox4.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.PosAct)).BeginInit();
+ this.groupBox3.SuspendLayout();
+ this.groupBox2.SuspendLayout();
+ this.groupBox9.SuspendLayout();
+ this.groupBox11.SuspendLayout();
+ this.statusStrip1.SuspendLayout();
+ this.groupBox13.SuspendLayout();
+ this.menuStrip1.SuspendLayout();
+ this.tabCtrlMain.SuspendLayout();
+ this.tpStatus.SuspendLayout();
+ this.gbMonitor.SuspendLayout();
+ this.groupBox6.SuspendLayout();
+ this.groupBox1.SuspendLayout();
+ this.tbConf.SuspendLayout();
+ this.tpSIM.SuspendLayout();
+ this.groupBox5.SuspendLayout();
+ this.Execution.SuspendLayout();
+ this.mode.SuspendLayout();
+ this.groupBox7.SuspendLayout();
+ this.groupBox10.SuspendLayout();
+ this.groupBox8.SuspendLayout();
+ this.groupBox12.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // PlcErr_02
+ //
+ 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);
+ this.PlcErr_02.Name = "PlcErr_02";
+ this.PlcErr_02.Size = new System.Drawing.Size(92, 21);
+ this.PlcErr_02.TabIndex = 6;
+ this.PlcErr_02.Text = "PlcErr_05";
+ this.PlcErr_02.UseVisualStyleBackColor = true;
+ this.PlcErr_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // gather
+ //
+ this.gather.Tick += new System.EventHandler(this.gather_Tick);
+ //
+ // groupBox4
+ //
+ this.groupBox4.Controls.Add(this.label8);
+ this.groupBox4.Controls.Add(this.label7);
+ 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);
+ this.groupBox4.Name = "groupBox4";
+ 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;
+ this.groupBox4.Text = "Message";
+ //
+ // label8
+ //
+ this.label8.AutoSize = true;
+ this.label8.Location = new System.Drawing.Point(157, 32);
+ this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(35, 17);
+ this.label8.TabIndex = 19;
+ this.label8.Text = "Text";
+ //
+ // label7
+ //
+ this.label7.AutoSize = true;
+ this.label7.Location = new System.Drawing.Point(5, 32);
+ this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(41, 17);
+ this.label7.TabIndex = 18;
+ this.label7.Text = "Code";
+ //
+ // messageText
+ //
+ this.messageText.Location = new System.Drawing.Point(201, 28);
+ 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;
+ this.messageText.Leave += new System.EventHandler(this.message_Leave);
+ //
+ // messageCode
+ //
+ this.messageCode.Location = new System.Drawing.Point(67, 28);
+ 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;
+ //
+ // label6
+ //
+ this.label6.AutoSize = true;
+ this.label6.Location = new System.Drawing.Point(16, 452);
+ this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label6.Name = "label6";
+ this.label6.Size = new System.Drawing.Size(0, 17);
+ this.label6.TabIndex = 43;
+ //
+ // AxFeedOverValue
+ //
+ this.AxFeedOverValue.Location = new System.Drawing.Point(353, 201);
+ 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;
+ //
+ // AxFeedActValue
+ //
+ this.AxFeedActValue.Location = new System.Drawing.Point(353, 175);
+ 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;
+ //
+ // label9
+ //
+ this.label9.AutoSize = true;
+ this.label9.Location = new System.Drawing.Point(16, 204);
+ this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label9.Name = "label9";
+ this.label9.Size = new System.Drawing.Size(75, 17);
+ this.label9.TabIndex = 24;
+ this.label9.Text = "Feed Over";
+ //
+ // AxFeedOver
+ //
+ this.AxFeedOver.Location = new System.Drawing.Point(108, 201);
+ this.AxFeedOver.Maximum = 150;
+ this.AxFeedOver.Name = "AxFeedOver";
+ this.AxFeedOver.Size = new System.Drawing.Size(224, 18);
+ this.AxFeedOver.TabIndex = 23;
+ this.AxFeedOver.Scroll += new System.Windows.Forms.ScrollEventHandler(this.cSpeed_Scroll);
+ //
+ // label10
+ //
+ this.label10.AutoSize = true;
+ this.label10.Location = new System.Drawing.Point(16, 178);
+ this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(64, 17);
+ this.label10.TabIndex = 22;
+ this.label10.Text = "Feed Act";
+ //
+ // AxFeedAct
+ //
+ this.AxFeedAct.Location = new System.Drawing.Point(108, 175);
+ this.AxFeedAct.Name = "AxFeedAct";
+ this.AxFeedAct.Size = new System.Drawing.Size(224, 18);
+ this.AxFeedAct.TabIndex = 20;
+ this.AxFeedAct.Scroll += new System.Windows.Forms.ScrollEventHandler(this.cLoad_Scroll);
+ //
+ // partID
+ //
+ this.partID.Location = new System.Drawing.Point(107, 55);
+ 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;
+ //
+ // label13
+ //
+ this.label13.AutoSize = true;
+ this.label13.Location = new System.Drawing.Point(41, 59);
+ this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(51, 17);
+ this.label13.TabIndex = 48;
+ this.label13.Text = "Part ID";
+ //
+ // functionalMode
+ //
+ this.functionalMode.FormattingEnabled = true;
+ this.functionalMode.Location = new System.Drawing.Point(107, 87);
+ 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;
+ //
+ // label12
+ //
+ this.label12.AutoSize = true;
+ this.label12.Location = new System.Drawing.Point(20, 91);
+ this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label12.Name = "label12";
+ this.label12.Size = new System.Drawing.Size(69, 17);
+ this.label12.TabIndex = 46;
+ this.label12.Text = "Halt Type";
+ //
+ // PosAct
+ //
+ this.PosAct.AllowUserToAddRows = false;
+ this.PosAct.AllowUserToDeleteRows = false;
+ this.PosAct.AllowUserToResizeColumns = false;
+ this.PosAct.AllowUserToResizeRows = false;
+ this.PosAct.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.PosAct.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.X,
this.Y,
this.Z,
this.I,
this.J,
this.K});
- this.PosAct.Location = new System.Drawing.Point(107, 142);
- 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);
- this.PosAct.TabIndex = 32;
- //
- // X
- //
- this.X.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
- this.X.HeaderText = "X";
- this.X.Name = "X";
- this.X.Width = 46;
- //
- // Y
- //
- this.Y.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
- this.Y.HeaderText = "Y";
- this.Y.Name = "Y";
- this.Y.Width = 46;
- //
- // Z
- //
- this.Z.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
- this.Z.HeaderText = "Z";
- this.Z.Name = "Z";
- this.Z.Width = 46;
- //
- // I
- //
- this.I.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
- this.I.HeaderText = "I";
- this.I.Name = "I";
- this.I.Width = 40;
- //
- // J
- //
- this.J.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
- this.J.HeaderText = "J";
- this.J.Name = "J";
- this.J.Width = 44;
- //
- // K
- //
- this.K.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
- this.K.HeaderText = "K";
- this.K.Name = "K";
- this.K.Width = 46;
- //
- // PlcErr_03
- //
- 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);
- this.PlcErr_03.Name = "PlcErr_03";
- this.PlcErr_03.Size = new System.Drawing.Size(92, 21);
- this.PlcErr_03.TabIndex = 5;
- this.PlcErr_03.Text = "PlcErr_06";
- this.PlcErr_03.UseVisualStyleBackColor = true;
- this.PlcErr_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // PlcErr_01
- //
- 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);
- this.PlcErr_01.Name = "PlcErr_01";
- this.PlcErr_01.Size = new System.Drawing.Size(92, 21);
- this.PlcErr_01.TabIndex = 4;
- this.PlcErr_01.Text = "PlcErr_04";
- this.PlcErr_01.UseVisualStyleBackColor = true;
- this.PlcErr_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.ErrRT_03);
- this.groupBox3.Controls.Add(this.ErrRT_02);
- this.groupBox3.Controls.Add(this.CncErr_02);
- this.groupBox3.Controls.Add(this.CncErr_03);
- this.groupBox3.Controls.Add(this.CncErr_01);
- this.groupBox3.Controls.Add(this.PlcErr_02);
- this.groupBox3.Controls.Add(this.PlcErr_03);
- this.groupBox3.Controls.Add(this.PlcErr_01);
- this.groupBox3.Controls.Add(this.SysErr_03);
- this.groupBox3.Controls.Add(this.ErrRT_01);
- 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);
- this.groupBox3.Name = "groupBox3";
- 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;
- this.groupBox3.Text = "Alarms";
- //
- // ErrRT_03
- //
- 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);
- this.ErrRT_03.Name = "ErrRT_03";
- this.ErrRT_03.Size = new System.Drawing.Size(83, 21);
- this.ErrRT_03.TabIndex = 11;
- this.ErrRT_03.Text = "ERR_12";
- this.ErrRT_03.UseVisualStyleBackColor = true;
- this.ErrRT_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // ErrRT_02
- //
- 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);
- this.ErrRT_02.Name = "ErrRT_02";
- this.ErrRT_02.Size = new System.Drawing.Size(83, 21);
- this.ErrRT_02.TabIndex = 10;
- this.ErrRT_02.Text = "ERR_11";
- this.ErrRT_02.UseVisualStyleBackColor = true;
- this.ErrRT_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // CncErr_02
- //
- 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);
- this.CncErr_02.Name = "CncErr_02";
- this.CncErr_02.Size = new System.Drawing.Size(97, 21);
- this.CncErr_02.TabIndex = 9;
- this.CncErr_02.Text = "CncErr_08";
- this.CncErr_02.UseVisualStyleBackColor = true;
- this.CncErr_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // CncErr_03
- //
- 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);
- this.CncErr_03.Name = "CncErr_03";
- this.CncErr_03.Size = new System.Drawing.Size(97, 21);
- this.CncErr_03.TabIndex = 8;
- this.CncErr_03.Text = "CncErr_09";
- this.CncErr_03.UseVisualStyleBackColor = true;
- this.CncErr_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // CncErr_01
- //
- 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);
- this.CncErr_01.Name = "CncErr_01";
- this.CncErr_01.Size = new System.Drawing.Size(97, 21);
- this.CncErr_01.TabIndex = 7;
- this.CncErr_01.Text = "CncErr_07";
- this.CncErr_01.UseVisualStyleBackColor = true;
- this.CncErr_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // SysErr_03
- //
- 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);
- this.SysErr_03.Name = "SysErr_03";
- this.SysErr_03.Size = new System.Drawing.Size(96, 21);
- this.SysErr_03.TabIndex = 3;
- this.SysErr_03.Text = "SysErr_03";
- this.SysErr_03.UseVisualStyleBackColor = true;
- this.SysErr_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // ErrRT_01
- //
- 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);
- this.ErrRT_01.Name = "ErrRT_01";
- this.ErrRT_01.Size = new System.Drawing.Size(83, 21);
- this.ErrRT_01.TabIndex = 2;
- this.ErrRT_01.Text = "ERR_10";
- this.ErrRT_01.UseVisualStyleBackColor = true;
- this.ErrRT_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // SysErr_02
- //
- 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);
- this.SysErr_02.Name = "SysErr_02";
- this.SysErr_02.Size = new System.Drawing.Size(96, 21);
- this.SysErr_02.TabIndex = 1;
- this.SysErr_02.Text = "SysErr_02";
- this.SysErr_02.UseVisualStyleBackColor = true;
- this.SysErr_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // SysErr_01
- //
- 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);
- this.SysErr_01.Name = "SysErr_01";
- this.SysErr_01.Size = new System.Drawing.Size(96, 21);
- this.SysErr_01.TabIndex = 0;
- this.SysErr_01.Text = "SysErr_01";
- this.SysErr_01.UseVisualStyleBackColor = true;
- this.SysErr_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.AxAccelAct);
- this.groupBox2.Controls.Add(this.label37);
- this.groupBox2.Controls.Add(this.AxBatt);
- this.groupBox2.Controls.Add(this.label36);
- this.groupBox2.Controls.Add(this.AxAccTime);
- this.groupBox2.Controls.Add(this.label11);
- this.groupBox2.Controls.Add(this.AxFeedOverValue);
- this.groupBox2.Controls.Add(this.AxDir);
- this.groupBox2.Controls.Add(this.AxFeedActValue);
- this.groupBox2.Controls.Add(this.label35);
- this.groupBox2.Controls.Add(this.label9);
- this.groupBox2.Controls.Add(this.label34);
- this.groupBox2.Controls.Add(this.AxFeedOver);
- this.groupBox2.Controls.Add(this.cbAxType);
- this.groupBox2.Controls.Add(this.label10);
- this.groupBox2.Controls.Add(this.AxMastId);
- this.groupBox2.Controls.Add(this.label33);
- this.groupBox2.Controls.Add(this.AxFeedAct);
- this.groupBox2.Controls.Add(this.AxIsMaster);
- this.groupBox2.Controls.Add(this.AxMainProc);
- this.groupBox2.Controls.Add(this.label32);
- this.groupBox2.Controls.Add(this.cbAxNum);
- this.groupBox2.Controls.Add(this.label31);
- this.groupBox2.Controls.Add(this.AxPositionValue);
- this.groupBox2.Controls.Add(this.AxLoadValue);
- this.groupBox2.Controls.Add(this.label5);
- this.groupBox2.Controls.Add(this.AxPosition);
- this.groupBox2.Controls.Add(this.label4);
- 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);
- this.groupBox2.Name = "groupBox2";
- 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;
- this.groupBox2.Text = "Axis";
- //
- // AxAccelAct
- //
- this.AxAccelAct.Location = new System.Drawing.Point(107, 226);
- 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;
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(13, 230);
- this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(66, 17);
- this.label37.TabIndex = 42;
- this.label37.Text = "Accel Act";
- //
- // AxBatt
- //
- this.AxBatt.Location = new System.Drawing.Point(405, 226);
- 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;
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(349, 230);
- this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(53, 17);
- this.label36.TabIndex = 40;
- this.label36.Text = "Battery";
- //
- // AxAccTime
- //
- this.AxAccTime.Location = new System.Drawing.Point(263, 226);
- 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;
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(169, 230);
- this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(85, 17);
- this.label11.TabIndex = 38;
- this.label11.Text = "Accum Time";
- //
- // AxDir
- //
- this.AxDir.Location = new System.Drawing.Point(353, 82);
- 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;
- this.AxDir.Text = "1";
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Location = new System.Drawing.Point(291, 87);
- this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(64, 17);
- this.label35.TabIndex = 36;
- this.label35.Text = "Direction";
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(16, 89);
- this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(69, 17);
- this.label34.TabIndex = 35;
- this.label34.Text = "Axis Type";
- //
- // cbAxType
- //
- this.cbAxType.FormattingEnabled = true;
- this.cbAxType.Items.AddRange(new object[] {
+ this.PosAct.Location = new System.Drawing.Point(107, 142);
+ 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);
+ this.PosAct.TabIndex = 32;
+ //
+ // X
+ //
+ this.X.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
+ this.X.HeaderText = "X";
+ this.X.Name = "X";
+ this.X.Width = 46;
+ //
+ // Y
+ //
+ this.Y.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
+ this.Y.HeaderText = "Y";
+ this.Y.Name = "Y";
+ this.Y.Width = 46;
+ //
+ // Z
+ //
+ this.Z.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
+ this.Z.HeaderText = "Z";
+ this.Z.Name = "Z";
+ this.Z.Width = 46;
+ //
+ // I
+ //
+ this.I.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
+ this.I.HeaderText = "I";
+ this.I.Name = "I";
+ this.I.Width = 40;
+ //
+ // J
+ //
+ this.J.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
+ this.J.HeaderText = "J";
+ this.J.Name = "J";
+ this.J.Width = 44;
+ //
+ // K
+ //
+ this.K.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
+ this.K.HeaderText = "K";
+ this.K.Name = "K";
+ this.K.Width = 46;
+ //
+ // PlcErr_03
+ //
+ 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);
+ this.PlcErr_03.Name = "PlcErr_03";
+ this.PlcErr_03.Size = new System.Drawing.Size(92, 21);
+ this.PlcErr_03.TabIndex = 5;
+ this.PlcErr_03.Text = "PlcErr_06";
+ this.PlcErr_03.UseVisualStyleBackColor = true;
+ this.PlcErr_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // PlcErr_01
+ //
+ 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);
+ this.PlcErr_01.Name = "PlcErr_01";
+ this.PlcErr_01.Size = new System.Drawing.Size(92, 21);
+ this.PlcErr_01.TabIndex = 4;
+ this.PlcErr_01.Text = "PlcErr_04";
+ this.PlcErr_01.UseVisualStyleBackColor = true;
+ this.PlcErr_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // groupBox3
+ //
+ this.groupBox3.Controls.Add(this.ErrRT_03);
+ this.groupBox3.Controls.Add(this.ErrRT_02);
+ this.groupBox3.Controls.Add(this.CncErr_02);
+ this.groupBox3.Controls.Add(this.CncErr_03);
+ this.groupBox3.Controls.Add(this.CncErr_01);
+ this.groupBox3.Controls.Add(this.PlcErr_02);
+ this.groupBox3.Controls.Add(this.PlcErr_03);
+ this.groupBox3.Controls.Add(this.PlcErr_01);
+ this.groupBox3.Controls.Add(this.SysErr_03);
+ this.groupBox3.Controls.Add(this.ErrRT_01);
+ 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);
+ this.groupBox3.Name = "groupBox3";
+ 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;
+ this.groupBox3.Text = "Alarms";
+ //
+ // ErrRT_03
+ //
+ 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);
+ this.ErrRT_03.Name = "ErrRT_03";
+ this.ErrRT_03.Size = new System.Drawing.Size(83, 21);
+ this.ErrRT_03.TabIndex = 11;
+ this.ErrRT_03.Text = "ERR_12";
+ this.ErrRT_03.UseVisualStyleBackColor = true;
+ this.ErrRT_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // ErrRT_02
+ //
+ 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);
+ this.ErrRT_02.Name = "ErrRT_02";
+ this.ErrRT_02.Size = new System.Drawing.Size(83, 21);
+ this.ErrRT_02.TabIndex = 10;
+ this.ErrRT_02.Text = "ERR_11";
+ this.ErrRT_02.UseVisualStyleBackColor = true;
+ this.ErrRT_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // CncErr_02
+ //
+ 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);
+ this.CncErr_02.Name = "CncErr_02";
+ this.CncErr_02.Size = new System.Drawing.Size(97, 21);
+ this.CncErr_02.TabIndex = 9;
+ this.CncErr_02.Text = "CncErr_08";
+ this.CncErr_02.UseVisualStyleBackColor = true;
+ this.CncErr_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // CncErr_03
+ //
+ 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);
+ this.CncErr_03.Name = "CncErr_03";
+ this.CncErr_03.Size = new System.Drawing.Size(97, 21);
+ this.CncErr_03.TabIndex = 8;
+ this.CncErr_03.Text = "CncErr_09";
+ this.CncErr_03.UseVisualStyleBackColor = true;
+ this.CncErr_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // CncErr_01
+ //
+ 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);
+ this.CncErr_01.Name = "CncErr_01";
+ this.CncErr_01.Size = new System.Drawing.Size(97, 21);
+ this.CncErr_01.TabIndex = 7;
+ this.CncErr_01.Text = "CncErr_07";
+ this.CncErr_01.UseVisualStyleBackColor = true;
+ this.CncErr_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // SysErr_03
+ //
+ 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);
+ this.SysErr_03.Name = "SysErr_03";
+ this.SysErr_03.Size = new System.Drawing.Size(96, 21);
+ this.SysErr_03.TabIndex = 3;
+ this.SysErr_03.Text = "SysErr_03";
+ this.SysErr_03.UseVisualStyleBackColor = true;
+ this.SysErr_03.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // ErrRT_01
+ //
+ 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);
+ this.ErrRT_01.Name = "ErrRT_01";
+ this.ErrRT_01.Size = new System.Drawing.Size(83, 21);
+ this.ErrRT_01.TabIndex = 2;
+ this.ErrRT_01.Text = "ERR_10";
+ this.ErrRT_01.UseVisualStyleBackColor = true;
+ this.ErrRT_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // SysErr_02
+ //
+ 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);
+ this.SysErr_02.Name = "SysErr_02";
+ this.SysErr_02.Size = new System.Drawing.Size(96, 21);
+ this.SysErr_02.TabIndex = 1;
+ this.SysErr_02.Text = "SysErr_02";
+ this.SysErr_02.UseVisualStyleBackColor = true;
+ this.SysErr_02.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // SysErr_01
+ //
+ 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);
+ this.SysErr_01.Name = "SysErr_01";
+ this.SysErr_01.Size = new System.Drawing.Size(96, 21);
+ this.SysErr_01.TabIndex = 0;
+ this.SysErr_01.Text = "SysErr_01";
+ this.SysErr_01.UseVisualStyleBackColor = true;
+ this.SysErr_01.CheckedChanged += new System.EventHandler(this.SysErr_01_CheckedChanged);
+ //
+ // groupBox2
+ //
+ this.groupBox2.Controls.Add(this.AxAccelAct);
+ this.groupBox2.Controls.Add(this.label37);
+ this.groupBox2.Controls.Add(this.AxBatt);
+ this.groupBox2.Controls.Add(this.label36);
+ this.groupBox2.Controls.Add(this.AxAccTime);
+ this.groupBox2.Controls.Add(this.label11);
+ this.groupBox2.Controls.Add(this.AxFeedOverValue);
+ this.groupBox2.Controls.Add(this.AxDir);
+ this.groupBox2.Controls.Add(this.AxFeedActValue);
+ this.groupBox2.Controls.Add(this.label35);
+ this.groupBox2.Controls.Add(this.label9);
+ this.groupBox2.Controls.Add(this.label34);
+ this.groupBox2.Controls.Add(this.AxFeedOver);
+ this.groupBox2.Controls.Add(this.cbAxType);
+ this.groupBox2.Controls.Add(this.label10);
+ this.groupBox2.Controls.Add(this.AxMastId);
+ this.groupBox2.Controls.Add(this.label33);
+ this.groupBox2.Controls.Add(this.AxFeedAct);
+ this.groupBox2.Controls.Add(this.AxIsMaster);
+ this.groupBox2.Controls.Add(this.AxMainProc);
+ this.groupBox2.Controls.Add(this.label32);
+ this.groupBox2.Controls.Add(this.cbAxNum);
+ this.groupBox2.Controls.Add(this.label31);
+ this.groupBox2.Controls.Add(this.AxPositionValue);
+ this.groupBox2.Controls.Add(this.AxLoadValue);
+ this.groupBox2.Controls.Add(this.label5);
+ this.groupBox2.Controls.Add(this.AxPosition);
+ this.groupBox2.Controls.Add(this.label4);
+ 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);
+ this.groupBox2.Name = "groupBox2";
+ 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;
+ this.groupBox2.Text = "Axis";
+ //
+ // AxAccelAct
+ //
+ this.AxAccelAct.Location = new System.Drawing.Point(107, 226);
+ 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;
+ //
+ // label37
+ //
+ this.label37.AutoSize = true;
+ this.label37.Location = new System.Drawing.Point(13, 230);
+ this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(66, 17);
+ this.label37.TabIndex = 42;
+ this.label37.Text = "Accel Act";
+ //
+ // AxBatt
+ //
+ this.AxBatt.Location = new System.Drawing.Point(405, 226);
+ 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;
+ //
+ // label36
+ //
+ this.label36.AutoSize = true;
+ this.label36.Location = new System.Drawing.Point(349, 230);
+ this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label36.Name = "label36";
+ this.label36.Size = new System.Drawing.Size(53, 17);
+ this.label36.TabIndex = 40;
+ this.label36.Text = "Battery";
+ //
+ // AxAccTime
+ //
+ this.AxAccTime.Location = new System.Drawing.Point(263, 226);
+ 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;
+ //
+ // label11
+ //
+ this.label11.AutoSize = true;
+ this.label11.Location = new System.Drawing.Point(169, 230);
+ this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(85, 17);
+ this.label11.TabIndex = 38;
+ this.label11.Text = "Accum Time";
+ //
+ // AxDir
+ //
+ this.AxDir.Location = new System.Drawing.Point(353, 82);
+ 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;
+ this.AxDir.Text = "1";
+ //
+ // label35
+ //
+ this.label35.AutoSize = true;
+ this.label35.Location = new System.Drawing.Point(291, 87);
+ this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(64, 17);
+ this.label35.TabIndex = 36;
+ this.label35.Text = "Direction";
+ //
+ // label34
+ //
+ this.label34.AutoSize = true;
+ this.label34.Location = new System.Drawing.Point(16, 89);
+ this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label34.Name = "label34";
+ this.label34.Size = new System.Drawing.Size(69, 17);
+ this.label34.TabIndex = 35;
+ this.label34.Text = "Axis Type";
+ //
+ // cbAxType
+ //
+ this.cbAxType.FormattingEnabled = true;
+ this.cbAxType.Items.AddRange(new object[] {
"LINEAR",
"ROTARY"});
- this.cbAxType.Location = new System.Drawing.Point(108, 85);
- 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;
- //
- // AxMastId
- //
- this.AxMastId.Location = new System.Drawing.Point(380, 50);
- 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;
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(317, 55);
- this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(55, 17);
- this.label33.TabIndex = 32;
- this.label33.Text = "Mast ID";
- //
- // AxIsMaster
- //
- this.AxIsMaster.AutoSize = true;
- this.AxIsMaster.Location = new System.Drawing.Point(237, 54);
- 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;
- this.AxIsMaster.Text = "Master";
- this.AxIsMaster.UseVisualStyleBackColor = true;
- //
- // AxMainProc
- //
- this.AxMainProc.Location = new System.Drawing.Point(108, 50);
- 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;
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(15, 54);
- this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(71, 17);
- this.label32.TabIndex = 29;
- this.label32.Text = "Main Proc";
- //
- // cbAxNum
- //
- 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);
- this.cbAxNum.Name = "cbAxNum";
- this.cbAxNum.Size = new System.Drawing.Size(160, 24);
- this.cbAxNum.TabIndex = 28;
- this.cbAxNum.ValueMember = "Value";
- this.cbAxNum.SelectedIndexChanged += new System.EventHandler(this.cbAxNum_SelectedIndexChanged);
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(16, 23);
- this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(66, 17);
- this.label31.TabIndex = 27;
- this.label31.Text = "Axis Num";
- //
- // AxPositionValue
- //
- this.AxPositionValue.Location = new System.Drawing.Point(353, 149);
- 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;
- //
- // AxLoadValue
- //
- this.AxLoadValue.Location = new System.Drawing.Point(353, 123);
- 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;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(16, 153);
- this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(58, 17);
- this.label5.TabIndex = 24;
- this.label5.Text = "Position";
- //
- // AxPosition
- //
- this.AxPosition.Location = new System.Drawing.Point(108, 149);
- this.AxPosition.Name = "AxPosition";
- this.AxPosition.Size = new System.Drawing.Size(224, 18);
- this.AxPosition.TabIndex = 23;
- this.AxPosition.Scroll += new System.Windows.Forms.ScrollEventHandler(this.xPosition_Scroll);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(16, 127);
- this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(40, 17);
- this.label4.TabIndex = 22;
- this.label4.Text = "Load";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(116, 117);
- this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(0, 17);
- this.label3.TabIndex = 21;
- //
- // AxLoad
- //
- this.AxLoad.Location = new System.Drawing.Point(108, 123);
- this.AxLoad.Name = "AxLoad";
- this.AxLoad.Size = new System.Drawing.Size(224, 18);
- this.AxLoad.TabIndex = 20;
- this.AxLoad.Scroll += new System.Windows.Forms.ScrollEventHandler(this.xLoad_Scroll);
- //
- // program
- //
- this.program.Location = new System.Drawing.Point(107, 23);
- 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;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(9, 27);
- this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(93, 17);
- this.label2.TabIndex = 38;
- this.label2.Text = "Curr Program";
- //
- // groupBox9
- //
- this.groupBox9.Controls.Add(this.txtPzKo);
- this.groupBox9.Controls.Add(this.label25);
- this.groupBox9.Controls.Add(this.txtPzOk);
- this.groupBox9.Controls.Add(this.label23);
- this.groupBox9.Controls.Add(this.txtPzTot);
- this.groupBox9.Controls.Add(this.label21);
- this.groupBox9.Controls.Add(this.OPERATOR_ID);
- this.groupBox9.Controls.Add(this.label19);
- this.groupBox9.Controls.Add(this.PROG_ROW_NUM);
- this.groupBox9.Controls.Add(this.label17);
- this.groupBox9.Controls.Add(this.program);
- this.groupBox9.Controls.Add(this.label2);
- this.groupBox9.Controls.Add(this.partID);
- this.groupBox9.Controls.Add(this.label13);
- 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);
- this.groupBox9.Name = "groupBox9";
- 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;
- this.groupBox9.Text = "Produzione";
- //
- // txtPzKo
- //
- this.txtPzKo.Location = new System.Drawing.Point(417, 121);
- 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;
- this.txtPzKo.TextChanged += new System.EventHandler(this.pzKo_TextChanged);
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(359, 124);
- this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(48, 17);
- this.label25.TabIndex = 58;
- this.label25.Text = "Pz KO";
- //
- // txtPzOk
- //
- this.txtPzOk.Enabled = false;
- this.txtPzOk.Location = new System.Drawing.Point(268, 121);
- 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;
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(209, 124);
- this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(48, 17);
- this.label23.TabIndex = 56;
- this.label23.Text = "Pz OK";
- //
- // txtPzTot
- //
- this.txtPzTot.Enabled = false;
- this.txtPzTot.Location = new System.Drawing.Point(107, 121);
- 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;
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(44, 124);
- this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(49, 17);
- this.label21.TabIndex = 54;
- this.label21.Text = "Pz Tot";
- //
- // OPERATOR_ID
- //
- this.OPERATOR_ID.Location = new System.Drawing.Point(364, 55);
- 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;
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(296, 59);
- this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(58, 17);
- this.label19.TabIndex = 52;
- this.label19.Text = "ID oper.";
- //
- // 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);
- 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;
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(337, 27);
- this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(68, 17);
- this.label17.TabIndex = 50;
- this.label17.Text = "Row Num";
- //
- // groupBox11
- //
- this.groupBox11.Controls.Add(this.STATUS_STRB_DW3);
- this.groupBox11.Controls.Add(this.label49);
- this.groupBox11.Controls.Add(this.STATUS_STRB_DW2);
- this.groupBox11.Controls.Add(this.label47);
- this.groupBox11.Controls.Add(this.STATUS_STRB_DW1);
- 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(11, 71);
- this.groupBox11.Margin = new System.Windows.Forms.Padding(4);
- this.groupBox11.Name = "groupBox11";
- 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;
- this.groupBox11.Text = "Strobes PLC --> ADP";
- //
- // STATUS_STRB_DW3
- //
- 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);
- 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;
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Location = new System.Drawing.Point(20, 154);
- this.label49.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(84, 17);
- this.label49.TabIndex = 58;
- this.label49.Text = "STRB_DW3";
- //
- // STATUS_STRB_DW2
- //
- 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);
- 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;
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Location = new System.Drawing.Point(20, 111);
- this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(84, 17);
- this.label47.TabIndex = 56;
- this.label47.Text = "STRB_DW2";
- //
- // STATUS_STRB_DW1
- //
- 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);
- 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;
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(20, 68);
- this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(84, 17);
- this.label18.TabIndex = 54;
- this.label18.Text = "STRB_DW1";
- //
- // STATUS_STRB_DW0
- //
- 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);
- 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;
- //
- // lblPLC_ADP
- //
- this.lblPLC_ADP.AutoSize = true;
- this.lblPLC_ADP.Location = new System.Drawing.Point(20, 27);
- this.lblPLC_ADP.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblPLC_ADP.Name = "lblPLC_ADP";
- this.lblPLC_ADP.Size = new System.Drawing.Size(84, 17);
- this.lblPLC_ADP.TabIndex = 52;
- this.lblPLC_ADP.Text = "STRB_DW0";
- //
- // statusStrip1
- //
- this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.cbAxType.Location = new System.Drawing.Point(108, 85);
+ 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;
+ //
+ // AxMastId
+ //
+ this.AxMastId.Location = new System.Drawing.Point(380, 50);
+ 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;
+ //
+ // label33
+ //
+ this.label33.AutoSize = true;
+ this.label33.Location = new System.Drawing.Point(317, 55);
+ this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label33.Name = "label33";
+ this.label33.Size = new System.Drawing.Size(55, 17);
+ this.label33.TabIndex = 32;
+ this.label33.Text = "Mast ID";
+ //
+ // AxIsMaster
+ //
+ this.AxIsMaster.AutoSize = true;
+ this.AxIsMaster.Location = new System.Drawing.Point(237, 54);
+ 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;
+ this.AxIsMaster.Text = "Master";
+ this.AxIsMaster.UseVisualStyleBackColor = true;
+ //
+ // AxMainProc
+ //
+ this.AxMainProc.Location = new System.Drawing.Point(108, 50);
+ 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;
+ //
+ // label32
+ //
+ this.label32.AutoSize = true;
+ this.label32.Location = new System.Drawing.Point(15, 54);
+ this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label32.Name = "label32";
+ this.label32.Size = new System.Drawing.Size(71, 17);
+ this.label32.TabIndex = 29;
+ this.label32.Text = "Main Proc";
+ //
+ // cbAxNum
+ //
+ 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);
+ this.cbAxNum.Name = "cbAxNum";
+ this.cbAxNum.Size = new System.Drawing.Size(160, 24);
+ this.cbAxNum.TabIndex = 28;
+ this.cbAxNum.ValueMember = "Value";
+ this.cbAxNum.SelectedIndexChanged += new System.EventHandler(this.cbAxNum_SelectedIndexChanged);
+ //
+ // label31
+ //
+ this.label31.AutoSize = true;
+ this.label31.Location = new System.Drawing.Point(16, 23);
+ this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label31.Name = "label31";
+ this.label31.Size = new System.Drawing.Size(66, 17);
+ this.label31.TabIndex = 27;
+ this.label31.Text = "Axis Num";
+ //
+ // AxPositionValue
+ //
+ this.AxPositionValue.Location = new System.Drawing.Point(353, 149);
+ 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;
+ //
+ // AxLoadValue
+ //
+ this.AxLoadValue.Location = new System.Drawing.Point(353, 123);
+ 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;
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Location = new System.Drawing.Point(16, 153);
+ this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(58, 17);
+ this.label5.TabIndex = 24;
+ this.label5.Text = "Position";
+ //
+ // AxPosition
+ //
+ this.AxPosition.Location = new System.Drawing.Point(108, 149);
+ this.AxPosition.Name = "AxPosition";
+ this.AxPosition.Size = new System.Drawing.Size(224, 18);
+ this.AxPosition.TabIndex = 23;
+ this.AxPosition.Scroll += new System.Windows.Forms.ScrollEventHandler(this.xPosition_Scroll);
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Location = new System.Drawing.Point(16, 127);
+ this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(40, 17);
+ this.label4.TabIndex = 22;
+ this.label4.Text = "Load";
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(116, 117);
+ this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(0, 17);
+ this.label3.TabIndex = 21;
+ //
+ // AxLoad
+ //
+ this.AxLoad.Location = new System.Drawing.Point(108, 123);
+ this.AxLoad.Name = "AxLoad";
+ this.AxLoad.Size = new System.Drawing.Size(224, 18);
+ this.AxLoad.TabIndex = 20;
+ this.AxLoad.Scroll += new System.Windows.Forms.ScrollEventHandler(this.xLoad_Scroll);
+ //
+ // program
+ //
+ this.program.Location = new System.Drawing.Point(107, 23);
+ 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;
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(9, 27);
+ this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(93, 17);
+ this.label2.TabIndex = 38;
+ this.label2.Text = "Curr Program";
+ //
+ // groupBox9
+ //
+ this.groupBox9.Controls.Add(this.txtPzKo);
+ this.groupBox9.Controls.Add(this.label25);
+ this.groupBox9.Controls.Add(this.txtPzOk);
+ this.groupBox9.Controls.Add(this.label23);
+ this.groupBox9.Controls.Add(this.txtPzTot);
+ this.groupBox9.Controls.Add(this.label21);
+ this.groupBox9.Controls.Add(this.OPERATOR_ID);
+ this.groupBox9.Controls.Add(this.label19);
+ this.groupBox9.Controls.Add(this.PROG_ROW_NUM);
+ this.groupBox9.Controls.Add(this.label17);
+ this.groupBox9.Controls.Add(this.program);
+ this.groupBox9.Controls.Add(this.label2);
+ this.groupBox9.Controls.Add(this.partID);
+ this.groupBox9.Controls.Add(this.label13);
+ 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);
+ this.groupBox9.Name = "groupBox9";
+ 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;
+ this.groupBox9.Text = "Produzione";
+ //
+ // txtPzKo
+ //
+ this.txtPzKo.Location = new System.Drawing.Point(417, 121);
+ 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;
+ this.txtPzKo.TextChanged += new System.EventHandler(this.pzKo_TextChanged);
+ //
+ // label25
+ //
+ this.label25.AutoSize = true;
+ this.label25.Location = new System.Drawing.Point(359, 124);
+ this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(48, 17);
+ this.label25.TabIndex = 58;
+ this.label25.Text = "Pz KO";
+ //
+ // txtPzOk
+ //
+ this.txtPzOk.Enabled = false;
+ this.txtPzOk.Location = new System.Drawing.Point(268, 121);
+ 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;
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.Location = new System.Drawing.Point(209, 124);
+ this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(48, 17);
+ this.label23.TabIndex = 56;
+ this.label23.Text = "Pz OK";
+ //
+ // txtPzTot
+ //
+ this.txtPzTot.Enabled = false;
+ this.txtPzTot.Location = new System.Drawing.Point(107, 121);
+ 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;
+ //
+ // label21
+ //
+ this.label21.AutoSize = true;
+ this.label21.Location = new System.Drawing.Point(44, 124);
+ this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(49, 17);
+ this.label21.TabIndex = 54;
+ this.label21.Text = "Pz Tot";
+ //
+ // OPERATOR_ID
+ //
+ this.OPERATOR_ID.Location = new System.Drawing.Point(364, 55);
+ 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;
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Location = new System.Drawing.Point(296, 59);
+ this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(58, 17);
+ this.label19.TabIndex = 52;
+ this.label19.Text = "ID oper.";
+ //
+ // 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);
+ 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;
+ //
+ // label17
+ //
+ this.label17.AutoSize = true;
+ this.label17.Location = new System.Drawing.Point(337, 27);
+ this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(68, 17);
+ this.label17.TabIndex = 50;
+ this.label17.Text = "Row Num";
+ //
+ // groupBox11
+ //
+ this.groupBox11.Controls.Add(this.STATUS_STRB_DW3);
+ this.groupBox11.Controls.Add(this.label49);
+ this.groupBox11.Controls.Add(this.STATUS_STRB_DW2);
+ this.groupBox11.Controls.Add(this.label47);
+ this.groupBox11.Controls.Add(this.STATUS_STRB_DW1);
+ 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(11, 71);
+ this.groupBox11.Margin = new System.Windows.Forms.Padding(4);
+ this.groupBox11.Name = "groupBox11";
+ 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;
+ this.groupBox11.Text = "Strobes PLC --> ADP";
+ //
+ // STATUS_STRB_DW3
+ //
+ 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);
+ 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;
+ //
+ // label49
+ //
+ this.label49.AutoSize = true;
+ this.label49.Location = new System.Drawing.Point(20, 154);
+ this.label49.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label49.Name = "label49";
+ this.label49.Size = new System.Drawing.Size(84, 17);
+ this.label49.TabIndex = 58;
+ this.label49.Text = "STRB_DW3";
+ //
+ // STATUS_STRB_DW2
+ //
+ 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);
+ 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;
+ //
+ // label47
+ //
+ this.label47.AutoSize = true;
+ this.label47.Location = new System.Drawing.Point(20, 111);
+ this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label47.Name = "label47";
+ this.label47.Size = new System.Drawing.Size(84, 17);
+ this.label47.TabIndex = 56;
+ this.label47.Text = "STRB_DW2";
+ //
+ // STATUS_STRB_DW1
+ //
+ 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);
+ 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;
+ //
+ // label18
+ //
+ this.label18.AutoSize = true;
+ this.label18.Location = new System.Drawing.Point(20, 68);
+ this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(84, 17);
+ this.label18.TabIndex = 54;
+ this.label18.Text = "STRB_DW1";
+ //
+ // STATUS_STRB_DW0
+ //
+ 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);
+ 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;
+ //
+ // lblPLC_ADP
+ //
+ this.lblPLC_ADP.AutoSize = true;
+ this.lblPLC_ADP.Location = new System.Drawing.Point(20, 27);
+ this.lblPLC_ADP.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblPLC_ADP.Name = "lblPLC_ADP";
+ this.lblPLC_ADP.Size = new System.Drawing.Size(84, 17);
+ this.lblPLC_ADP.TabIndex = 52;
+ this.lblPLC_ADP.Text = "STRB_DW0";
+ //
+ // statusStrip1
+ //
+ this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lblApp,
this.lblVers,
this.MainProgrBar,
this.lblComStats,
this.lblStatus});
- 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);
- this.statusStrip1.TabIndex = 59;
- this.statusStrip1.Text = "statusStrip1";
- //
- // lblApp
- //
- this.lblApp.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
- this.lblApp.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblApp.Name = "lblApp";
- this.lblApp.Size = new System.Drawing.Size(21, 24);
- this.lblApp.Text = "...";
- //
- // lblVers
- //
- this.lblVers.Font = new System.Drawing.Font("Segoe UI", 8F);
- this.lblVers.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
- this.lblVers.Name = "lblVers";
- this.lblVers.Size = new System.Drawing.Size(18, 24);
- this.lblVers.Text = "...";
- //
- // MainProgrBar
- //
- this.MainProgrBar.BackColor = System.Drawing.SystemColors.Control;
- this.MainProgrBar.Name = "MainProgrBar";
- this.MainProgrBar.Size = new System.Drawing.Size(133, 23);
- this.MainProgrBar.Step = 1;
- //
- // lblComStats
- //
- this.lblComStats.Name = "lblComStats";
- this.lblComStats.Size = new System.Drawing.Size(39, 24);
- this.lblComStats.Text = "stats";
- //
- // lblStatus
- //
- this.lblStatus.Name = "lblStatus";
- this.lblStatus.Size = new System.Drawing.Size(27, 24);
- this.lblStatus.Text = "---";
- //
- // groupBox13
- //
- this.groupBox13.Controls.Add(this.cbPathSel);
- this.groupBox13.Controls.Add(this.label38);
- this.groupBox13.Controls.Add(this.label29);
- this.groupBox13.Controls.Add(this.PosAct);
- this.groupBox13.Controls.Add(this.txtPathSpeedOver);
- this.groupBox13.Controls.Add(this.label28);
- this.groupBox13.Controls.Add(this.hsPathSpeedOver);
- this.groupBox13.Controls.Add(this.txtPathFeedOver);
- this.groupBox13.Controls.Add(this.label27);
- this.groupBox13.Controls.Add(this.hsPathFeedOver);
- this.groupBox13.Controls.Add(this.txtPathFeed);
- 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);
- this.groupBox13.Name = "groupBox13";
- 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;
- this.groupBox13.Text = "PATH";
- //
- // cbPathSel
- //
- 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);
- this.cbPathSel.Name = "cbPathSel";
- this.cbPathSel.Size = new System.Drawing.Size(160, 24);
- this.cbPathSel.TabIndex = 63;
- this.cbPathSel.ValueMember = "Value";
- this.cbPathSel.SelectedIndexChanged += new System.EventHandler(this.cbPathSel_SelectedIndexChanged);
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(15, 25);
- this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(70, 17);
- this.label38.TabIndex = 62;
- this.label38.Text = "Path Num";
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(16, 164);
- this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(66, 17);
- this.label29.TabIndex = 33;
- this.label29.Text = "Posiz Act";
- //
- // txtPathSpeedOver
- //
- this.txtPathSpeedOver.Location = new System.Drawing.Point(397, 108);
- 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;
- this.txtPathSpeedOver.TextChanged += new System.EventHandler(this.txtPathSpeedOver_TextChanged);
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(13, 112);
- this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(84, 17);
- this.label28.TabIndex = 31;
- this.label28.Text = "Rapid Over.";
- //
- // hsPathSpeedOver
- //
- this.hsPathSpeedOver.Location = new System.Drawing.Point(107, 112);
- this.hsPathSpeedOver.Maximum = 150;
- this.hsPathSpeedOver.Name = "hsPathSpeedOver";
- this.hsPathSpeedOver.Size = new System.Drawing.Size(284, 18);
- this.hsPathSpeedOver.TabIndex = 30;
- this.hsPathSpeedOver.ValueChanged += new System.EventHandler(this.hsPathSpeedOver_ValueChanged);
- //
- // txtPathFeedOver
- //
- this.txtPathFeedOver.Location = new System.Drawing.Point(397, 78);
- 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;
- this.txtPathFeedOver.TextChanged += new System.EventHandler(this.txtPathFeedOver_TextChanged);
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Location = new System.Drawing.Point(13, 81);
- this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(79, 17);
- this.label27.TabIndex = 28;
- this.label27.Text = "Feed Over.";
- //
- // hsPathFeedOver
- //
- this.hsPathFeedOver.Location = new System.Drawing.Point(107, 81);
- this.hsPathFeedOver.Maximum = 150;
- this.hsPathFeedOver.Name = "hsPathFeedOver";
- this.hsPathFeedOver.Size = new System.Drawing.Size(284, 18);
- this.hsPathFeedOver.TabIndex = 27;
- this.hsPathFeedOver.ValueChanged += new System.EventHandler(this.hsPathFeedOver_ValueChanged);
- //
- // txtPathFeed
- //
- this.txtPathFeed.Location = new System.Drawing.Point(397, 46);
- 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;
- this.txtPathFeed.TextChanged += new System.EventHandler(this.txtPathFeed_TextChanged);
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(13, 49);
- this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(65, 17);
- this.label26.TabIndex = 24;
- this.label26.Text = "Feedrate";
- //
- // hsPathFeed
- //
- this.hsPathFeed.Location = new System.Drawing.Point(107, 49);
- this.hsPathFeed.Maximum = 150;
- this.hsPathFeed.Name = "hsPathFeed";
- this.hsPathFeed.Size = new System.Drawing.Size(284, 18);
- this.hsPathFeed.TabIndex = 23;
- this.hsPathFeed.ValueChanged += new System.EventHandler(this.hsPathFeed_ValueChanged);
- //
- // menuStrip1
- //
- this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ 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);
+ this.statusStrip1.TabIndex = 59;
+ this.statusStrip1.Text = "statusStrip1";
+ //
+ // lblApp
+ //
+ this.lblApp.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
+ this.lblApp.ForeColor = System.Drawing.SystemColors.ControlText;
+ this.lblApp.Name = "lblApp";
+ this.lblApp.Size = new System.Drawing.Size(21, 24);
+ this.lblApp.Text = "...";
+ //
+ // lblVers
+ //
+ this.lblVers.Font = new System.Drawing.Font("Segoe UI", 8F);
+ this.lblVers.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
+ this.lblVers.Name = "lblVers";
+ this.lblVers.Size = new System.Drawing.Size(18, 24);
+ this.lblVers.Text = "...";
+ //
+ // MainProgrBar
+ //
+ this.MainProgrBar.BackColor = System.Drawing.SystemColors.Control;
+ this.MainProgrBar.Name = "MainProgrBar";
+ this.MainProgrBar.Size = new System.Drawing.Size(133, 23);
+ this.MainProgrBar.Step = 1;
+ //
+ // lblComStats
+ //
+ this.lblComStats.Name = "lblComStats";
+ this.lblComStats.Size = new System.Drawing.Size(39, 24);
+ this.lblComStats.Text = "stats";
+ //
+ // lblStatus
+ //
+ this.lblStatus.Name = "lblStatus";
+ this.lblStatus.Size = new System.Drawing.Size(27, 24);
+ this.lblStatus.Text = "---";
+ //
+ // groupBox13
+ //
+ this.groupBox13.Controls.Add(this.cbPathSel);
+ this.groupBox13.Controls.Add(this.label38);
+ this.groupBox13.Controls.Add(this.label29);
+ this.groupBox13.Controls.Add(this.PosAct);
+ this.groupBox13.Controls.Add(this.txtPathSpeedOver);
+ this.groupBox13.Controls.Add(this.label28);
+ this.groupBox13.Controls.Add(this.hsPathSpeedOver);
+ this.groupBox13.Controls.Add(this.txtPathFeedOver);
+ this.groupBox13.Controls.Add(this.label27);
+ this.groupBox13.Controls.Add(this.hsPathFeedOver);
+ this.groupBox13.Controls.Add(this.txtPathFeed);
+ 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);
+ this.groupBox13.Name = "groupBox13";
+ 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;
+ this.groupBox13.Text = "PATH";
+ //
+ // cbPathSel
+ //
+ 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);
+ this.cbPathSel.Name = "cbPathSel";
+ this.cbPathSel.Size = new System.Drawing.Size(160, 24);
+ this.cbPathSel.TabIndex = 63;
+ this.cbPathSel.ValueMember = "Value";
+ this.cbPathSel.SelectedIndexChanged += new System.EventHandler(this.cbPathSel_SelectedIndexChanged);
+ //
+ // label38
+ //
+ this.label38.AutoSize = true;
+ this.label38.Location = new System.Drawing.Point(15, 25);
+ this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label38.Name = "label38";
+ this.label38.Size = new System.Drawing.Size(70, 17);
+ this.label38.TabIndex = 62;
+ this.label38.Text = "Path Num";
+ //
+ // label29
+ //
+ this.label29.AutoSize = true;
+ this.label29.Location = new System.Drawing.Point(16, 164);
+ this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label29.Name = "label29";
+ this.label29.Size = new System.Drawing.Size(66, 17);
+ this.label29.TabIndex = 33;
+ this.label29.Text = "Posiz Act";
+ //
+ // txtPathSpeedOver
+ //
+ this.txtPathSpeedOver.Location = new System.Drawing.Point(397, 108);
+ 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;
+ this.txtPathSpeedOver.TextChanged += new System.EventHandler(this.txtPathSpeedOver_TextChanged);
+ //
+ // label28
+ //
+ this.label28.AutoSize = true;
+ this.label28.Location = new System.Drawing.Point(13, 112);
+ this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(84, 17);
+ this.label28.TabIndex = 31;
+ this.label28.Text = "Rapid Over.";
+ //
+ // hsPathSpeedOver
+ //
+ this.hsPathSpeedOver.Location = new System.Drawing.Point(107, 112);
+ this.hsPathSpeedOver.Maximum = 150;
+ this.hsPathSpeedOver.Name = "hsPathSpeedOver";
+ this.hsPathSpeedOver.Size = new System.Drawing.Size(284, 18);
+ this.hsPathSpeedOver.TabIndex = 30;
+ this.hsPathSpeedOver.ValueChanged += new System.EventHandler(this.hsPathSpeedOver_ValueChanged);
+ //
+ // txtPathFeedOver
+ //
+ this.txtPathFeedOver.Location = new System.Drawing.Point(397, 78);
+ 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;
+ this.txtPathFeedOver.TextChanged += new System.EventHandler(this.txtPathFeedOver_TextChanged);
+ //
+ // label27
+ //
+ this.label27.AutoSize = true;
+ this.label27.Location = new System.Drawing.Point(13, 81);
+ this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(79, 17);
+ this.label27.TabIndex = 28;
+ this.label27.Text = "Feed Over.";
+ //
+ // hsPathFeedOver
+ //
+ this.hsPathFeedOver.Location = new System.Drawing.Point(107, 81);
+ this.hsPathFeedOver.Maximum = 150;
+ this.hsPathFeedOver.Name = "hsPathFeedOver";
+ this.hsPathFeedOver.Size = new System.Drawing.Size(284, 18);
+ this.hsPathFeedOver.TabIndex = 27;
+ this.hsPathFeedOver.ValueChanged += new System.EventHandler(this.hsPathFeedOver_ValueChanged);
+ //
+ // txtPathFeed
+ //
+ this.txtPathFeed.Location = new System.Drawing.Point(397, 46);
+ 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;
+ this.txtPathFeed.TextChanged += new System.EventHandler(this.txtPathFeed_TextChanged);
+ //
+ // label26
+ //
+ this.label26.AutoSize = true;
+ this.label26.Location = new System.Drawing.Point(13, 49);
+ this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(65, 17);
+ this.label26.TabIndex = 24;
+ this.label26.Text = "Feedrate";
+ //
+ // hsPathFeed
+ //
+ this.hsPathFeed.Location = new System.Drawing.Point(107, 49);
+ this.hsPathFeed.Maximum = 150;
+ this.hsPathFeed.Name = "hsPathFeed";
+ this.hsPathFeed.Size = new System.Drawing.Size(284, 18);
+ this.hsPathFeed.TabIndex = 23;
+ this.hsPathFeed.ValueChanged += new System.EventHandler(this.hsPathFeed_ValueChanged);
+ //
+ // menuStrip1
+ //
+ this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fILEToolStripMenuItem,
this.sETUPToolStripMenuItem});
- this.menuStrip1.Location = new System.Drawing.Point(0, 0);
- this.menuStrip1.Name = "menuStrip1";
- this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
- this.menuStrip1.Size = new System.Drawing.Size(1047, 28);
- this.menuStrip1.TabIndex = 61;
- this.menuStrip1.Text = "menuStrip1";
- //
- // fILEToolStripMenuItem
- //
- this.fILEToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.menuStrip1.Location = new System.Drawing.Point(0, 0);
+ this.menuStrip1.Name = "menuStrip1";
+ this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
+ this.menuStrip1.Size = new System.Drawing.Size(1047, 28);
+ this.menuStrip1.TabIndex = 61;
+ this.menuStrip1.Text = "menuStrip1";
+ //
+ // fILEToolStripMenuItem
+ //
+ this.fILEToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mLoadAdaptConf});
- this.fILEToolStripMenuItem.Name = "fILEToolStripMenuItem";
- this.fILEToolStripMenuItem.Size = new System.Drawing.Size(47, 24);
- this.fILEToolStripMenuItem.Text = "FILE";
- //
- // mLoadAdaptConf
- //
- this.mLoadAdaptConf.Name = "mLoadAdaptConf";
- this.mLoadAdaptConf.Size = new System.Drawing.Size(232, 26);
- this.mLoadAdaptConf.Text = "LOAD ADAPTER CONF";
- this.mLoadAdaptConf.Click += new System.EventHandler(this.mLoadAdaptConf_Click);
- //
- // sETUPToolStripMenuItem
- //
- this.sETUPToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.fILEToolStripMenuItem.Name = "fILEToolStripMenuItem";
+ this.fILEToolStripMenuItem.Size = new System.Drawing.Size(47, 24);
+ this.fILEToolStripMenuItem.Text = "FILE";
+ //
+ // mLoadAdaptConf
+ //
+ this.mLoadAdaptConf.Name = "mLoadAdaptConf";
+ this.mLoadAdaptConf.Size = new System.Drawing.Size(233, 26);
+ this.mLoadAdaptConf.Text = "LOAD ADAPTER CONF";
+ this.mLoadAdaptConf.Click += new System.EventHandler(this.mLoadAdaptConf_Click);
+ //
+ // sETUPToolStripMenuItem
+ //
+ this.sETUPToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mConfGen});
- this.sETUPToolStripMenuItem.Name = "sETUPToolStripMenuItem";
- this.sETUPToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.S)));
- this.sETUPToolStripMenuItem.Size = new System.Drawing.Size(63, 24);
- this.sETUPToolStripMenuItem.Text = "SETUP";
- //
- // mConfGen
- //
- this.mConfGen.Name = "mConfGen";
- this.mConfGen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.T)));
- this.mConfGen.Size = new System.Drawing.Size(327, 26);
- this.mConfGen.Text = "TEMPLATE CONF GENERATOR";
- this.mConfGen.Click += new System.EventHandler(this.mConfGen_Click);
- //
- // lblCurrAdapt
- //
- this.lblCurrAdapt.Dock = System.Windows.Forms.DockStyle.Top;
- this.lblCurrAdapt.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblCurrAdapt.Location = new System.Drawing.Point(0, 28);
- this.lblCurrAdapt.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblCurrAdapt.Name = "lblCurrAdapt";
- this.lblCurrAdapt.Size = new System.Drawing.Size(1047, 32);
- this.lblCurrAdapt.TabIndex = 64;
- this.lblCurrAdapt.Text = "Adapter loaded: N.A.";
- this.lblCurrAdapt.TextAlign = System.Drawing.ContentAlignment.TopCenter;
- //
- // tabCtrlMain
- //
- this.tabCtrlMain.Controls.Add(this.tpStatus);
- this.tabCtrlMain.Controls.Add(this.tbConf);
- 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);
- this.tabCtrlMain.Name = "tabCtrlMain";
- this.tabCtrlMain.SelectedIndex = 0;
- 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.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);
- this.tpStatus.Name = "tpStatus";
- 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)
+ this.sETUPToolStripMenuItem.Name = "sETUPToolStripMenuItem";
+ this.sETUPToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.S)));
+ this.sETUPToolStripMenuItem.Size = new System.Drawing.Size(63, 24);
+ this.sETUPToolStripMenuItem.Text = "SETUP";
+ //
+ // mConfGen
+ //
+ this.mConfGen.Name = "mConfGen";
+ this.mConfGen.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.T)));
+ this.mConfGen.Size = new System.Drawing.Size(336, 26);
+ this.mConfGen.Text = "TEMPLATE CONF GENERATOR";
+ this.mConfGen.Click += new System.EventHandler(this.mConfGen_Click);
+ //
+ // lblCurrAdapt
+ //
+ this.lblCurrAdapt.Dock = System.Windows.Forms.DockStyle.Top;
+ this.lblCurrAdapt.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.lblCurrAdapt.Location = new System.Drawing.Point(0, 28);
+ this.lblCurrAdapt.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblCurrAdapt.Name = "lblCurrAdapt";
+ this.lblCurrAdapt.Size = new System.Drawing.Size(1047, 32);
+ this.lblCurrAdapt.TabIndex = 64;
+ this.lblCurrAdapt.Text = "Adapter loaded: N.A.";
+ this.lblCurrAdapt.TextAlign = System.Drawing.ContentAlignment.TopCenter;
+ //
+ // tabCtrlMain
+ //
+ this.tabCtrlMain.Controls.Add(this.tpStatus);
+ this.tabCtrlMain.Controls.Add(this.tbConf);
+ 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);
+ this.tabCtrlMain.Name = "tabCtrlMain";
+ this.tabCtrlMain.SelectedIndex = 0;
+ 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.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);
+ this.tpStatus.Name = "tpStatus";
+ 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.lblOutMessage3);
- this.gbMonitor.Controls.Add(this.lblOutMessage2);
- this.gbMonitor.Controls.Add(this.lblOutMessage);
- 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";
- //
- // lblOutMessage3
- //
- this.lblOutMessage3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.lblOutMessage3.AutoSize = true;
- this.lblOutMessage3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lblOutMessage3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
- this.lblOutMessage3.Location = new System.Drawing.Point(581, 15);
- this.lblOutMessage3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblOutMessage3.Name = "lblOutMessage3";
- this.lblOutMessage3.Size = new System.Drawing.Size(16, 15);
- this.lblOutMessage3.TabIndex = 62;
- this.lblOutMessage3.Text = "...";
- //
- // 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.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.TabIndex = 60;
- this.lblOutMessage.Text = "...";
- //
- // lblOutMessage2
- //
- this.lblOutMessage2.Anchor = System.Windows.Forms.AnchorStyles.Top;
- this.lblOutMessage2.AutoSize = true;
- this.lblOutMessage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 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(295, 15);
- this.lblOutMessage2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblOutMessage2.Name = "lblOutMessage2";
- this.lblOutMessage2.Size = new System.Drawing.Size(16, 15);
- this.lblOutMessage2.TabIndex = 61;
- this.lblOutMessage2.Text = "...";
- //
- // groupBox6
- //
- this.groupBox6.Controls.Add(this.STATUS_ACK_DW3);
- this.groupBox6.Controls.Add(this.label52);
- this.groupBox6.Controls.Add(this.STATUS_ACK_DW2);
- this.groupBox6.Controls.Add(this.label51);
- this.groupBox6.Controls.Add(this.STATUS_ACK_DW1);
- 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(523, 71);
- this.groupBox6.Margin = new System.Windows.Forms.Padding(4);
- this.groupBox6.Name = "groupBox6";
- 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;
- this.groupBox6.Text = "ACK ADP --> PLC";
- //
- // STATUS_ACK_DW3
- //
- 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);
- 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;
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(20, 155);
- this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(74, 17);
- this.label52.TabIndex = 58;
- this.label52.Text = "ACK_DW3";
- //
- // STATUS_ACK_DW2
- //
- 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);
- 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;
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Location = new System.Drawing.Point(20, 112);
- this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(74, 17);
- this.label51.TabIndex = 56;
- this.label51.Text = "ACK_DW2";
- //
- // STATUS_ACK_DW1
- //
- 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);
- 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;
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(20, 69);
- this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(74, 17);
- this.label50.TabIndex = 54;
- this.label50.Text = "ACK_DW1";
- //
- // STATUS_ACK_DW0
- //
- 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);
- 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;
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(20, 23);
- this.label48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(74, 17);
- this.label48.TabIndex = 52;
- this.label48.Text = "ACK_DW0";
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.dump);
- this.groupBox1.Controls.Add(this.stop);
- this.groupBox1.Controls.Add(this.start);
- 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);
- this.groupBox1.Name = "groupBox1";
- 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;
- this.groupBox1.Text = "Server Info";
- //
- // dump
- //
- this.dump.Location = new System.Drawing.Point(397, 18);
- 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;
- this.dump.Text = "Show Dump";
- this.dump.UseVisualStyleBackColor = true;
- this.dump.Click += new System.EventHandler(this.dump_Click);
- //
- // stop
- //
- this.stop.Location = new System.Drawing.Point(269, 18);
- 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;
- this.stop.Text = "Stop";
- this.stop.UseVisualStyleBackColor = true;
- this.stop.Click += new System.EventHandler(this.stop_Click);
- //
- // start
- //
- this.start.Location = new System.Drawing.Point(161, 18);
- 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;
- this.start.Text = "Start";
- this.start.UseVisualStyleBackColor = true;
- this.start.Click += new System.EventHandler(this.start_Click);
- //
- // port
- //
- this.port.Location = new System.Drawing.Point(67, 21);
- 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;
- this.port.Text = "7878";
- this.port.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(24, 25);
- this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(34, 17);
- this.label1.TabIndex = 0;
- this.label1.Text = "Port";
- //
- // tbConf
- //
- 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);
- this.tbConf.Name = "tbConf";
- 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";
- //
- // wbXmlConf
- //
- 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);
- this.wbXmlConf.MinimumSize = new System.Drawing.Size(27, 25);
- this.wbXmlConf.Name = "wbXmlConf";
- this.wbXmlConf.Size = new System.Drawing.Size(1031, 572);
- this.wbXmlConf.TabIndex = 0;
- //
- // tpSIM
- //
- this.tpSIM.BackColor = System.Drawing.Color.LightGray;
- this.tpSIM.Controls.Add(this.groupBox5);
- this.tpSIM.Controls.Add(this.Execution);
- this.tpSIM.Controls.Add(this.mode);
- this.tpSIM.Controls.Add(this.groupBox13);
- this.tpSIM.Controls.Add(this.groupBox7);
- this.tpSIM.Controls.Add(this.groupBox10);
- this.tpSIM.Controls.Add(this.groupBox3);
- this.tpSIM.Controls.Add(this.groupBox8);
- this.tpSIM.Controls.Add(this.groupBox4);
- this.tpSIM.Controls.Add(this.groupBox9);
- 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);
- this.tpSIM.Name = "tpSIM";
- this.tpSIM.Size = new System.Drawing.Size(1039, 580);
- this.tpSIM.TabIndex = 2;
- this.tpSIM.Text = "SIMULATION";
- //
- // groupBox5
- //
- this.groupBox5.Controls.Add(this.uoSpeedVal);
- this.groupBox5.Controls.Add(this.uoLoadVal);
- this.groupBox5.Controls.Add(this.label45);
- this.groupBox5.Controls.Add(this.uoSpeed);
- this.groupBox5.Controls.Add(this.label46);
- this.groupBox5.Controls.Add(this.uoLoad);
- this.groupBox5.Controls.Add(this.uoVitaRes);
- this.groupBox5.Controls.Add(this.label43);
- this.groupBox5.Controls.Add(this.uoAccTime);
- this.groupBox5.Controls.Add(this.label44);
- this.groupBox5.Controls.Add(this.uoToolId);
- this.groupBox5.Controls.Add(this.label40);
- this.groupBox5.Controls.Add(this.uoStatus);
- this.groupBox5.Controls.Add(this.label41);
- this.groupBox5.Controls.Add(this.uoNumCU);
- this.groupBox5.Controls.Add(this.label42);
- 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);
- this.groupBox5.Name = "groupBox5";
- 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;
- this.groupBox5.Text = "Unita Operatrice / Mandrino";
- //
- // uoSpeedVal
- //
- this.uoSpeedVal.Location = new System.Drawing.Point(343, 146);
- 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;
- //
- // uoLoadVal
- //
- this.uoLoadVal.Location = new System.Drawing.Point(343, 121);
- 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;
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Location = new System.Drawing.Point(5, 150);
- this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(49, 17);
- this.label45.TabIndex = 79;
- this.label45.Text = "Speed";
- //
- // uoSpeed
- //
- this.uoSpeed.Location = new System.Drawing.Point(97, 146);
- this.uoSpeed.Name = "uoSpeed";
- this.uoSpeed.Size = new System.Drawing.Size(224, 18);
- this.uoSpeed.TabIndex = 78;
- this.uoSpeed.Scroll += new System.Windows.Forms.ScrollEventHandler(this.uoSpeed_Scroll);
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Location = new System.Drawing.Point(5, 124);
- this.label46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(40, 17);
- this.label46.TabIndex = 77;
- this.label46.Text = "Load";
- //
- // uoLoad
- //
- this.uoLoad.Location = new System.Drawing.Point(97, 121);
- this.uoLoad.Name = "uoLoad";
- this.uoLoad.Size = new System.Drawing.Size(224, 18);
- this.uoLoad.TabIndex = 76;
- this.uoLoad.Scroll += new System.Windows.Forms.ScrollEventHandler(this.uoLoad_Scroll);
- //
- // uoVitaRes
- //
- this.uoVitaRes.Location = new System.Drawing.Point(97, 89);
- 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;
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Location = new System.Drawing.Point(8, 92);
- this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(57, 17);
- this.label43.TabIndex = 74;
- this.label43.Text = "VitaRes";
- //
- // uoAccTime
- //
- this.uoAccTime.Location = new System.Drawing.Point(253, 89);
- 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;
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Location = new System.Drawing.Point(160, 92);
- this.label44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(66, 17);
- this.label44.TabIndex = 72;
- this.label44.Text = "Acc Time";
- //
- // uoToolId
- //
- this.uoToolId.Location = new System.Drawing.Point(97, 57);
- 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;
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(8, 60);
- this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(53, 17);
- this.label40.TabIndex = 70;
- this.label40.Text = "Tool ID";
- //
- // uoStatus
- //
- this.uoStatus.Location = new System.Drawing.Point(396, 57);
- 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;
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Location = new System.Drawing.Point(340, 60);
- this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(48, 17);
- this.label41.TabIndex = 68;
- this.label41.Text = "Status";
- //
- // uoNumCU
- //
- this.uoNumCU.Location = new System.Drawing.Point(253, 57);
- 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;
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(160, 60);
- this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(56, 17);
- this.label42.TabIndex = 66;
- this.label42.Text = "NumCU";
- //
- // cbUnOpSel
- //
- 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);
- this.cbUnOpSel.Name = "cbUnOpSel";
- this.cbUnOpSel.Size = new System.Drawing.Size(160, 24);
- this.cbUnOpSel.TabIndex = 65;
- this.cbUnOpSel.ValueMember = "Value";
- this.cbUnOpSel.SelectedIndexChanged += new System.EventHandler(this.cbUnOpSel_SelectedIndexChanged);
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Location = new System.Drawing.Point(5, 28);
- this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(78, 17);
- this.label39.TabIndex = 64;
- this.label39.Text = "Num UnOp";
- //
- // Execution
- //
- this.Execution.Controls.Add(this.ready);
- this.Execution.Controls.Add(this.feedhold);
- 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);
- this.Execution.Name = "Execution";
- 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;
- this.Execution.Text = "Execution";
- //
- // ready
- //
- 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);
- this.ready.Name = "ready";
- this.ready.Size = new System.Drawing.Size(70, 21);
- this.ready.TabIndex = 9;
- this.ready.TabStop = true;
- this.ready.Text = "Ready";
- this.ready.UseVisualStyleBackColor = true;
- //
- // feedhold
- //
- this.feedhold.AutoSize = true;
- this.feedhold.Location = new System.Drawing.Point(337, 20);
- 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;
- this.feedhold.Text = "Feed Hold";
- this.feedhold.UseVisualStyleBackColor = true;
- //
- // stopped
- //
- this.stopped.AutoSize = true;
- this.stopped.Location = new System.Drawing.Point(240, 20);
- 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;
- this.stopped.Text = "Stopped";
- this.stopped.UseVisualStyleBackColor = true;
- //
- // running
- //
- this.running.AutoSize = true;
- this.running.Location = new System.Drawing.Point(48, 20);
- 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;
- this.running.Text = "Running";
- this.running.UseVisualStyleBackColor = true;
- //
- // mode
- //
- this.mode.Controls.Add(this.edit);
- this.mode.Controls.Add(this.mdi);
- 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);
- this.mode.Name = "mode";
- 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;
- this.mode.Text = "Mode";
- //
- // edit
- //
- this.edit.AutoSize = true;
- this.edit.Location = new System.Drawing.Point(399, 20);
- 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;
- this.edit.Text = "Edit";
- this.edit.UseVisualStyleBackColor = true;
- //
- // mdi
- //
- this.mdi.AutoSize = true;
- this.mdi.Location = new System.Drawing.Point(240, 18);
- 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;
- this.mdi.Text = "Manual Data Input";
- this.mdi.UseVisualStyleBackColor = true;
- //
- // manual
- //
- 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);
- this.manual.Name = "manual";
- this.manual.Size = new System.Drawing.Size(75, 21);
- this.manual.TabIndex = 7;
- this.manual.TabStop = true;
- this.manual.Text = "Manual";
- this.manual.UseVisualStyleBackColor = true;
- //
- // automatic
- //
- this.automatic.AutoSize = true;
- this.automatic.Location = new System.Drawing.Point(48, 20);
- 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;
- this.automatic.Text = "Automatic";
- this.automatic.UseVisualStyleBackColor = true;
- //
- // groupBox7
- //
- this.groupBox7.Controls.Add(this.D1_UUID);
- this.groupBox7.Controls.Add(this.D1_ID);
- this.groupBox7.Controls.Add(this.D1_NAME);
- this.groupBox7.Controls.Add(this.lblAT);
- this.groupBox7.Controls.Add(this.txtAccTime);
- this.groupBox7.Controls.Add(this.label30);
- this.groupBox7.Controls.Add(this.txtPower);
- this.groupBox7.Controls.Add(this.label16);
- 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);
- this.groupBox7.Name = "groupBox7";
- 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;
- this.groupBox7.Text = "Macchina";
- //
- // D1_UUID
- //
- this.D1_UUID.AutoSize = true;
- this.D1_UUID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.D1_UUID.Location = new System.Drawing.Point(311, 66);
- this.D1_UUID.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.D1_UUID.Name = "D1_UUID";
- this.D1_UUID.Size = new System.Drawing.Size(23, 17);
- this.D1_UUID.TabIndex = 66;
- this.D1_UUID.Text = "...";
- //
- // D1_ID
- //
- this.D1_ID.AutoSize = true;
- this.D1_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.D1_ID.Location = new System.Drawing.Point(72, 65);
- this.D1_ID.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.D1_ID.Name = "D1_ID";
- this.D1_ID.Size = new System.Drawing.Size(23, 17);
- this.D1_ID.TabIndex = 65;
- this.D1_ID.Text = "...";
- //
- // D1_NAME
- //
- this.D1_NAME.AutoSize = true;
- this.D1_NAME.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.D1_NAME.Location = new System.Drawing.Point(72, 25);
- this.D1_NAME.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.D1_NAME.Name = "D1_NAME";
- this.D1_NAME.Size = new System.Drawing.Size(23, 17);
- this.D1_NAME.TabIndex = 64;
- this.D1_NAME.Text = "...";
- //
- // lblAT
- //
- this.lblAT.AutoSize = true;
- this.lblAT.Location = new System.Drawing.Point(252, 25);
- this.lblAT.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblAT.Name = "lblAT";
- this.lblAT.Size = new System.Drawing.Size(53, 17);
- this.lblAT.TabIndex = 63;
- this.lblAT.Text = "AccMin";
- //
- // txtAccTime
- //
- this.txtAccTime.Location = new System.Drawing.Point(312, 21);
- 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;
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Location = new System.Drawing.Point(384, 25);
- this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(46, 17);
- this.label30.TabIndex = 61;
- this.label30.Text = "power";
- //
- // txtPower
- //
- this.txtPower.Location = new System.Drawing.Point(433, 21);
- 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;
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(257, 65);
- this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(41, 17);
- this.label16.TabIndex = 59;
- this.label16.Text = "UUID";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(13, 65);
- this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(21, 17);
- this.label15.TabIndex = 57;
- this.label15.Text = "ID";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(13, 25);
- this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(45, 17);
- this.label14.TabIndex = 54;
- this.label14.Text = "Nome";
- //
- // groupBox10
- //
- this.groupBox10.Controls.Add(this.enableDataSim);
- this.groupBox10.Location = new System.Drawing.Point(273, 4);
- this.groupBox10.Margin = new System.Windows.Forms.Padding(4);
- this.groupBox10.Name = "groupBox10";
- 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;
- this.groupBox10.Text = "Simulazione";
- //
- // enableDataSim
- //
- this.enableDataSim.AutoSize = true;
- this.enableDataSim.Location = new System.Drawing.Point(149, 11);
- 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);
- this.enableDataSim.TabIndex = 55;
- this.enableDataSim.Text = "Enable";
- this.enableDataSim.UseVisualStyleBackColor = true;
- //
- // groupBox8
- //
- this.groupBox8.Controls.Add(this.estop);
- this.groupBox8.Location = new System.Drawing.Point(4, 4);
- this.groupBox8.Margin = new System.Windows.Forms.Padding(4);
- this.groupBox8.Name = "groupBox8";
- 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;
- this.groupBox8.Text = "Sicurezze";
- //
- // estop
- //
- this.estop.AutoSize = true;
- this.estop.Location = new System.Drawing.Point(79, 11);
- 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);
- this.estop.TabIndex = 55;
- this.estop.Text = "Emergency Stop";
- this.estop.UseVisualStyleBackColor = true;
- //
- // groupBox12
- //
- this.groupBox12.Controls.Add(this.lblCodaT);
- this.groupBox12.Controls.Add(this.addCodT);
- this.groupBox12.Controls.Add(this.label24);
- this.groupBox12.Controls.Add(this.lblCodaS);
- this.groupBox12.Controls.Add(this.addCodS);
- this.groupBox12.Controls.Add(this.label22);
- this.groupBox12.Controls.Add(this.lblCodaM);
- 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);
- this.groupBox12.Name = "groupBox12";
- 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;
- this.groupBox12.Text = "Codici M/S/T";
- //
- // lblCodaT
- //
- this.lblCodaT.AutoSize = true;
- this.lblCodaT.Location = new System.Drawing.Point(156, 91);
- this.lblCodaT.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblCodaT.Name = "lblCodaT";
- this.lblCodaT.Size = new System.Drawing.Size(28, 17);
- this.lblCodaT.TabIndex = 60;
- this.lblCodaT.Text = "[...]";
- //
- // addCodT
- //
- this.addCodT.Location = new System.Drawing.Point(68, 87);
- 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;
- this.addCodT.KeyDown += new System.Windows.Forms.KeyEventHandler(this.addCodT_KeyDown);
- this.addCodT.Leave += new System.EventHandler(this.addCodT_Leave);
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(12, 91);
- this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(42, 17);
- this.label24.TabIndex = 58;
- this.label24.Text = "AddT";
- //
- // lblCodaS
- //
- this.lblCodaS.AutoSize = true;
- this.lblCodaS.Location = new System.Drawing.Point(157, 59);
- this.lblCodaS.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblCodaS.Name = "lblCodaS";
- this.lblCodaS.Size = new System.Drawing.Size(28, 17);
- this.lblCodaS.TabIndex = 57;
- this.lblCodaS.Text = "[...]";
- //
- // addCodS
- //
- this.addCodS.Location = new System.Drawing.Point(69, 55);
- 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;
- this.addCodS.KeyDown += new System.Windows.Forms.KeyEventHandler(this.addCodS_KeyDown);
- this.addCodS.Leave += new System.EventHandler(this.addCodS_Leave);
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(13, 59);
- this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(42, 17);
- this.label22.TabIndex = 55;
- this.label22.Text = "AddS";
- //
- // lblCodaM
- //
- this.lblCodaM.AutoSize = true;
- this.lblCodaM.Location = new System.Drawing.Point(157, 27);
- this.lblCodaM.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.lblCodaM.Name = "lblCodaM";
- this.lblCodaM.Size = new System.Drawing.Size(28, 17);
- this.lblCodaM.TabIndex = 54;
- this.lblCodaM.Text = "[...]";
- //
- // addCodM
- //
- this.addCodM.Location = new System.Drawing.Point(69, 23);
- 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;
- this.addCodM.KeyDown += new System.Windows.Forms.KeyEventHandler(this.addCodM_KeyDown);
- this.addCodM.Leave += new System.EventHandler(this.addCodM_Leave);
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(13, 27);
- this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(44, 17);
- this.label20.TabIndex = 52;
- this.label20.Text = "AddM";
- //
- // notifyIcon1
- //
- this.notifyIcon1.ContextMenuStrip = this.trayMenu;
- this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
- this.notifyIcon1.Text = "MTC Adapter";
- this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
- //
- // trayMenu
- //
- this.trayMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.trayMenu.Name = "trayMenu";
- this.trayMenu.Size = new System.Drawing.Size(67, 4);
- this.trayMenu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.trayMenu_ItemClicked);
- //
- // MainForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1047, 698);
- this.Controls.Add(this.tabCtrlMain);
- this.Controls.Add(this.lblCurrAdapt);
- this.Controls.Add(this.statusStrip1);
- this.Controls.Add(this.menuStrip1);
- 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);
- this.MaximizeBox = false;
- this.Name = "MainForm";
- this.ShowInTaskbar = false;
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "MTConn Adapter";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
- this.Shown += new System.EventHandler(this.MainForm_Shown);
- this.Resize += new System.EventHandler(this.MainForm_Resize);
- this.groupBox4.ResumeLayout(false);
- this.groupBox4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.PosAct)).EndInit();
- this.groupBox3.ResumeLayout(false);
- this.groupBox3.PerformLayout();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.groupBox9.ResumeLayout(false);
- this.groupBox9.PerformLayout();
- this.groupBox11.ResumeLayout(false);
- this.groupBox11.PerformLayout();
- this.statusStrip1.ResumeLayout(false);
- this.statusStrip1.PerformLayout();
- this.groupBox13.ResumeLayout(false);
- this.groupBox13.PerformLayout();
- this.menuStrip1.ResumeLayout(false);
- this.menuStrip1.PerformLayout();
- this.tabCtrlMain.ResumeLayout(false);
- this.tpStatus.ResumeLayout(false);
- this.gbMonitor.ResumeLayout(false);
- this.gbMonitor.PerformLayout();
- this.groupBox6.ResumeLayout(false);
- this.groupBox6.PerformLayout();
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.tbConf.ResumeLayout(false);
- this.tpSIM.ResumeLayout(false);
- this.groupBox5.ResumeLayout(false);
- this.groupBox5.PerformLayout();
- this.Execution.ResumeLayout(false);
- this.Execution.PerformLayout();
- this.mode.ResumeLayout(false);
- this.mode.PerformLayout();
- this.groupBox7.ResumeLayout(false);
- this.groupBox7.PerformLayout();
- this.groupBox10.ResumeLayout(false);
- this.groupBox10.PerformLayout();
- this.groupBox8.ResumeLayout(false);
- this.groupBox8.PerformLayout();
- this.groupBox12.ResumeLayout(false);
- this.groupBox12.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
+ this.gbMonitor.BackColor = System.Drawing.Color.Black;
+ this.gbMonitor.Controls.Add(this.lblOutMessage3);
+ this.gbMonitor.Controls.Add(this.lblOutMessage2);
+ this.gbMonitor.Controls.Add(this.lblOutMessage);
+ 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";
+ //
+ // lblOutMessage3
+ //
+ this.lblOutMessage3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.lblOutMessage3.AutoSize = true;
+ this.lblOutMessage3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.lblOutMessage3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
+ this.lblOutMessage3.Location = new System.Drawing.Point(527, 15);
+ this.lblOutMessage3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblOutMessage3.Name = "lblOutMessage3";
+ this.lblOutMessage3.Size = new System.Drawing.Size(16, 15);
+ this.lblOutMessage3.TabIndex = 62;
+ this.lblOutMessage3.Text = "...";
+ //
+ // lblOutMessage2
+ //
+ this.lblOutMessage2.Anchor = System.Windows.Forms.AnchorStyles.Top;
+ this.lblOutMessage2.AutoSize = true;
+ this.lblOutMessage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 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(279, 15);
+ this.lblOutMessage2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblOutMessage2.Name = "lblOutMessage2";
+ this.lblOutMessage2.Size = new System.Drawing.Size(16, 15);
+ this.lblOutMessage2.TabIndex = 61;
+ this.lblOutMessage2.Text = "...";
+ //
+ // 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.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.TabIndex = 60;
+ this.lblOutMessage.Text = "...";
+ //
+ // groupBox6
+ //
+ this.groupBox6.Controls.Add(this.STATUS_ACK_DW3);
+ this.groupBox6.Controls.Add(this.label52);
+ this.groupBox6.Controls.Add(this.STATUS_ACK_DW2);
+ this.groupBox6.Controls.Add(this.label51);
+ this.groupBox6.Controls.Add(this.STATUS_ACK_DW1);
+ 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(523, 71);
+ this.groupBox6.Margin = new System.Windows.Forms.Padding(4);
+ this.groupBox6.Name = "groupBox6";
+ 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;
+ this.groupBox6.Text = "ACK ADP --> PLC";
+ //
+ // STATUS_ACK_DW3
+ //
+ 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);
+ 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;
+ //
+ // label52
+ //
+ this.label52.AutoSize = true;
+ this.label52.Location = new System.Drawing.Point(20, 155);
+ this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label52.Name = "label52";
+ this.label52.Size = new System.Drawing.Size(74, 17);
+ this.label52.TabIndex = 58;
+ this.label52.Text = "ACK_DW3";
+ //
+ // STATUS_ACK_DW2
+ //
+ 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);
+ 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;
+ //
+ // label51
+ //
+ this.label51.AutoSize = true;
+ this.label51.Location = new System.Drawing.Point(20, 112);
+ this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label51.Name = "label51";
+ this.label51.Size = new System.Drawing.Size(74, 17);
+ this.label51.TabIndex = 56;
+ this.label51.Text = "ACK_DW2";
+ //
+ // STATUS_ACK_DW1
+ //
+ 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);
+ 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;
+ //
+ // label50
+ //
+ this.label50.AutoSize = true;
+ this.label50.Location = new System.Drawing.Point(20, 69);
+ this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label50.Name = "label50";
+ this.label50.Size = new System.Drawing.Size(74, 17);
+ this.label50.TabIndex = 54;
+ this.label50.Text = "ACK_DW1";
+ //
+ // STATUS_ACK_DW0
+ //
+ 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);
+ 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;
+ //
+ // label48
+ //
+ this.label48.AutoSize = true;
+ this.label48.Location = new System.Drawing.Point(20, 23);
+ this.label48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label48.Name = "label48";
+ this.label48.Size = new System.Drawing.Size(74, 17);
+ this.label48.TabIndex = 52;
+ this.label48.Text = "ACK_DW0";
+ //
+ // groupBox1
+ //
+ this.groupBox1.Controls.Add(this.dump);
+ this.groupBox1.Controls.Add(this.stop);
+ this.groupBox1.Controls.Add(this.start);
+ 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);
+ this.groupBox1.Name = "groupBox1";
+ 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;
+ this.groupBox1.Text = "Server Info";
+ //
+ // dump
+ //
+ this.dump.Location = new System.Drawing.Point(397, 18);
+ 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;
+ this.dump.Text = "Show Dump";
+ this.dump.UseVisualStyleBackColor = true;
+ this.dump.Click += new System.EventHandler(this.dump_Click);
+ //
+ // stop
+ //
+ this.stop.Location = new System.Drawing.Point(269, 18);
+ 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;
+ this.stop.Text = "Stop";
+ this.stop.UseVisualStyleBackColor = true;
+ this.stop.Click += new System.EventHandler(this.stop_Click);
+ //
+ // start
+ //
+ this.start.Location = new System.Drawing.Point(161, 18);
+ 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;
+ this.start.Text = "Start";
+ this.start.UseVisualStyleBackColor = true;
+ this.start.Click += new System.EventHandler(this.start_Click);
+ //
+ // port
+ //
+ this.port.Location = new System.Drawing.Point(67, 21);
+ 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;
+ this.port.Text = "7878";
+ this.port.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(24, 25);
+ this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(34, 17);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "Port";
+ //
+ // tbConf
+ //
+ 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);
+ this.tbConf.Name = "tbConf";
+ 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";
+ //
+ // wbXmlConf
+ //
+ 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);
+ this.wbXmlConf.MinimumSize = new System.Drawing.Size(27, 25);
+ this.wbXmlConf.Name = "wbXmlConf";
+ this.wbXmlConf.Size = new System.Drawing.Size(1031, 572);
+ this.wbXmlConf.TabIndex = 0;
+ //
+ // tpSIM
+ //
+ this.tpSIM.BackColor = System.Drawing.Color.LightGray;
+ this.tpSIM.Controls.Add(this.groupBox5);
+ this.tpSIM.Controls.Add(this.Execution);
+ this.tpSIM.Controls.Add(this.mode);
+ this.tpSIM.Controls.Add(this.groupBox13);
+ this.tpSIM.Controls.Add(this.groupBox7);
+ this.tpSIM.Controls.Add(this.groupBox10);
+ this.tpSIM.Controls.Add(this.groupBox3);
+ this.tpSIM.Controls.Add(this.groupBox8);
+ this.tpSIM.Controls.Add(this.groupBox4);
+ this.tpSIM.Controls.Add(this.groupBox9);
+ 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);
+ this.tpSIM.Name = "tpSIM";
+ this.tpSIM.Size = new System.Drawing.Size(1039, 580);
+ this.tpSIM.TabIndex = 2;
+ this.tpSIM.Text = "SIMULATION";
+ //
+ // groupBox5
+ //
+ this.groupBox5.Controls.Add(this.uoSpeedVal);
+ this.groupBox5.Controls.Add(this.uoLoadVal);
+ this.groupBox5.Controls.Add(this.label45);
+ this.groupBox5.Controls.Add(this.uoSpeed);
+ this.groupBox5.Controls.Add(this.label46);
+ this.groupBox5.Controls.Add(this.uoLoad);
+ this.groupBox5.Controls.Add(this.uoVitaRes);
+ this.groupBox5.Controls.Add(this.label43);
+ this.groupBox5.Controls.Add(this.uoAccTime);
+ this.groupBox5.Controls.Add(this.label44);
+ this.groupBox5.Controls.Add(this.uoToolId);
+ this.groupBox5.Controls.Add(this.label40);
+ this.groupBox5.Controls.Add(this.uoStatus);
+ this.groupBox5.Controls.Add(this.label41);
+ this.groupBox5.Controls.Add(this.uoNumCU);
+ this.groupBox5.Controls.Add(this.label42);
+ 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);
+ this.groupBox5.Name = "groupBox5";
+ 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;
+ this.groupBox5.Text = "Unita Operatrice / Mandrino";
+ //
+ // uoSpeedVal
+ //
+ this.uoSpeedVal.Location = new System.Drawing.Point(343, 146);
+ 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;
+ //
+ // uoLoadVal
+ //
+ this.uoLoadVal.Location = new System.Drawing.Point(343, 121);
+ 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;
+ //
+ // label45
+ //
+ this.label45.AutoSize = true;
+ this.label45.Location = new System.Drawing.Point(5, 150);
+ this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label45.Name = "label45";
+ this.label45.Size = new System.Drawing.Size(49, 17);
+ this.label45.TabIndex = 79;
+ this.label45.Text = "Speed";
+ //
+ // uoSpeed
+ //
+ this.uoSpeed.Location = new System.Drawing.Point(97, 146);
+ this.uoSpeed.Name = "uoSpeed";
+ this.uoSpeed.Size = new System.Drawing.Size(224, 18);
+ this.uoSpeed.TabIndex = 78;
+ this.uoSpeed.Scroll += new System.Windows.Forms.ScrollEventHandler(this.uoSpeed_Scroll);
+ //
+ // label46
+ //
+ this.label46.AutoSize = true;
+ this.label46.Location = new System.Drawing.Point(5, 124);
+ this.label46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label46.Name = "label46";
+ this.label46.Size = new System.Drawing.Size(40, 17);
+ this.label46.TabIndex = 77;
+ this.label46.Text = "Load";
+ //
+ // uoLoad
+ //
+ this.uoLoad.Location = new System.Drawing.Point(97, 121);
+ this.uoLoad.Name = "uoLoad";
+ this.uoLoad.Size = new System.Drawing.Size(224, 18);
+ this.uoLoad.TabIndex = 76;
+ this.uoLoad.Scroll += new System.Windows.Forms.ScrollEventHandler(this.uoLoad_Scroll);
+ //
+ // uoVitaRes
+ //
+ this.uoVitaRes.Location = new System.Drawing.Point(97, 89);
+ 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;
+ //
+ // label43
+ //
+ this.label43.AutoSize = true;
+ this.label43.Location = new System.Drawing.Point(8, 92);
+ this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label43.Name = "label43";
+ this.label43.Size = new System.Drawing.Size(57, 17);
+ this.label43.TabIndex = 74;
+ this.label43.Text = "VitaRes";
+ //
+ // uoAccTime
+ //
+ this.uoAccTime.Location = new System.Drawing.Point(253, 89);
+ 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;
+ //
+ // label44
+ //
+ this.label44.AutoSize = true;
+ this.label44.Location = new System.Drawing.Point(160, 92);
+ this.label44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label44.Name = "label44";
+ this.label44.Size = new System.Drawing.Size(66, 17);
+ this.label44.TabIndex = 72;
+ this.label44.Text = "Acc Time";
+ //
+ // uoToolId
+ //
+ this.uoToolId.Location = new System.Drawing.Point(97, 57);
+ 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;
+ //
+ // label40
+ //
+ this.label40.AutoSize = true;
+ this.label40.Location = new System.Drawing.Point(8, 60);
+ this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label40.Name = "label40";
+ this.label40.Size = new System.Drawing.Size(53, 17);
+ this.label40.TabIndex = 70;
+ this.label40.Text = "Tool ID";
+ //
+ // uoStatus
+ //
+ this.uoStatus.Location = new System.Drawing.Point(396, 57);
+ 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;
+ //
+ // label41
+ //
+ this.label41.AutoSize = true;
+ this.label41.Location = new System.Drawing.Point(340, 60);
+ this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label41.Name = "label41";
+ this.label41.Size = new System.Drawing.Size(48, 17);
+ this.label41.TabIndex = 68;
+ this.label41.Text = "Status";
+ //
+ // uoNumCU
+ //
+ this.uoNumCU.Location = new System.Drawing.Point(253, 57);
+ 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;
+ //
+ // label42
+ //
+ this.label42.AutoSize = true;
+ this.label42.Location = new System.Drawing.Point(160, 60);
+ this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label42.Name = "label42";
+ this.label42.Size = new System.Drawing.Size(56, 17);
+ this.label42.TabIndex = 66;
+ this.label42.Text = "NumCU";
+ //
+ // cbUnOpSel
+ //
+ 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);
+ this.cbUnOpSel.Name = "cbUnOpSel";
+ this.cbUnOpSel.Size = new System.Drawing.Size(160, 24);
+ this.cbUnOpSel.TabIndex = 65;
+ this.cbUnOpSel.ValueMember = "Value";
+ this.cbUnOpSel.SelectedIndexChanged += new System.EventHandler(this.cbUnOpSel_SelectedIndexChanged);
+ //
+ // label39
+ //
+ this.label39.AutoSize = true;
+ this.label39.Location = new System.Drawing.Point(5, 28);
+ this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label39.Name = "label39";
+ this.label39.Size = new System.Drawing.Size(78, 17);
+ this.label39.TabIndex = 64;
+ this.label39.Text = "Num UnOp";
+ //
+ // Execution
+ //
+ this.Execution.Controls.Add(this.ready);
+ this.Execution.Controls.Add(this.feedhold);
+ 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);
+ this.Execution.Name = "Execution";
+ 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;
+ this.Execution.Text = "Execution";
+ //
+ // ready
+ //
+ 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);
+ this.ready.Name = "ready";
+ this.ready.Size = new System.Drawing.Size(70, 21);
+ this.ready.TabIndex = 9;
+ this.ready.TabStop = true;
+ this.ready.Text = "Ready";
+ this.ready.UseVisualStyleBackColor = true;
+ //
+ // feedhold
+ //
+ this.feedhold.AutoSize = true;
+ this.feedhold.Location = new System.Drawing.Point(337, 20);
+ 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;
+ this.feedhold.Text = "Feed Hold";
+ this.feedhold.UseVisualStyleBackColor = true;
+ //
+ // stopped
+ //
+ this.stopped.AutoSize = true;
+ this.stopped.Location = new System.Drawing.Point(240, 20);
+ 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;
+ this.stopped.Text = "Stopped";
+ this.stopped.UseVisualStyleBackColor = true;
+ //
+ // running
+ //
+ this.running.AutoSize = true;
+ this.running.Location = new System.Drawing.Point(48, 20);
+ 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;
+ this.running.Text = "Running";
+ this.running.UseVisualStyleBackColor = true;
+ //
+ // mode
+ //
+ this.mode.Controls.Add(this.edit);
+ this.mode.Controls.Add(this.mdi);
+ 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);
+ this.mode.Name = "mode";
+ 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;
+ this.mode.Text = "Mode";
+ //
+ // edit
+ //
+ this.edit.AutoSize = true;
+ this.edit.Location = new System.Drawing.Point(399, 20);
+ 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;
+ this.edit.Text = "Edit";
+ this.edit.UseVisualStyleBackColor = true;
+ //
+ // mdi
+ //
+ this.mdi.AutoSize = true;
+ this.mdi.Location = new System.Drawing.Point(240, 18);
+ 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;
+ this.mdi.Text = "Manual Data Input";
+ this.mdi.UseVisualStyleBackColor = true;
+ //
+ // manual
+ //
+ 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);
+ this.manual.Name = "manual";
+ this.manual.Size = new System.Drawing.Size(75, 21);
+ this.manual.TabIndex = 7;
+ this.manual.TabStop = true;
+ this.manual.Text = "Manual";
+ this.manual.UseVisualStyleBackColor = true;
+ //
+ // automatic
+ //
+ this.automatic.AutoSize = true;
+ this.automatic.Location = new System.Drawing.Point(48, 20);
+ 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;
+ this.automatic.Text = "Automatic";
+ this.automatic.UseVisualStyleBackColor = true;
+ //
+ // groupBox7
+ //
+ this.groupBox7.Controls.Add(this.D1_UUID);
+ this.groupBox7.Controls.Add(this.D1_ID);
+ this.groupBox7.Controls.Add(this.D1_NAME);
+ this.groupBox7.Controls.Add(this.lblAT);
+ this.groupBox7.Controls.Add(this.txtAccTime);
+ this.groupBox7.Controls.Add(this.label30);
+ this.groupBox7.Controls.Add(this.txtPower);
+ this.groupBox7.Controls.Add(this.label16);
+ 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);
+ this.groupBox7.Name = "groupBox7";
+ 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;
+ this.groupBox7.Text = "Macchina";
+ //
+ // D1_UUID
+ //
+ this.D1_UUID.AutoSize = true;
+ this.D1_UUID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.D1_UUID.Location = new System.Drawing.Point(311, 66);
+ this.D1_UUID.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.D1_UUID.Name = "D1_UUID";
+ this.D1_UUID.Size = new System.Drawing.Size(23, 17);
+ this.D1_UUID.TabIndex = 66;
+ this.D1_UUID.Text = "...";
+ //
+ // D1_ID
+ //
+ this.D1_ID.AutoSize = true;
+ this.D1_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.D1_ID.Location = new System.Drawing.Point(72, 65);
+ this.D1_ID.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.D1_ID.Name = "D1_ID";
+ this.D1_ID.Size = new System.Drawing.Size(23, 17);
+ this.D1_ID.TabIndex = 65;
+ this.D1_ID.Text = "...";
+ //
+ // D1_NAME
+ //
+ this.D1_NAME.AutoSize = true;
+ this.D1_NAME.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.D1_NAME.Location = new System.Drawing.Point(72, 25);
+ this.D1_NAME.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.D1_NAME.Name = "D1_NAME";
+ this.D1_NAME.Size = new System.Drawing.Size(23, 17);
+ this.D1_NAME.TabIndex = 64;
+ this.D1_NAME.Text = "...";
+ //
+ // lblAT
+ //
+ this.lblAT.AutoSize = true;
+ this.lblAT.Location = new System.Drawing.Point(252, 25);
+ this.lblAT.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblAT.Name = "lblAT";
+ this.lblAT.Size = new System.Drawing.Size(53, 17);
+ this.lblAT.TabIndex = 63;
+ this.lblAT.Text = "AccMin";
+ //
+ // txtAccTime
+ //
+ this.txtAccTime.Location = new System.Drawing.Point(312, 21);
+ 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;
+ //
+ // label30
+ //
+ this.label30.AutoSize = true;
+ this.label30.Location = new System.Drawing.Point(384, 25);
+ this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label30.Name = "label30";
+ this.label30.Size = new System.Drawing.Size(46, 17);
+ this.label30.TabIndex = 61;
+ this.label30.Text = "power";
+ //
+ // txtPower
+ //
+ this.txtPower.Location = new System.Drawing.Point(433, 21);
+ 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;
+ //
+ // label16
+ //
+ this.label16.AutoSize = true;
+ this.label16.Location = new System.Drawing.Point(257, 65);
+ this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(41, 17);
+ this.label16.TabIndex = 59;
+ this.label16.Text = "UUID";
+ //
+ // label15
+ //
+ this.label15.AutoSize = true;
+ this.label15.Location = new System.Drawing.Point(13, 65);
+ this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(21, 17);
+ this.label15.TabIndex = 57;
+ this.label15.Text = "ID";
+ //
+ // label14
+ //
+ this.label14.AutoSize = true;
+ this.label14.Location = new System.Drawing.Point(13, 25);
+ this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(45, 17);
+ this.label14.TabIndex = 54;
+ this.label14.Text = "Nome";
+ //
+ // groupBox10
+ //
+ this.groupBox10.Controls.Add(this.enableDataSim);
+ this.groupBox10.Location = new System.Drawing.Point(273, 4);
+ this.groupBox10.Margin = new System.Windows.Forms.Padding(4);
+ this.groupBox10.Name = "groupBox10";
+ 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;
+ this.groupBox10.Text = "Simulazione";
+ //
+ // enableDataSim
+ //
+ this.enableDataSim.AutoSize = true;
+ this.enableDataSim.Location = new System.Drawing.Point(149, 11);
+ 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);
+ this.enableDataSim.TabIndex = 55;
+ this.enableDataSim.Text = "Enable";
+ this.enableDataSim.UseVisualStyleBackColor = true;
+ //
+ // groupBox8
+ //
+ this.groupBox8.Controls.Add(this.estop);
+ this.groupBox8.Location = new System.Drawing.Point(4, 4);
+ this.groupBox8.Margin = new System.Windows.Forms.Padding(4);
+ this.groupBox8.Name = "groupBox8";
+ 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;
+ this.groupBox8.Text = "Sicurezze";
+ //
+ // estop
+ //
+ this.estop.AutoSize = true;
+ this.estop.Location = new System.Drawing.Point(79, 11);
+ 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);
+ this.estop.TabIndex = 55;
+ this.estop.Text = "Emergency Stop";
+ this.estop.UseVisualStyleBackColor = true;
+ //
+ // groupBox12
+ //
+ this.groupBox12.Controls.Add(this.lblCodaT);
+ this.groupBox12.Controls.Add(this.addCodT);
+ this.groupBox12.Controls.Add(this.label24);
+ this.groupBox12.Controls.Add(this.lblCodaS);
+ this.groupBox12.Controls.Add(this.addCodS);
+ this.groupBox12.Controls.Add(this.label22);
+ this.groupBox12.Controls.Add(this.lblCodaM);
+ 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);
+ this.groupBox12.Name = "groupBox12";
+ 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;
+ this.groupBox12.Text = "Codici M/S/T";
+ //
+ // lblCodaT
+ //
+ this.lblCodaT.AutoSize = true;
+ this.lblCodaT.Location = new System.Drawing.Point(156, 91);
+ this.lblCodaT.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblCodaT.Name = "lblCodaT";
+ this.lblCodaT.Size = new System.Drawing.Size(28, 17);
+ this.lblCodaT.TabIndex = 60;
+ this.lblCodaT.Text = "[...]";
+ //
+ // addCodT
+ //
+ this.addCodT.Location = new System.Drawing.Point(68, 87);
+ 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;
+ this.addCodT.KeyDown += new System.Windows.Forms.KeyEventHandler(this.addCodT_KeyDown);
+ this.addCodT.Leave += new System.EventHandler(this.addCodT_Leave);
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.Location = new System.Drawing.Point(12, 91);
+ this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(42, 17);
+ this.label24.TabIndex = 58;
+ this.label24.Text = "AddT";
+ //
+ // lblCodaS
+ //
+ this.lblCodaS.AutoSize = true;
+ this.lblCodaS.Location = new System.Drawing.Point(157, 59);
+ this.lblCodaS.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblCodaS.Name = "lblCodaS";
+ this.lblCodaS.Size = new System.Drawing.Size(28, 17);
+ this.lblCodaS.TabIndex = 57;
+ this.lblCodaS.Text = "[...]";
+ //
+ // addCodS
+ //
+ this.addCodS.Location = new System.Drawing.Point(69, 55);
+ 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;
+ this.addCodS.KeyDown += new System.Windows.Forms.KeyEventHandler(this.addCodS_KeyDown);
+ this.addCodS.Leave += new System.EventHandler(this.addCodS_Leave);
+ //
+ // label22
+ //
+ this.label22.AutoSize = true;
+ this.label22.Location = new System.Drawing.Point(13, 59);
+ this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label22.Name = "label22";
+ this.label22.Size = new System.Drawing.Size(42, 17);
+ this.label22.TabIndex = 55;
+ this.label22.Text = "AddS";
+ //
+ // lblCodaM
+ //
+ this.lblCodaM.AutoSize = true;
+ this.lblCodaM.Location = new System.Drawing.Point(157, 27);
+ this.lblCodaM.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.lblCodaM.Name = "lblCodaM";
+ this.lblCodaM.Size = new System.Drawing.Size(28, 17);
+ this.lblCodaM.TabIndex = 54;
+ this.lblCodaM.Text = "[...]";
+ //
+ // addCodM
+ //
+ this.addCodM.Location = new System.Drawing.Point(69, 23);
+ 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;
+ this.addCodM.KeyDown += new System.Windows.Forms.KeyEventHandler(this.addCodM_KeyDown);
+ this.addCodM.Leave += new System.EventHandler(this.addCodM_Leave);
+ //
+ // label20
+ //
+ this.label20.AutoSize = true;
+ this.label20.Location = new System.Drawing.Point(13, 27);
+ this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label20.Name = "label20";
+ this.label20.Size = new System.Drawing.Size(44, 17);
+ this.label20.TabIndex = 52;
+ this.label20.Text = "AddM";
+ //
+ // notifyIcon1
+ //
+ this.notifyIcon1.ContextMenuStrip = this.trayMenu;
+ this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
+ this.notifyIcon1.Text = "MTC Adapter";
+ this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
+ //
+ // trayMenu
+ //
+ this.trayMenu.ImageScalingSize = new System.Drawing.Size(20, 20);
+ this.trayMenu.Name = "trayMenu";
+ this.trayMenu.Size = new System.Drawing.Size(67, 4);
+ this.trayMenu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.trayMenu_ItemClicked);
+ //
+ // MainForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(1047, 698);
+ this.Controls.Add(this.tabCtrlMain);
+ this.Controls.Add(this.lblCurrAdapt);
+ this.Controls.Add(this.statusStrip1);
+ this.Controls.Add(this.menuStrip1);
+ 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);
+ this.MaximizeBox = false;
+ this.Name = "MainForm";
+ this.ShowInTaskbar = false;
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "MTConn Adapter";
+ this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
+ this.Shown += new System.EventHandler(this.MainForm_Shown);
+ this.Resize += new System.EventHandler(this.MainForm_Resize);
+ this.groupBox4.ResumeLayout(false);
+ this.groupBox4.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.PosAct)).EndInit();
+ this.groupBox3.ResumeLayout(false);
+ this.groupBox3.PerformLayout();
+ this.groupBox2.ResumeLayout(false);
+ this.groupBox2.PerformLayout();
+ this.groupBox9.ResumeLayout(false);
+ this.groupBox9.PerformLayout();
+ this.groupBox11.ResumeLayout(false);
+ this.groupBox11.PerformLayout();
+ this.statusStrip1.ResumeLayout(false);
+ this.statusStrip1.PerformLayout();
+ this.groupBox13.ResumeLayout(false);
+ this.groupBox13.PerformLayout();
+ this.menuStrip1.ResumeLayout(false);
+ this.menuStrip1.PerformLayout();
+ this.tabCtrlMain.ResumeLayout(false);
+ this.tpStatus.ResumeLayout(false);
+ this.gbMonitor.ResumeLayout(false);
+ this.gbMonitor.PerformLayout();
+ this.groupBox6.ResumeLayout(false);
+ this.groupBox6.PerformLayout();
+ this.groupBox1.ResumeLayout(false);
+ this.groupBox1.PerformLayout();
+ this.tbConf.ResumeLayout(false);
+ this.tpSIM.ResumeLayout(false);
+ this.groupBox5.ResumeLayout(false);
+ this.groupBox5.PerformLayout();
+ this.Execution.ResumeLayout(false);
+ this.Execution.PerformLayout();
+ this.mode.ResumeLayout(false);
+ this.mode.PerformLayout();
+ this.groupBox7.ResumeLayout(false);
+ this.groupBox7.PerformLayout();
+ this.groupBox10.ResumeLayout(false);
+ this.groupBox10.PerformLayout();
+ this.groupBox8.ResumeLayout(false);
+ this.groupBox8.PerformLayout();
+ this.groupBox12.ResumeLayout(false);
+ this.groupBox12.PerformLayout();
+ this.ResumeLayout(false);
+ this.PerformLayout();
}