瀏覽代碼

BaudRate 변경 할 수 있도록 수정

PYJ 5 年之前
父節點
當前提交
eb89cd1724

二進制
.vs/Jdas_Mbic/v15/.suo


二進制
.vs/Jdas_Mbic/v15/Server/sqlite3/storage.ide


二進制
.vs/Jdas_Mbic/v15/Server/sqlite3/storage.ide-wal


+ 21 - 2
Jdas_Mbic/Func/Serial.cs

@@ -64,12 +64,30 @@ namespace Jdas_Mbic
64 64
             }
65 65
             cb_port.EndUpdate();
66 66
             //SerialPort 초기 설정.
67
-         //  serialPort.Encoding = Encoding.GetEncoding("Windows-1252");
67
+            //  serialPort.Encoding = Encoding.GetEncoding("Windows-1252");
68
+            
68 69
             cb_port.DataSource =  SerialPort.GetPortNames();
69 70
             try
70 71
             {
71 72
                 serialPort.PortName = Serial_Name = cb_port.SelectedItem.ToString();
72
-                serialPort.BaudRate = (int)115200;
73
+                serialPort.BaudRate = (int)BaudRate;
74
+                serialPort.DataBits = (int)8;
75
+                serialPort.Parity = System.IO.Ports.Parity.None;
76
+                serialPort.StopBits = StopBits.One;
77
+            }
78
+            catch { }
79
+
80
+        }
81
+        public void Serial_Setting()
82
+        {
83
+            int BaudRate = Convert.ToInt32(main_form.comboBox_baudrate.Text);
84
+            this.serialPort = new System.IO.Ports.SerialPort();
85
+            this.serialPort.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.Serial_DataRecvFunction);
86
+            //SerialPort 초기 설정.
87
+            //  serialPort.Encoding = Encoding.GetEncoding("Windows-1252");
88
+            try
89
+            {
90
+                serialPort.BaudRate = (int)BaudRate;
73 91
                 serialPort.DataBits = (int)8;
74 92
                 serialPort.Parity = System.IO.Ports.Parity.None;
75 93
                 serialPort.StopBits = StopBits.One;
@@ -177,6 +195,7 @@ namespace Jdas_Mbic
177 195
                     if (cb.Text != "")
178 196
                     {
179 197
                         //this.main_form.Invoke(new BoolSet(this.main_form.Serial_PortName_get));
198
+                        Serial_Setting();
180 199
                         serialPort.PortName = cb.Text;
181 200
                         serialPort.Open();
182 201
                         Btn_Portonoff.Text = "Port Close";

+ 338 - 338
Jdas_Mbic/Main.Designer.cs

@@ -34,16 +34,21 @@
34 34
             this.tabControl1 = new System.Windows.Forms.TabControl();
35 35
             this.tabPage_Main = new System.Windows.Forms.TabPage();
36 36
             this.button_Save = new System.Windows.Forms.Button();
37
+            this.label13 = new System.Windows.Forms.Label();
37 38
             this.checkBox_Fix = new System.Windows.Forms.CheckBox();
38 39
             this.groupBox_Temp = new System.Windows.Forms.GroupBox();
39 40
             this.label_Temp = new System.Windows.Forms.Label();
40 41
             this.groupBox5 = new System.Windows.Forms.GroupBox();
41 42
             this.groupBox21 = new System.Windows.Forms.GroupBox();
42 43
             this.label39 = new System.Windows.Forms.Label();
44
+            this.label40 = new System.Windows.Forms.Label();
43 45
             this.numericUpDown_AGC3_MIN = new System.Windows.Forms.NumericUpDown();
44 46
             this.numericUpDown_ALC3_MAX = new System.Windows.Forms.NumericUpDown();
45 47
             this.groupBox17 = new System.Windows.Forms.GroupBox();
48
+            this.label50 = new System.Windows.Forms.Label();
46 49
             this.label20 = new System.Windows.Forms.Label();
50
+            this.numericUpDown_DL3_User = new System.Windows.Forms.NumericUpDown();
51
+            this.numericUpDown_UL3_User = new System.Windows.Forms.NumericUpDown();
47 52
             this.numericUpDown_ATT_DL3 = new System.Windows.Forms.NumericUpDown();
48 53
             this.numericUpDown_ATT_UL3 = new System.Windows.Forms.NumericUpDown();
49 54
             this.label19 = new System.Windows.Forms.Label();
@@ -69,9 +74,11 @@
69 74
             this.pictureBox_SelfTest3_OFF = new System.Windows.Forms.PictureBox();
70 75
             this.pictureBox_ALC3_OFF = new System.Windows.Forms.PictureBox();
71 76
             this.pictureBox_AGC3_OFF = new System.Windows.Forms.PictureBox();
77
+            this.numericUpDown_TEMP_User = new System.Windows.Forms.NumericUpDown();
72 78
             this.groupBox2 = new System.Windows.Forms.GroupBox();
73 79
             this.groupBox22 = new System.Windows.Forms.GroupBox();
74 80
             this.label41 = new System.Windows.Forms.Label();
81
+            this.label42 = new System.Windows.Forms.Label();
75 82
             this.numericUpDown_AGC4_MIN = new System.Windows.Forms.NumericUpDown();
76 83
             this.numericUpDown_ALC4_MAX = new System.Windows.Forms.NumericUpDown();
77 84
             this.groupBox19 = new System.Windows.Forms.GroupBox();
@@ -82,7 +89,10 @@
82 89
             this.textBox_DET_DL4_dBm = new System.Windows.Forms.TextBox();
83 90
             this.textBox_DET_DL4 = new System.Windows.Forms.TextBox();
84 91
             this.groupBox18 = new System.Windows.Forms.GroupBox();
92
+            this.label51 = new System.Windows.Forms.Label();
85 93
             this.label2 = new System.Windows.Forms.Label();
94
+            this.numericUpDown_DL4_User = new System.Windows.Forms.NumericUpDown();
95
+            this.numericUpDown_UL4_User = new System.Windows.Forms.NumericUpDown();
86 96
             this.numericUpDown_ATT_DL4 = new System.Windows.Forms.NumericUpDown();
87 97
             this.numericUpDown_ATT_UL4 = new System.Windows.Forms.NumericUpDown();
88 98
             this.label1 = new System.Windows.Forms.Label();
@@ -111,10 +121,14 @@
111 121
             this.textBox_DET_DL1 = new System.Windows.Forms.TextBox();
112 122
             this.groupBox11 = new System.Windows.Forms.GroupBox();
113 123
             this.label35 = new System.Windows.Forms.Label();
124
+            this.label36 = new System.Windows.Forms.Label();
114 125
             this.numericUpDown_ALC1_MIN = new System.Windows.Forms.NumericUpDown();
115 126
             this.numericUpDown_ALC1_MAX = new System.Windows.Forms.NumericUpDown();
116 127
             this.groupBox10 = new System.Windows.Forms.GroupBox();
128
+            this.label33 = new System.Windows.Forms.Label();
117 129
             this.label9 = new System.Windows.Forms.Label();
130
+            this.numericUpDown_DL1_User = new System.Windows.Forms.NumericUpDown();
131
+            this.numericUpDown_UL1_User = new System.Windows.Forms.NumericUpDown();
118 132
             this.numericUpDown_ATT_DL1 = new System.Windows.Forms.NumericUpDown();
119 133
             this.numericUpDown_ATT_UL1 = new System.Windows.Forms.NumericUpDown();
120 134
             this.label3 = new System.Windows.Forms.Label();
@@ -137,10 +151,13 @@
137 151
             this.groupBox4 = new System.Windows.Forms.GroupBox();
138 152
             this.groupBox20 = new System.Windows.Forms.GroupBox();
139 153
             this.label37 = new System.Windows.Forms.Label();
154
+            this.label38 = new System.Windows.Forms.Label();
140 155
             this.numericUpDown_AGC2_MIN = new System.Windows.Forms.NumericUpDown();
141 156
             this.numericUpDown_ALC2_MAX = new System.Windows.Forms.NumericUpDown();
142 157
             this.groupBox15 = new System.Windows.Forms.GroupBox();
143
-            this.label13 = new System.Windows.Forms.Label();
158
+            this.label49 = new System.Windows.Forms.Label();
159
+            this.numericUpDown_DL2_User = new System.Windows.Forms.NumericUpDown();
160
+            this.numericUpDown_UL2_User = new System.Windows.Forms.NumericUpDown();
144 161
             this.numericUpDown_ATT_DL2 = new System.Windows.Forms.NumericUpDown();
145 162
             this.numericUpDown_ATT_UL2 = new System.Windows.Forms.NumericUpDown();
146 163
             this.label12 = new System.Windows.Forms.Label();
@@ -218,23 +235,6 @@
218 235
             this.Column_Offset = new System.Windows.Forms.DataGridViewTextBoxColumn();
219 236
             this.timer_JdasMbic = new System.Windows.Forms.Timer(this.components);
220 237
             this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
221
-            this.label42 = new System.Windows.Forms.Label();
222
-            this.label40 = new System.Windows.Forms.Label();
223
-            this.label38 = new System.Windows.Forms.Label();
224
-            this.label36 = new System.Windows.Forms.Label();
225
-            this.numericUpDown_UL1_User = new System.Windows.Forms.NumericUpDown();
226
-            this.numericUpDown_DL1_User = new System.Windows.Forms.NumericUpDown();
227
-            this.numericUpDown_UL2_User = new System.Windows.Forms.NumericUpDown();
228
-            this.numericUpDown_DL2_User = new System.Windows.Forms.NumericUpDown();
229
-            this.numericUpDown_UL3_User = new System.Windows.Forms.NumericUpDown();
230
-            this.numericUpDown_DL3_User = new System.Windows.Forms.NumericUpDown();
231
-            this.numericUpDown_UL4_User = new System.Windows.Forms.NumericUpDown();
232
-            this.numericUpDown_DL4_User = new System.Windows.Forms.NumericUpDown();
233
-            this.label33 = new System.Windows.Forms.Label();
234
-            this.label49 = new System.Windows.Forms.Label();
235
-            this.label50 = new System.Windows.Forms.Label();
236
-            this.label51 = new System.Windows.Forms.Label();
237
-            this.numericUpDown_TEMP_User = new System.Windows.Forms.NumericUpDown();
238 238
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
239 239
             this.tabControl1.SuspendLayout();
240 240
             this.tabPage_Main.SuspendLayout();
@@ -244,6 +244,8 @@
244 244
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_AGC3_MIN)).BeginInit();
245 245
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC3_MAX)).BeginInit();
246 246
             this.groupBox17.SuspendLayout();
247
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).BeginInit();
248
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).BeginInit();
247 249
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL3)).BeginInit();
248 250
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL3)).BeginInit();
249 251
             this.groupBox16.SuspendLayout();
@@ -257,12 +259,15 @@
257 259
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_SelfTest3_OFF)).BeginInit();
258 260
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_OFF)).BeginInit();
259 261
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_OFF)).BeginInit();
262
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_TEMP_User)).BeginInit();
260 263
             this.groupBox2.SuspendLayout();
261 264
             this.groupBox22.SuspendLayout();
262 265
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_AGC4_MIN)).BeginInit();
263 266
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC4_MAX)).BeginInit();
264 267
             this.groupBox19.SuspendLayout();
265 268
             this.groupBox18.SuspendLayout();
269
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).BeginInit();
270
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).BeginInit();
266 271
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL4)).BeginInit();
267 272
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL4)).BeginInit();
268 273
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_SelfTest4_ON)).BeginInit();
@@ -281,6 +286,8 @@
281 286
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC1_MIN)).BeginInit();
282 287
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC1_MAX)).BeginInit();
283 288
             this.groupBox10.SuspendLayout();
289
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).BeginInit();
290
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).BeginInit();
284 291
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL1)).BeginInit();
285 292
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL1)).BeginInit();
286 293
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_ON)).BeginInit();
@@ -298,6 +305,8 @@
298 305
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_AGC2_MIN)).BeginInit();
299 306
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC2_MAX)).BeginInit();
300 307
             this.groupBox15.SuspendLayout();
308
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).BeginInit();
309
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).BeginInit();
301 310
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL2)).BeginInit();
302 311
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL2)).BeginInit();
303 312
             this.groupBox14.SuspendLayout();
@@ -327,15 +336,6 @@
327 336
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_MultiSet)).BeginInit();
328 337
             this.groupBox3.SuspendLayout();
329 338
             ((System.ComponentModel.ISupportInitialize)(this.dataGridView_TableSetting)).BeginInit();
330
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).BeginInit();
331
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).BeginInit();
332
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).BeginInit();
333
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).BeginInit();
334
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).BeginInit();
335
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).BeginInit();
336
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).BeginInit();
337
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).BeginInit();
338
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_TEMP_User)).BeginInit();
339 339
             this.SuspendLayout();
340 340
             // 
341 341
             // pictureBox1
@@ -389,6 +389,16 @@
389 389
             this.button_Save.UseVisualStyleBackColor = true;
390 390
             this.button_Save.Click += new System.EventHandler(this.button_Save_Click);
391 391
             // 
392
+            // label13
393
+            // 
394
+            this.label13.AutoSize = true;
395
+            this.label13.Location = new System.Drawing.Point(5, 364);
396
+            this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
397
+            this.label13.Name = "label13";
398
+            this.label13.Size = new System.Drawing.Size(91, 12);
399
+            this.label13.TabIndex = 100;
400
+            this.label13.Text = "TEMP OFFSET";
401
+            // 
392 402
             // checkBox_Fix
393 403
             // 
394 404
             this.checkBox_Fix.AutoSize = true;
@@ -470,6 +480,16 @@
470 480
             this.label39.TabIndex = 100;
471 481
             this.label39.Text = "ALC MAX";
472 482
             // 
483
+            // label40
484
+            // 
485
+            this.label40.AutoSize = true;
486
+            this.label40.Location = new System.Drawing.Point(33, 45);
487
+            this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
488
+            this.label40.Name = "label40";
489
+            this.label40.Size = new System.Drawing.Size(56, 12);
490
+            this.label40.TabIndex = 100;
491
+            this.label40.Text = "ALC MIN";
492
+            // 
473 493
             // numericUpDown_AGC3_MIN
474 494
             // 
475 495
             this.numericUpDown_AGC3_MIN.DecimalPlaces = 2;
@@ -550,6 +570,16 @@
550 570
             this.groupBox17.TabStop = false;
551 571
             this.groupBox17.Text = "groupBox17";
552 572
             // 
573
+            // label50
574
+            // 
575
+            this.label50.AutoSize = true;
576
+            this.label50.Location = new System.Drawing.Point(116, 36);
577
+            this.label50.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
578
+            this.label50.Name = "label50";
579
+            this.label50.Size = new System.Drawing.Size(37, 12);
580
+            this.label50.TabIndex = 104;
581
+            this.label50.Text = "USER";
582
+            // 
553 583
             // label20
554 584
             // 
555 585
             this.label20.AutoSize = true;
@@ -560,6 +590,50 @@
560 590
             this.label20.TabIndex = 100;
561 591
             this.label20.Text = "DL";
562 592
             // 
593
+            // numericUpDown_DL3_User
594
+            // 
595
+            this.numericUpDown_DL3_User.DecimalPlaces = 2;
596
+            this.numericUpDown_DL3_User.Increment = new decimal(new int[] {
597
+            5,
598
+            0,
599
+            0,
600
+            65536});
601
+            this.numericUpDown_DL3_User.Location = new System.Drawing.Point(166, 20);
602
+            this.numericUpDown_DL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
603
+            this.numericUpDown_DL3_User.Maximum = new decimal(new int[] {
604
+            315,
605
+            0,
606
+            0,
607
+            65536});
608
+            this.numericUpDown_DL3_User.Name = "numericUpDown_DL3_User";
609
+            this.numericUpDown_DL3_User.Size = new System.Drawing.Size(65, 21);
610
+            this.numericUpDown_DL3_User.TabIndex = 103;
611
+            this.numericUpDown_DL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
612
+            this.numericUpDown_DL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
613
+            this.numericUpDown_DL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
614
+            // 
615
+            // numericUpDown_UL3_User
616
+            // 
617
+            this.numericUpDown_UL3_User.DecimalPlaces = 2;
618
+            this.numericUpDown_UL3_User.Increment = new decimal(new int[] {
619
+            5,
620
+            0,
621
+            0,
622
+            65536});
623
+            this.numericUpDown_UL3_User.Location = new System.Drawing.Point(166, 42);
624
+            this.numericUpDown_UL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
625
+            this.numericUpDown_UL3_User.Maximum = new decimal(new int[] {
626
+            315,
627
+            0,
628
+            0,
629
+            65536});
630
+            this.numericUpDown_UL3_User.Name = "numericUpDown_UL3_User";
631
+            this.numericUpDown_UL3_User.Size = new System.Drawing.Size(65, 21);
632
+            this.numericUpDown_UL3_User.TabIndex = 103;
633
+            this.numericUpDown_UL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
634
+            this.numericUpDown_UL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
635
+            this.numericUpDown_UL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
636
+            // 
563 637
             // numericUpDown_ATT_DL3
564 638
             // 
565 639
             this.numericUpDown_ATT_DL3.DecimalPlaces = 2;
@@ -856,6 +930,28 @@
856 930
             this.pictureBox_AGC3_OFF.Tag = "2";
857 931
             this.pictureBox_AGC3_OFF.Click += new System.EventHandler(this.pictureBox_ATT_PATH_Ctrl_Click);
858 932
             // 
933
+            // numericUpDown_TEMP_User
934
+            // 
935
+            this.numericUpDown_TEMP_User.DecimalPlaces = 2;
936
+            this.numericUpDown_TEMP_User.Increment = new decimal(new int[] {
937
+            5,
938
+            0,
939
+            0,
940
+            65536});
941
+            this.numericUpDown_TEMP_User.Location = new System.Drawing.Point(100, 361);
942
+            this.numericUpDown_TEMP_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
943
+            this.numericUpDown_TEMP_User.Maximum = new decimal(new int[] {
944
+            315,
945
+            0,
946
+            0,
947
+            65536});
948
+            this.numericUpDown_TEMP_User.Name = "numericUpDown_TEMP_User";
949
+            this.numericUpDown_TEMP_User.Size = new System.Drawing.Size(109, 21);
950
+            this.numericUpDown_TEMP_User.TabIndex = 103;
951
+            this.numericUpDown_TEMP_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
952
+            this.numericUpDown_TEMP_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
953
+            this.numericUpDown_TEMP_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
954
+            // 
859 955
             // groupBox2
860 956
             // 
861 957
             this.groupBox2.Controls.Add(this.groupBox22);
@@ -906,6 +1002,16 @@
906 1002
             this.label41.TabIndex = 100;
907 1003
             this.label41.Text = "ALC MAX";
908 1004
             // 
1005
+            // label42
1006
+            // 
1007
+            this.label42.AutoSize = true;
1008
+            this.label42.Location = new System.Drawing.Point(33, 45);
1009
+            this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
1010
+            this.label42.Name = "label42";
1011
+            this.label42.Size = new System.Drawing.Size(56, 12);
1012
+            this.label42.TabIndex = 100;
1013
+            this.label42.Text = "ALC MIN";
1014
+            // 
909 1015
             // numericUpDown_AGC4_MIN
910 1016
             // 
911 1017
             this.numericUpDown_AGC4_MIN.DecimalPlaces = 2;
@@ -1053,6 +1159,16 @@
1053 1159
             this.groupBox18.TabStop = false;
1054 1160
             this.groupBox18.Text = "groupBox18";
1055 1161
             // 
1162
+            // label51
1163
+            // 
1164
+            this.label51.AutoSize = true;
1165
+            this.label51.Location = new System.Drawing.Point(116, 36);
1166
+            this.label51.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
1167
+            this.label51.Name = "label51";
1168
+            this.label51.Size = new System.Drawing.Size(37, 12);
1169
+            this.label51.TabIndex = 104;
1170
+            this.label51.Text = "USER";
1171
+            // 
1056 1172
             // label2
1057 1173
             // 
1058 1174
             this.label2.AutoSize = true;
@@ -1063,6 +1179,50 @@
1063 1179
             this.label2.TabIndex = 100;
1064 1180
             this.label2.Text = "DL";
1065 1181
             // 
1182
+            // numericUpDown_DL4_User
1183
+            // 
1184
+            this.numericUpDown_DL4_User.DecimalPlaces = 2;
1185
+            this.numericUpDown_DL4_User.Increment = new decimal(new int[] {
1186
+            5,
1187
+            0,
1188
+            0,
1189
+            65536});
1190
+            this.numericUpDown_DL4_User.Location = new System.Drawing.Point(166, 25);
1191
+            this.numericUpDown_DL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
1192
+            this.numericUpDown_DL4_User.Maximum = new decimal(new int[] {
1193
+            315,
1194
+            0,
1195
+            0,
1196
+            65536});
1197
+            this.numericUpDown_DL4_User.Name = "numericUpDown_DL4_User";
1198
+            this.numericUpDown_DL4_User.Size = new System.Drawing.Size(65, 21);
1199
+            this.numericUpDown_DL4_User.TabIndex = 103;
1200
+            this.numericUpDown_DL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
1201
+            this.numericUpDown_DL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
1202
+            this.numericUpDown_DL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
1203
+            // 
1204
+            // numericUpDown_UL4_User
1205
+            // 
1206
+            this.numericUpDown_UL4_User.DecimalPlaces = 2;
1207
+            this.numericUpDown_UL4_User.Increment = new decimal(new int[] {
1208
+            5,
1209
+            0,
1210
+            0,
1211
+            65536});
1212
+            this.numericUpDown_UL4_User.Location = new System.Drawing.Point(166, 47);
1213
+            this.numericUpDown_UL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
1214
+            this.numericUpDown_UL4_User.Maximum = new decimal(new int[] {
1215
+            315,
1216
+            0,
1217
+            0,
1218
+            65536});
1219
+            this.numericUpDown_UL4_User.Name = "numericUpDown_UL4_User";
1220
+            this.numericUpDown_UL4_User.Size = new System.Drawing.Size(65, 21);
1221
+            this.numericUpDown_UL4_User.TabIndex = 103;
1222
+            this.numericUpDown_UL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
1223
+            this.numericUpDown_UL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
1224
+            this.numericUpDown_UL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
1225
+            // 
1066 1226
             // numericUpDown_ATT_DL4
1067 1227
             // 
1068 1228
             this.numericUpDown_ATT_DL4.DecimalPlaces = 2;
@@ -1409,6 +1569,16 @@
1409 1569
             this.label35.TabIndex = 100;
1410 1570
             this.label35.Text = "ALC MAX";
1411 1571
             // 
1572
+            // label36
1573
+            // 
1574
+            this.label36.AutoSize = true;
1575
+            this.label36.Location = new System.Drawing.Point(25, 41);
1576
+            this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
1577
+            this.label36.Name = "label36";
1578
+            this.label36.Size = new System.Drawing.Size(56, 12);
1579
+            this.label36.TabIndex = 100;
1580
+            this.label36.Text = "ALC MIN";
1581
+            // 
1412 1582
             // numericUpDown_ALC1_MIN
1413 1583
             // 
1414 1584
             this.numericUpDown_ALC1_MIN.DecimalPlaces = 2;
@@ -1489,6 +1659,16 @@
1489 1659
             this.groupBox10.TabStop = false;
1490 1660
             this.groupBox10.Text = "ATTEN1";
1491 1661
             // 
1662
+            // label33
1663
+            // 
1664
+            this.label33.AutoSize = true;
1665
+            this.label33.Location = new System.Drawing.Point(5, 28);
1666
+            this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
1667
+            this.label33.Name = "label33";
1668
+            this.label33.Size = new System.Drawing.Size(20, 12);
1669
+            this.label33.TabIndex = 100;
1670
+            this.label33.Text = "DL";
1671
+            // 
1492 1672
             // label9
1493 1673
             // 
1494 1674
             this.label9.AutoSize = true;
@@ -1499,31 +1679,75 @@
1499 1679
             this.label9.TabIndex = 100;
1500 1680
             this.label9.Text = "USER";
1501 1681
             // 
1502
-            // numericUpDown_ATT_DL1
1682
+            // numericUpDown_DL1_User
1503 1683
             // 
1504
-            this.numericUpDown_ATT_DL1.DecimalPlaces = 2;
1505
-            this.numericUpDown_ATT_DL1.Increment = new decimal(new int[] {
1684
+            this.numericUpDown_DL1_User.DecimalPlaces = 2;
1685
+            this.numericUpDown_DL1_User.Increment = new decimal(new int[] {
1506 1686
             5,
1507 1687
             0,
1508 1688
             0,
1509 1689
             65536});
1510
-            this.numericUpDown_ATT_DL1.Location = new System.Drawing.Point(39, 23);
1511
-            this.numericUpDown_ATT_DL1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
1512
-            this.numericUpDown_ATT_DL1.Maximum = new decimal(new int[] {
1690
+            this.numericUpDown_DL1_User.Location = new System.Drawing.Point(166, 21);
1691
+            this.numericUpDown_DL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
1692
+            this.numericUpDown_DL1_User.Maximum = new decimal(new int[] {
1513 1693
             315,
1514 1694
             0,
1515 1695
             0,
1516 1696
             65536});
1517
-            this.numericUpDown_ATT_DL1.Name = "numericUpDown_ATT_DL1";
1518
-            this.numericUpDown_ATT_DL1.Size = new System.Drawing.Size(65, 21);
1519
-            this.numericUpDown_ATT_DL1.TabIndex = 103;
1520
-            this.numericUpDown_ATT_DL1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
1521
-            this.numericUpDown_ATT_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
1522
-            this.numericUpDown_ATT_DL1.Leave += new System.EventHandler(this.Activi_Change__Setting);
1523
-            // 
1524
-            // numericUpDown_ATT_UL1
1525
-            // 
1526
-            this.numericUpDown_ATT_UL1.DecimalPlaces = 2;
1697
+            this.numericUpDown_DL1_User.Name = "numericUpDown_DL1_User";
1698
+            this.numericUpDown_DL1_User.Size = new System.Drawing.Size(65, 21);
1699
+            this.numericUpDown_DL1_User.TabIndex = 103;
1700
+            this.numericUpDown_DL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
1701
+            this.numericUpDown_DL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
1702
+            this.numericUpDown_DL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
1703
+            // 
1704
+            // numericUpDown_UL1_User
1705
+            // 
1706
+            this.numericUpDown_UL1_User.DecimalPlaces = 2;
1707
+            this.numericUpDown_UL1_User.Increment = new decimal(new int[] {
1708
+            5,
1709
+            0,
1710
+            0,
1711
+            65536});
1712
+            this.numericUpDown_UL1_User.Location = new System.Drawing.Point(166, 45);
1713
+            this.numericUpDown_UL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
1714
+            this.numericUpDown_UL1_User.Maximum = new decimal(new int[] {
1715
+            315,
1716
+            0,
1717
+            0,
1718
+            65536});
1719
+            this.numericUpDown_UL1_User.Name = "numericUpDown_UL1_User";
1720
+            this.numericUpDown_UL1_User.Size = new System.Drawing.Size(65, 21);
1721
+            this.numericUpDown_UL1_User.TabIndex = 103;
1722
+            this.numericUpDown_UL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
1723
+            this.numericUpDown_UL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
1724
+            this.numericUpDown_UL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
1725
+            // 
1726
+            // numericUpDown_ATT_DL1
1727
+            // 
1728
+            this.numericUpDown_ATT_DL1.DecimalPlaces = 2;
1729
+            this.numericUpDown_ATT_DL1.Increment = new decimal(new int[] {
1730
+            5,
1731
+            0,
1732
+            0,
1733
+            65536});
1734
+            this.numericUpDown_ATT_DL1.Location = new System.Drawing.Point(39, 23);
1735
+            this.numericUpDown_ATT_DL1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
1736
+            this.numericUpDown_ATT_DL1.Maximum = new decimal(new int[] {
1737
+            315,
1738
+            0,
1739
+            0,
1740
+            65536});
1741
+            this.numericUpDown_ATT_DL1.Name = "numericUpDown_ATT_DL1";
1742
+            this.numericUpDown_ATT_DL1.Size = new System.Drawing.Size(65, 21);
1743
+            this.numericUpDown_ATT_DL1.TabIndex = 103;
1744
+            this.numericUpDown_ATT_DL1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
1745
+            this.numericUpDown_ATT_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
1746
+            this.numericUpDown_ATT_DL1.Leave += new System.EventHandler(this.Activi_Change__Setting);
1747
+            // 
1748
+            // numericUpDown_ATT_UL1
1749
+            // 
1750
+            this.numericUpDown_ATT_UL1.DecimalPlaces = 2;
1527 1751
             this.numericUpDown_ATT_UL1.Increment = new decimal(new int[] {
1528 1752
             5,
1529 1753
             0,
@@ -1788,6 +2012,16 @@
1788 2012
             this.label37.TabIndex = 100;
1789 2013
             this.label37.Text = "ALC MAX";
1790 2014
             // 
2015
+            // label38
2016
+            // 
2017
+            this.label38.AutoSize = true;
2018
+            this.label38.Location = new System.Drawing.Point(31, 47);
2019
+            this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
2020
+            this.label38.Name = "label38";
2021
+            this.label38.Size = new System.Drawing.Size(56, 12);
2022
+            this.label38.TabIndex = 100;
2023
+            this.label38.Text = "ALC MIN";
2024
+            // 
1791 2025
             // numericUpDown_AGC2_MIN
1792 2026
             // 
1793 2027
             this.numericUpDown_AGC2_MIN.DecimalPlaces = 2;
@@ -1867,15 +2101,59 @@
1867 2101
             this.groupBox15.TabStop = false;
1868 2102
             this.groupBox15.Text = "groupBox15";
1869 2103
             // 
1870
-            // label13
2104
+            // label49
1871 2105
             // 
1872
-            this.label13.AutoSize = true;
1873
-            this.label13.Location = new System.Drawing.Point(5, 364);
1874
-            this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
1875
-            this.label13.Name = "label13";
1876
-            this.label13.Size = new System.Drawing.Size(91, 12);
1877
-            this.label13.TabIndex = 100;
1878
-            this.label13.Text = "TEMP OFFSET";
2106
+            this.label49.AutoSize = true;
2107
+            this.label49.Location = new System.Drawing.Point(116, 36);
2108
+            this.label49.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
2109
+            this.label49.Name = "label49";
2110
+            this.label49.Size = new System.Drawing.Size(37, 12);
2111
+            this.label49.TabIndex = 104;
2112
+            this.label49.Text = "USER";
2113
+            // 
2114
+            // numericUpDown_DL2_User
2115
+            // 
2116
+            this.numericUpDown_DL2_User.DecimalPlaces = 2;
2117
+            this.numericUpDown_DL2_User.Increment = new decimal(new int[] {
2118
+            5,
2119
+            0,
2120
+            0,
2121
+            65536});
2122
+            this.numericUpDown_DL2_User.Location = new System.Drawing.Point(166, 20);
2123
+            this.numericUpDown_DL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2124
+            this.numericUpDown_DL2_User.Maximum = new decimal(new int[] {
2125
+            315,
2126
+            0,
2127
+            0,
2128
+            65536});
2129
+            this.numericUpDown_DL2_User.Name = "numericUpDown_DL2_User";
2130
+            this.numericUpDown_DL2_User.Size = new System.Drawing.Size(65, 21);
2131
+            this.numericUpDown_DL2_User.TabIndex = 103;
2132
+            this.numericUpDown_DL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2133
+            this.numericUpDown_DL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
2134
+            this.numericUpDown_DL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
2135
+            // 
2136
+            // numericUpDown_UL2_User
2137
+            // 
2138
+            this.numericUpDown_UL2_User.DecimalPlaces = 2;
2139
+            this.numericUpDown_UL2_User.Increment = new decimal(new int[] {
2140
+            5,
2141
+            0,
2142
+            0,
2143
+            65536});
2144
+            this.numericUpDown_UL2_User.Location = new System.Drawing.Point(166, 42);
2145
+            this.numericUpDown_UL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2146
+            this.numericUpDown_UL2_User.Maximum = new decimal(new int[] {
2147
+            315,
2148
+            0,
2149
+            0,
2150
+            65536});
2151
+            this.numericUpDown_UL2_User.Name = "numericUpDown_UL2_User";
2152
+            this.numericUpDown_UL2_User.Size = new System.Drawing.Size(65, 21);
2153
+            this.numericUpDown_UL2_User.TabIndex = 103;
2154
+            this.numericUpDown_UL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2155
+            this.numericUpDown_UL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
2156
+            this.numericUpDown_UL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
1879 2157
             // 
1880 2158
             // numericUpDown_ATT_DL2
1881 2159
             // 
@@ -2827,284 +3105,6 @@
2827 3105
             this.timer_JdasMbic.Interval = 500;
2828 3106
             this.timer_JdasMbic.Tick += new System.EventHandler(this.timer1_Tick);
2829 3107
             // 
2830
-            // label42
2831
-            // 
2832
-            this.label42.AutoSize = true;
2833
-            this.label42.Location = new System.Drawing.Point(33, 45);
2834
-            this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
2835
-            this.label42.Name = "label42";
2836
-            this.label42.Size = new System.Drawing.Size(56, 12);
2837
-            this.label42.TabIndex = 100;
2838
-            this.label42.Text = "ALC MIN";
2839
-            // 
2840
-            // label40
2841
-            // 
2842
-            this.label40.AutoSize = true;
2843
-            this.label40.Location = new System.Drawing.Point(33, 45);
2844
-            this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
2845
-            this.label40.Name = "label40";
2846
-            this.label40.Size = new System.Drawing.Size(56, 12);
2847
-            this.label40.TabIndex = 100;
2848
-            this.label40.Text = "ALC MIN";
2849
-            // 
2850
-            // label38
2851
-            // 
2852
-            this.label38.AutoSize = true;
2853
-            this.label38.Location = new System.Drawing.Point(31, 47);
2854
-            this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
2855
-            this.label38.Name = "label38";
2856
-            this.label38.Size = new System.Drawing.Size(56, 12);
2857
-            this.label38.TabIndex = 100;
2858
-            this.label38.Text = "ALC MIN";
2859
-            // 
2860
-            // label36
2861
-            // 
2862
-            this.label36.AutoSize = true;
2863
-            this.label36.Location = new System.Drawing.Point(25, 41);
2864
-            this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
2865
-            this.label36.Name = "label36";
2866
-            this.label36.Size = new System.Drawing.Size(56, 12);
2867
-            this.label36.TabIndex = 100;
2868
-            this.label36.Text = "ALC MIN";
2869
-            // 
2870
-            // numericUpDown_UL1_User
2871
-            // 
2872
-            this.numericUpDown_UL1_User.DecimalPlaces = 2;
2873
-            this.numericUpDown_UL1_User.Increment = new decimal(new int[] {
2874
-            5,
2875
-            0,
2876
-            0,
2877
-            65536});
2878
-            this.numericUpDown_UL1_User.Location = new System.Drawing.Point(166, 45);
2879
-            this.numericUpDown_UL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2880
-            this.numericUpDown_UL1_User.Maximum = new decimal(new int[] {
2881
-            315,
2882
-            0,
2883
-            0,
2884
-            65536});
2885
-            this.numericUpDown_UL1_User.Name = "numericUpDown_UL1_User";
2886
-            this.numericUpDown_UL1_User.Size = new System.Drawing.Size(65, 21);
2887
-            this.numericUpDown_UL1_User.TabIndex = 103;
2888
-            this.numericUpDown_UL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2889
-            this.numericUpDown_UL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
2890
-            this.numericUpDown_UL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
2891
-            // 
2892
-            // numericUpDown_DL1_User
2893
-            // 
2894
-            this.numericUpDown_DL1_User.DecimalPlaces = 2;
2895
-            this.numericUpDown_DL1_User.Increment = new decimal(new int[] {
2896
-            5,
2897
-            0,
2898
-            0,
2899
-            65536});
2900
-            this.numericUpDown_DL1_User.Location = new System.Drawing.Point(166, 21);
2901
-            this.numericUpDown_DL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2902
-            this.numericUpDown_DL1_User.Maximum = new decimal(new int[] {
2903
-            315,
2904
-            0,
2905
-            0,
2906
-            65536});
2907
-            this.numericUpDown_DL1_User.Name = "numericUpDown_DL1_User";
2908
-            this.numericUpDown_DL1_User.Size = new System.Drawing.Size(65, 21);
2909
-            this.numericUpDown_DL1_User.TabIndex = 103;
2910
-            this.numericUpDown_DL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2911
-            this.numericUpDown_DL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
2912
-            this.numericUpDown_DL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
2913
-            // 
2914
-            // numericUpDown_UL2_User
2915
-            // 
2916
-            this.numericUpDown_UL2_User.DecimalPlaces = 2;
2917
-            this.numericUpDown_UL2_User.Increment = new decimal(new int[] {
2918
-            5,
2919
-            0,
2920
-            0,
2921
-            65536});
2922
-            this.numericUpDown_UL2_User.Location = new System.Drawing.Point(166, 42);
2923
-            this.numericUpDown_UL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2924
-            this.numericUpDown_UL2_User.Maximum = new decimal(new int[] {
2925
-            315,
2926
-            0,
2927
-            0,
2928
-            65536});
2929
-            this.numericUpDown_UL2_User.Name = "numericUpDown_UL2_User";
2930
-            this.numericUpDown_UL2_User.Size = new System.Drawing.Size(65, 21);
2931
-            this.numericUpDown_UL2_User.TabIndex = 103;
2932
-            this.numericUpDown_UL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2933
-            this.numericUpDown_UL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
2934
-            this.numericUpDown_UL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
2935
-            // 
2936
-            // numericUpDown_DL2_User
2937
-            // 
2938
-            this.numericUpDown_DL2_User.DecimalPlaces = 2;
2939
-            this.numericUpDown_DL2_User.Increment = new decimal(new int[] {
2940
-            5,
2941
-            0,
2942
-            0,
2943
-            65536});
2944
-            this.numericUpDown_DL2_User.Location = new System.Drawing.Point(166, 20);
2945
-            this.numericUpDown_DL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2946
-            this.numericUpDown_DL2_User.Maximum = new decimal(new int[] {
2947
-            315,
2948
-            0,
2949
-            0,
2950
-            65536});
2951
-            this.numericUpDown_DL2_User.Name = "numericUpDown_DL2_User";
2952
-            this.numericUpDown_DL2_User.Size = new System.Drawing.Size(65, 21);
2953
-            this.numericUpDown_DL2_User.TabIndex = 103;
2954
-            this.numericUpDown_DL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2955
-            this.numericUpDown_DL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
2956
-            this.numericUpDown_DL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
2957
-            // 
2958
-            // numericUpDown_UL3_User
2959
-            // 
2960
-            this.numericUpDown_UL3_User.DecimalPlaces = 2;
2961
-            this.numericUpDown_UL3_User.Increment = new decimal(new int[] {
2962
-            5,
2963
-            0,
2964
-            0,
2965
-            65536});
2966
-            this.numericUpDown_UL3_User.Location = new System.Drawing.Point(166, 42);
2967
-            this.numericUpDown_UL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2968
-            this.numericUpDown_UL3_User.Maximum = new decimal(new int[] {
2969
-            315,
2970
-            0,
2971
-            0,
2972
-            65536});
2973
-            this.numericUpDown_UL3_User.Name = "numericUpDown_UL3_User";
2974
-            this.numericUpDown_UL3_User.Size = new System.Drawing.Size(65, 21);
2975
-            this.numericUpDown_UL3_User.TabIndex = 103;
2976
-            this.numericUpDown_UL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2977
-            this.numericUpDown_UL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
2978
-            this.numericUpDown_UL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
2979
-            // 
2980
-            // numericUpDown_DL3_User
2981
-            // 
2982
-            this.numericUpDown_DL3_User.DecimalPlaces = 2;
2983
-            this.numericUpDown_DL3_User.Increment = new decimal(new int[] {
2984
-            5,
2985
-            0,
2986
-            0,
2987
-            65536});
2988
-            this.numericUpDown_DL3_User.Location = new System.Drawing.Point(166, 20);
2989
-            this.numericUpDown_DL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
2990
-            this.numericUpDown_DL3_User.Maximum = new decimal(new int[] {
2991
-            315,
2992
-            0,
2993
-            0,
2994
-            65536});
2995
-            this.numericUpDown_DL3_User.Name = "numericUpDown_DL3_User";
2996
-            this.numericUpDown_DL3_User.Size = new System.Drawing.Size(65, 21);
2997
-            this.numericUpDown_DL3_User.TabIndex = 103;
2998
-            this.numericUpDown_DL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
2999
-            this.numericUpDown_DL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
3000
-            this.numericUpDown_DL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
3001
-            // 
3002
-            // numericUpDown_UL4_User
3003
-            // 
3004
-            this.numericUpDown_UL4_User.DecimalPlaces = 2;
3005
-            this.numericUpDown_UL4_User.Increment = new decimal(new int[] {
3006
-            5,
3007
-            0,
3008
-            0,
3009
-            65536});
3010
-            this.numericUpDown_UL4_User.Location = new System.Drawing.Point(166, 47);
3011
-            this.numericUpDown_UL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
3012
-            this.numericUpDown_UL4_User.Maximum = new decimal(new int[] {
3013
-            315,
3014
-            0,
3015
-            0,
3016
-            65536});
3017
-            this.numericUpDown_UL4_User.Name = "numericUpDown_UL4_User";
3018
-            this.numericUpDown_UL4_User.Size = new System.Drawing.Size(65, 21);
3019
-            this.numericUpDown_UL4_User.TabIndex = 103;
3020
-            this.numericUpDown_UL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
3021
-            this.numericUpDown_UL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
3022
-            this.numericUpDown_UL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
3023
-            // 
3024
-            // numericUpDown_DL4_User
3025
-            // 
3026
-            this.numericUpDown_DL4_User.DecimalPlaces = 2;
3027
-            this.numericUpDown_DL4_User.Increment = new decimal(new int[] {
3028
-            5,
3029
-            0,
3030
-            0,
3031
-            65536});
3032
-            this.numericUpDown_DL4_User.Location = new System.Drawing.Point(166, 25);
3033
-            this.numericUpDown_DL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
3034
-            this.numericUpDown_DL4_User.Maximum = new decimal(new int[] {
3035
-            315,
3036
-            0,
3037
-            0,
3038
-            65536});
3039
-            this.numericUpDown_DL4_User.Name = "numericUpDown_DL4_User";
3040
-            this.numericUpDown_DL4_User.Size = new System.Drawing.Size(65, 21);
3041
-            this.numericUpDown_DL4_User.TabIndex = 103;
3042
-            this.numericUpDown_DL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
3043
-            this.numericUpDown_DL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
3044
-            this.numericUpDown_DL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
3045
-            // 
3046
-            // label33
3047
-            // 
3048
-            this.label33.AutoSize = true;
3049
-            this.label33.Location = new System.Drawing.Point(5, 28);
3050
-            this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
3051
-            this.label33.Name = "label33";
3052
-            this.label33.Size = new System.Drawing.Size(20, 12);
3053
-            this.label33.TabIndex = 100;
3054
-            this.label33.Text = "DL";
3055
-            // 
3056
-            // label49
3057
-            // 
3058
-            this.label49.AutoSize = true;
3059
-            this.label49.Location = new System.Drawing.Point(116, 36);
3060
-            this.label49.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
3061
-            this.label49.Name = "label49";
3062
-            this.label49.Size = new System.Drawing.Size(37, 12);
3063
-            this.label49.TabIndex = 104;
3064
-            this.label49.Text = "USER";
3065
-            // 
3066
-            // label50
3067
-            // 
3068
-            this.label50.AutoSize = true;
3069
-            this.label50.Location = new System.Drawing.Point(116, 36);
3070
-            this.label50.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
3071
-            this.label50.Name = "label50";
3072
-            this.label50.Size = new System.Drawing.Size(37, 12);
3073
-            this.label50.TabIndex = 104;
3074
-            this.label50.Text = "USER";
3075
-            // 
3076
-            // label51
3077
-            // 
3078
-            this.label51.AutoSize = true;
3079
-            this.label51.Location = new System.Drawing.Point(116, 36);
3080
-            this.label51.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
3081
-            this.label51.Name = "label51";
3082
-            this.label51.Size = new System.Drawing.Size(37, 12);
3083
-            this.label51.TabIndex = 104;
3084
-            this.label51.Text = "USER";
3085
-            // 
3086
-            // numericUpDown_TEMP_User
3087
-            // 
3088
-            this.numericUpDown_TEMP_User.DecimalPlaces = 2;
3089
-            this.numericUpDown_TEMP_User.Increment = new decimal(new int[] {
3090
-            5,
3091
-            0,
3092
-            0,
3093
-            65536});
3094
-            this.numericUpDown_TEMP_User.Location = new System.Drawing.Point(100, 361);
3095
-            this.numericUpDown_TEMP_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
3096
-            this.numericUpDown_TEMP_User.Maximum = new decimal(new int[] {
3097
-            315,
3098
-            0,
3099
-            0,
3100
-            65536});
3101
-            this.numericUpDown_TEMP_User.Name = "numericUpDown_TEMP_User";
3102
-            this.numericUpDown_TEMP_User.Size = new System.Drawing.Size(109, 21);
3103
-            this.numericUpDown_TEMP_User.TabIndex = 103;
3104
-            this.numericUpDown_TEMP_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
3105
-            this.numericUpDown_TEMP_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
3106
-            this.numericUpDown_TEMP_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
3107
-            // 
3108 3108
             // JdasMbic
3109 3109
             // 
3110 3110
             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
@@ -3129,6 +3129,8 @@
3129 3129
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC3_MAX)).EndInit();
3130 3130
             this.groupBox17.ResumeLayout(false);
3131 3131
             this.groupBox17.PerformLayout();
3132
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).EndInit();
3133
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).EndInit();
3132 3134
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL3)).EndInit();
3133 3135
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL3)).EndInit();
3134 3136
             this.groupBox16.ResumeLayout(false);
@@ -3143,6 +3145,7 @@
3143 3145
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_SelfTest3_OFF)).EndInit();
3144 3146
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_OFF)).EndInit();
3145 3147
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_OFF)).EndInit();
3148
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_TEMP_User)).EndInit();
3146 3149
             this.groupBox2.ResumeLayout(false);
3147 3150
             this.groupBox2.PerformLayout();
3148 3151
             this.groupBox22.ResumeLayout(false);
@@ -3153,6 +3156,8 @@
3153 3156
             this.groupBox19.PerformLayout();
3154 3157
             this.groupBox18.ResumeLayout(false);
3155 3158
             this.groupBox18.PerformLayout();
3159
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).EndInit();
3160
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).EndInit();
3156 3161
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL4)).EndInit();
3157 3162
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL4)).EndInit();
3158 3163
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_SelfTest4_ON)).EndInit();
@@ -3175,6 +3180,8 @@
3175 3180
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC1_MAX)).EndInit();
3176 3181
             this.groupBox10.ResumeLayout(false);
3177 3182
             this.groupBox10.PerformLayout();
3183
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).EndInit();
3184
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).EndInit();
3178 3185
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL1)).EndInit();
3179 3186
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL1)).EndInit();
3180 3187
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_ON)).EndInit();
@@ -3195,6 +3202,8 @@
3195 3202
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC2_MAX)).EndInit();
3196 3203
             this.groupBox15.ResumeLayout(false);
3197 3204
             this.groupBox15.PerformLayout();
3205
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).EndInit();
3206
+            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).EndInit();
3198 3207
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL2)).EndInit();
3199 3208
             ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL2)).EndInit();
3200 3209
             this.groupBox14.ResumeLayout(false);
@@ -3229,15 +3238,6 @@
3229 3238
             this.groupBox3.ResumeLayout(false);
3230 3239
             this.groupBox3.PerformLayout();
3231 3240
             ((System.ComponentModel.ISupportInitialize)(this.dataGridView_TableSetting)).EndInit();
3232
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).EndInit();
3233
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).EndInit();
3234
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).EndInit();
3235
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).EndInit();
3236
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).EndInit();
3237
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).EndInit();
3238
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).EndInit();
3239
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).EndInit();
3240
-            ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_TEMP_User)).EndInit();
3241 3241
             this.ResumeLayout(false);
3242 3242
 
3243 3243
         }

+ 3 - 0
Jdas_Mbic/Main.cs

@@ -304,6 +304,7 @@ namespace Jdas_Mbic
304 304
         private void button_PortOpen_Click(object sender, EventArgs e)
305 305
         {
306 306
             bool ret = false;
307
+            
307 308
             ret = Serial_connectiondisable(serial.Serial_PortOpen(ref button_PortOpen, ref comboBox_Port));
308 309
             if (ret == false && timer_JdasMbic.Enabled == false)
309 310
             {
@@ -317,6 +318,8 @@ namespace Jdas_Mbic
317 318
             {
318 319
                 /*NOP*/
319 320
             }
321
+            
322
+            
320 323
             serial.Serial_Main_Form_Get(this);
321 324
         }
322 325
 

二進制
Jdas_Mbic/bin/Debug/Jdas_Mbic.exe


二進制
Jdas_Mbic/bin/Debug/Jdas_Mbic.pdb


二進制
Jdas_Mbic/bin/Debug/Jdas_MbicNEw.exe


二進制
Jdas_Mbic/obj/Debug/Jdas_Mbic.csproj.GenerateResource.cache


二進制
Jdas_Mbic/obj/Debug/Jdas_Mbic.exe


二進制
Jdas_Mbic/obj/Debug/Jdas_Mbic.pdb