-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPropertyDlg.cs
2319 lines (2247 loc) · 84.1 KB
/
PropertyDlg.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// --------------------------------------------------------------------------
// Gurux Ltd
//
//
//
// Filename: $HeadURL: svn://utopia/projects/GXDeviceEditor/Development/AddIns/Modbus/PropertyDlg.cs $
//
// Version: $Revision: 870 $,
// $Date: 2009-09-29 17:21:48 +0300 (ti, 29 syys 2009) $
// $Author: airija $
//
// Copyright (c) Gurux Ltd
//
//---------------------------------------------------------------------------
//
// DESCRIPTION
//
// This file is a part of Gurux Device Framework.
//
// Gurux Device Framework is Open Source software; you can redistribute it
// and/or modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; version 2 of the License.
// Gurux Device Framework is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU General Public License for more details.
//
// This code is licensed under the GNU General Public License v2.
// Full text may be retrieved at http://www.gnu.org/licenses/gpl-2.0.txt
//---------------------------------------------------------------------------
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using GuruxDeviceEditor;
namespace Modbus_RTU
{
/// <summary>
/// Summary description for PropertyDlg.
/// </summary>
public class PropertyDlg : System.Windows.Forms.Form
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Button OKBtn;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage CommonTab;
private System.Windows.Forms.TabPage WriteTab;
private System.Windows.Forms.TabPage ReadTab;
private System.Windows.Forms.GroupBox GeneralGB;
private System.Windows.Forms.Label NameLBL;
private System.Windows.Forms.TextBox NameTB;
private System.Windows.Forms.Label CategoryLBL;
private System.Windows.Forms.Label TypeLBL;
private System.Windows.Forms.TextBox UnitTB;
private System.Windows.Forms.Label UnitLBL;
private System.Windows.Forms.ComboBox CategoryDD;
private System.Windows.Forms.ComboBox TypeDD;
private System.Windows.Forms.GroupBox ReadResendingGB;
private System.Windows.Forms.GroupBox ReadWaitTimeGB;
private System.Windows.Forms.GroupBox ReadErrorStopGB;
private System.Windows.Forms.RadioButton ReadSendDontWaitRB;
private System.Windows.Forms.Label WaitMillisecondsLBL;
private System.Windows.Forms.TextBox ReadWaitTB;
private System.Windows.Forms.Label ReadWaitLBL;
private System.Windows.Forms.Label ReadResendTimesTB;
private System.Windows.Forms.TextBox ReadResendTB;
private System.Windows.Forms.Label ReadResendLBL;
private System.Windows.Forms.GroupBox WriteErrorStopGB;
private System.Windows.Forms.GroupBox WriteWaitTimeGB;
private System.Windows.Forms.GroupBox WriteResendingGB;
private System.Windows.Forms.RadioButton WriteSendDontWaitRB;
private System.Windows.Forms.Label WriteResendTimeTB;
private System.Windows.Forms.TextBox WriteResendTB;
private System.Windows.Forms.Label WriteResendLBL;
private System.Windows.Forms.RadioButton ReadUseProtocolResendRB;
private System.Windows.Forms.RadioButton ReadSendWaitRB;
private System.Windows.Forms.RadioButton ReadResendWaitRB;
private System.Windows.Forms.RadioButton ReadUseProtocolWaitRB;
private System.Windows.Forms.RadioButton ReadUseSpecifiedRB;
private System.Windows.Forms.RadioButton WriteUseSpecifiedRB;
private System.Windows.Forms.RadioButton WriteUseProtocolWaitRB;
private System.Windows.Forms.Label WriteWaitMillisecondsLBL;
private System.Windows.Forms.TextBox WriteWaitTB;
private System.Windows.Forms.Label WriteWaitLBL;
private System.Windows.Forms.RadioButton WriteResendWaitRB;
private System.Windows.Forms.RadioButton WriteSendWaitRB;
private System.Windows.Forms.RadioButton WriteUseProtocolResendRB;
private bool m_edit = false;
private GXDevice m_GXDevice1 = null;
private System.Windows.Forms.CheckBox ReadErrorStopCB;
private System.Windows.Forms.CheckBox WriteErrorStopCB;
private GXProperty m_GXProperty1 = null;
private System.Windows.Forms.TabPage DescriptionTab;
private System.Windows.Forms.TextBox DescriptionTB;
GXWndState state = new GXWndState();
private System.Windows.Forms.ComboBox AccessModeCB;
private System.Windows.Forms.Label AccessModeLbl;
private System.Windows.Forms.Label AccessTypeLbl;
private System.Windows.Forms.ComboBox AccessTypeCB;
private System.Windows.Forms.CheckBox HiddenCB;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox ExpirationReadTB;
private System.Windows.Forms.RadioButton ExpirationReadRB;
private System.Windows.Forms.RadioButton DeviceExpirationReadRB;
private System.Windows.Forms.RadioButton NoExpirationReadRB;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox ExpirationWriteTB;
private System.Windows.Forms.RadioButton ExpirationWriteRB;
private System.Windows.Forms.RadioButton DeviceExpirationWriteRB;
private System.Windows.Forms.RadioButton NoExpirationWriteRB;
private System.Windows.Forms.TextBox AddressTB;
private System.Windows.Forms.Label AddressLbl;
private System.Windows.Forms.ComboBox IOTB;
private System.Windows.Forms.TabPage GraphTab;
private System.Windows.Forms.GroupBox GraphGb;
private System.Windows.Forms.CheckBox ShowGraphCb;
private System.Windows.Forms.Label IOLBL;
private System.Windows.Forms.RadioButton ReadOnceExpirationReadRB;
private System.Windows.Forms.TabPage Common2Tab;
private System.Windows.Forms.CheckBox HexCb;
private System.Windows.Forms.GroupBox StaticValueGB;
private System.Windows.Forms.GroupBox DefaultValueGB;
private System.Windows.Forms.Button DefaultValueFormulaBtn;
private System.Windows.Forms.CheckBox DefaultValueFormulaCB;
private System.Windows.Forms.CheckBox DefaultValueCB;
private System.Windows.Forms.TextBox DefaultValueTB;
private System.Windows.Forms.GroupBox MinimumValueGB;
private System.Windows.Forms.Button MinimumValueFormulaBtn;
private System.Windows.Forms.TextBox MinimumTB;
private System.Windows.Forms.CheckBox MinimumValueFormulaCB;
private System.Windows.Forms.CheckBox MinimumValyeCB;
private System.Windows.Forms.GroupBox MaximumValueGB;
private System.Windows.Forms.TextBox MaximumTB;
private System.Windows.Forms.Button MaximumValueFormulaBtn;
private System.Windows.Forms.CheckBox MaximumValueFormulaCB;
private System.Windows.Forms.CheckBox MaximumValueCB;
private System.Windows.Forms.GroupBox ActualValueGB;
private System.Windows.Forms.GroupBox UIFormulaGB;
private System.Windows.Forms.Button UIFormulaBtn;
private System.Windows.Forms.CheckBox UIFormulaCB;
private System.Windows.Forms.TextBox UIValueFormulaTB;
private System.Windows.Forms.GroupBox DeviceFormulaGB;
private System.Windows.Forms.CheckBox DeviceFormulaCB;
private System.Windows.Forms.Button DeviceFormulaBtn;
private System.Windows.Forms.TextBox DeviceValueFormulaTB;
private SortedList m_Types = new SortedList();
public PropertyDlg(GXDevice GXDevice1, GXProperty GXProperty1, bool Edit)
{
m_GXProperty1 = GXProperty1;
m_GXDevice1 = GXDevice1;
m_edit = Edit;
m_Types = CreateTypeTable();
//
// Required for Windows Form Designer support
//
InitializeComponent();
PropertyDlgBase DlgBase = new PropertyDlgBase();
DlgBase.SortTabOrder(GeneralGB);
DlgBase.SortTabOrder(Common2Tab);
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(PropertyDlg));
this.CancelBtn = new System.Windows.Forms.Button();
this.OKBtn = new System.Windows.Forms.Button();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.CommonTab = new System.Windows.Forms.TabPage();
this.GeneralGB = new System.Windows.Forms.GroupBox();
this.AddressTB = new System.Windows.Forms.TextBox();
this.AddressLbl = new System.Windows.Forms.Label();
this.IOTB = new System.Windows.Forms.ComboBox();
this.IOLBL = new System.Windows.Forms.Label();
this.AccessTypeCB = new System.Windows.Forms.ComboBox();
this.AccessTypeLbl = new System.Windows.Forms.Label();
this.AccessModeCB = new System.Windows.Forms.ComboBox();
this.AccessModeLbl = new System.Windows.Forms.Label();
this.HiddenCB = new System.Windows.Forms.CheckBox();
this.TypeDD = new System.Windows.Forms.ComboBox();
this.CategoryDD = new System.Windows.Forms.ComboBox();
this.UnitTB = new System.Windows.Forms.TextBox();
this.UnitLBL = new System.Windows.Forms.Label();
this.TypeLBL = new System.Windows.Forms.Label();
this.CategoryLBL = new System.Windows.Forms.Label();
this.NameTB = new System.Windows.Forms.TextBox();
this.NameLBL = new System.Windows.Forms.Label();
this.ReadTab = new System.Windows.Forms.TabPage();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.ReadOnceExpirationReadRB = new System.Windows.Forms.RadioButton();
this.label1 = new System.Windows.Forms.Label();
this.ExpirationReadTB = new System.Windows.Forms.TextBox();
this.ExpirationReadRB = new System.Windows.Forms.RadioButton();
this.DeviceExpirationReadRB = new System.Windows.Forms.RadioButton();
this.NoExpirationReadRB = new System.Windows.Forms.RadioButton();
this.ReadErrorStopGB = new System.Windows.Forms.GroupBox();
this.ReadErrorStopCB = new System.Windows.Forms.CheckBox();
this.ReadWaitTimeGB = new System.Windows.Forms.GroupBox();
this.ReadUseSpecifiedRB = new System.Windows.Forms.RadioButton();
this.ReadUseProtocolWaitRB = new System.Windows.Forms.RadioButton();
this.WaitMillisecondsLBL = new System.Windows.Forms.Label();
this.ReadWaitTB = new System.Windows.Forms.TextBox();
this.ReadWaitLBL = new System.Windows.Forms.Label();
this.ReadResendingGB = new System.Windows.Forms.GroupBox();
this.ReadResendTimesTB = new System.Windows.Forms.Label();
this.ReadResendTB = new System.Windows.Forms.TextBox();
this.ReadResendLBL = new System.Windows.Forms.Label();
this.ReadResendWaitRB = new System.Windows.Forms.RadioButton();
this.ReadSendWaitRB = new System.Windows.Forms.RadioButton();
this.ReadSendDontWaitRB = new System.Windows.Forms.RadioButton();
this.ReadUseProtocolResendRB = new System.Windows.Forms.RadioButton();
this.WriteTab = new System.Windows.Forms.TabPage();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.ExpirationWriteTB = new System.Windows.Forms.TextBox();
this.ExpirationWriteRB = new System.Windows.Forms.RadioButton();
this.DeviceExpirationWriteRB = new System.Windows.Forms.RadioButton();
this.NoExpirationWriteRB = new System.Windows.Forms.RadioButton();
this.WriteErrorStopGB = new System.Windows.Forms.GroupBox();
this.WriteErrorStopCB = new System.Windows.Forms.CheckBox();
this.WriteWaitTimeGB = new System.Windows.Forms.GroupBox();
this.WriteUseSpecifiedRB = new System.Windows.Forms.RadioButton();
this.WriteUseProtocolWaitRB = new System.Windows.Forms.RadioButton();
this.WriteWaitMillisecondsLBL = new System.Windows.Forms.Label();
this.WriteWaitTB = new System.Windows.Forms.TextBox();
this.WriteWaitLBL = new System.Windows.Forms.Label();
this.WriteResendingGB = new System.Windows.Forms.GroupBox();
this.WriteResendTimeTB = new System.Windows.Forms.Label();
this.WriteResendTB = new System.Windows.Forms.TextBox();
this.WriteResendLBL = new System.Windows.Forms.Label();
this.WriteResendWaitRB = new System.Windows.Forms.RadioButton();
this.WriteSendWaitRB = new System.Windows.Forms.RadioButton();
this.WriteSendDontWaitRB = new System.Windows.Forms.RadioButton();
this.WriteUseProtocolResendRB = new System.Windows.Forms.RadioButton();
this.DescriptionTab = new System.Windows.Forms.TabPage();
this.DescriptionTB = new System.Windows.Forms.TextBox();
this.GraphTab = new System.Windows.Forms.TabPage();
this.GraphGb = new System.Windows.Forms.GroupBox();
this.ShowGraphCb = new System.Windows.Forms.CheckBox();
this.Common2Tab = new System.Windows.Forms.TabPage();
this.HexCb = new System.Windows.Forms.CheckBox();
this.StaticValueGB = new System.Windows.Forms.GroupBox();
this.DefaultValueGB = new System.Windows.Forms.GroupBox();
this.DefaultValueFormulaBtn = new System.Windows.Forms.Button();
this.DefaultValueFormulaCB = new System.Windows.Forms.CheckBox();
this.DefaultValueCB = new System.Windows.Forms.CheckBox();
this.DefaultValueTB = new System.Windows.Forms.TextBox();
this.MinimumValueGB = new System.Windows.Forms.GroupBox();
this.MinimumValueFormulaBtn = new System.Windows.Forms.Button();
this.MinimumTB = new System.Windows.Forms.TextBox();
this.MinimumValueFormulaCB = new System.Windows.Forms.CheckBox();
this.MinimumValyeCB = new System.Windows.Forms.CheckBox();
this.MaximumValueGB = new System.Windows.Forms.GroupBox();
this.MaximumTB = new System.Windows.Forms.TextBox();
this.MaximumValueFormulaBtn = new System.Windows.Forms.Button();
this.MaximumValueFormulaCB = new System.Windows.Forms.CheckBox();
this.MaximumValueCB = new System.Windows.Forms.CheckBox();
this.ActualValueGB = new System.Windows.Forms.GroupBox();
this.UIFormulaGB = new System.Windows.Forms.GroupBox();
this.UIFormulaBtn = new System.Windows.Forms.Button();
this.UIFormulaCB = new System.Windows.Forms.CheckBox();
this.UIValueFormulaTB = new System.Windows.Forms.TextBox();
this.DeviceFormulaGB = new System.Windows.Forms.GroupBox();
this.DeviceFormulaCB = new System.Windows.Forms.CheckBox();
this.DeviceFormulaBtn = new System.Windows.Forms.Button();
this.DeviceValueFormulaTB = new System.Windows.Forms.TextBox();
this.tabControl1.SuspendLayout();
this.CommonTab.SuspendLayout();
this.GeneralGB.SuspendLayout();
this.ReadTab.SuspendLayout();
this.groupBox1.SuspendLayout();
this.ReadErrorStopGB.SuspendLayout();
this.ReadWaitTimeGB.SuspendLayout();
this.ReadResendingGB.SuspendLayout();
this.WriteTab.SuspendLayout();
this.groupBox2.SuspendLayout();
this.WriteErrorStopGB.SuspendLayout();
this.WriteWaitTimeGB.SuspendLayout();
this.WriteResendingGB.SuspendLayout();
this.DescriptionTab.SuspendLayout();
this.GraphTab.SuspendLayout();
this.GraphGb.SuspendLayout();
this.Common2Tab.SuspendLayout();
this.StaticValueGB.SuspendLayout();
this.DefaultValueGB.SuspendLayout();
this.MinimumValueGB.SuspendLayout();
this.MaximumValueGB.SuspendLayout();
this.ActualValueGB.SuspendLayout();
this.UIFormulaGB.SuspendLayout();
this.DeviceFormulaGB.SuspendLayout();
this.SuspendLayout();
//
// CancelBtn
//
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelBtn.Location = new System.Drawing.Point(328, 536);
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.Size = new System.Drawing.Size(72, 24);
this.CancelBtn.TabIndex = 21;
this.CancelBtn.Text = "Cancel";
this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click);
//
// OKBtn
//
this.OKBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
this.OKBtn.Location = new System.Drawing.Point(240, 536);
this.OKBtn.Name = "OKBtn";
this.OKBtn.Size = new System.Drawing.Size(72, 24);
this.OKBtn.TabIndex = 20;
this.OKBtn.Text = "OK";
this.OKBtn.Click += new System.EventHandler(this.OKBtn_Click);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.CommonTab);
this.tabControl1.Controls.Add(this.Common2Tab);
this.tabControl1.Controls.Add(this.ReadTab);
this.tabControl1.Controls.Add(this.WriteTab);
this.tabControl1.Controls.Add(this.DescriptionTab);
this.tabControl1.Controls.Add(this.GraphTab);
this.tabControl1.Location = new System.Drawing.Point(8, 8);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(392, 520);
this.tabControl1.TabIndex = 0;
//
// CommonTab
//
this.CommonTab.Controls.Add(this.GeneralGB);
this.CommonTab.Location = new System.Drawing.Point(4, 22);
this.CommonTab.Name = "CommonTab";
this.CommonTab.Size = new System.Drawing.Size(384, 494);
this.CommonTab.TabIndex = 0;
this.CommonTab.Text = "Common";
//
// GeneralGB
//
this.GeneralGB.Controls.Add(this.AddressTB);
this.GeneralGB.Controls.Add(this.AddressLbl);
this.GeneralGB.Controls.Add(this.IOTB);
this.GeneralGB.Controls.Add(this.IOLBL);
this.GeneralGB.Controls.Add(this.AccessTypeCB);
this.GeneralGB.Controls.Add(this.AccessTypeLbl);
this.GeneralGB.Controls.Add(this.AccessModeCB);
this.GeneralGB.Controls.Add(this.AccessModeLbl);
this.GeneralGB.Controls.Add(this.HiddenCB);
this.GeneralGB.Controls.Add(this.TypeDD);
this.GeneralGB.Controls.Add(this.CategoryDD);
this.GeneralGB.Controls.Add(this.UnitTB);
this.GeneralGB.Controls.Add(this.UnitLBL);
this.GeneralGB.Controls.Add(this.TypeLBL);
this.GeneralGB.Controls.Add(this.CategoryLBL);
this.GeneralGB.Controls.Add(this.NameTB);
this.GeneralGB.Controls.Add(this.NameLBL);
this.GeneralGB.Location = new System.Drawing.Point(8, 8);
this.GeneralGB.Name = "GeneralGB";
this.GeneralGB.Size = new System.Drawing.Size(360, 376);
this.GeneralGB.TabIndex = 0;
this.GeneralGB.TabStop = false;
this.GeneralGB.Text = "General";
this.GeneralGB.Enter += new System.EventHandler(this.GeneralGB_Enter);
//
// AddressTB
//
this.AddressTB.Location = new System.Drawing.Point(152, 88);
this.AddressTB.Name = "AddressTB";
this.AddressTB.Size = new System.Drawing.Size(160, 20);
this.AddressTB.TabIndex = 3;
this.AddressTB.Text = "";
//
// AddressLbl
//
this.AddressLbl.Location = new System.Drawing.Point(48, 88);
this.AddressLbl.Name = "AddressLbl";
this.AddressLbl.Size = new System.Drawing.Size(96, 24);
this.AddressLbl.TabIndex = 20;
this.AddressLbl.Text = "Address (Hex):";
//
// IOTB
//
this.IOTB.Cursor = System.Windows.Forms.Cursors.Default;
this.IOTB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.IOTB.Location = new System.Drawing.Point(152, 64);
this.IOTB.Name = "IOTB";
this.IOTB.Size = new System.Drawing.Size(160, 21);
this.IOTB.TabIndex = 2;
this.IOTB.SelectedIndexChanged += new System.EventHandler(this.IOTB_SelectedIndexChanged);
//
// IOLBL
//
this.IOLBL.Location = new System.Drawing.Point(88, 64);
this.IOLBL.Name = "IOLBL";
this.IOLBL.Size = new System.Drawing.Size(56, 24);
this.IOLBL.TabIndex = 19;
this.IOLBL.Text = "I/O:";
//
// AccessTypeCB
//
this.AccessTypeCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.AccessTypeCB.Location = new System.Drawing.Point(152, 184);
this.AccessTypeCB.Name = "AccessTypeCB";
this.AccessTypeCB.Size = new System.Drawing.Size(160, 21);
this.AccessTypeCB.TabIndex = 8;
//
// AccessTypeLbl
//
this.AccessTypeLbl.Location = new System.Drawing.Point(48, 184);
this.AccessTypeLbl.Name = "AccessTypeLbl";
this.AccessTypeLbl.Size = new System.Drawing.Size(96, 24);
this.AccessTypeLbl.TabIndex = 12;
this.AccessTypeLbl.Text = "Access Type:";
//
// AccessModeCB
//
this.AccessModeCB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.AccessModeCB.Location = new System.Drawing.Point(152, 160);
this.AccessModeCB.Name = "AccessModeCB";
this.AccessModeCB.Size = new System.Drawing.Size(160, 21);
this.AccessModeCB.TabIndex = 7;
//
// AccessModeLbl
//
this.AccessModeLbl.Location = new System.Drawing.Point(48, 160);
this.AccessModeLbl.Name = "AccessModeLbl";
this.AccessModeLbl.Size = new System.Drawing.Size(96, 24);
this.AccessModeLbl.TabIndex = 10;
this.AccessModeLbl.Text = "Access Mode:";
//
// HiddenCB
//
this.HiddenCB.Location = new System.Drawing.Point(152, 208);
this.HiddenCB.Name = "HiddenCB";
this.HiddenCB.Size = new System.Drawing.Size(64, 16);
this.HiddenCB.TabIndex = 9;
this.HiddenCB.Text = "Hidden";
//
// TypeDD
//
this.TypeDD.Cursor = System.Windows.Forms.Cursors.Default;
this.TypeDD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.TypeDD.Location = new System.Drawing.Point(152, 112);
this.TypeDD.Name = "TypeDD";
this.TypeDD.Size = new System.Drawing.Size(160, 21);
this.TypeDD.TabIndex = 4;
this.TypeDD.SelectedIndexChanged += new System.EventHandler(this.TypeDD_SelectedIndexChanged);
//
// CategoryDD
//
this.CategoryDD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CategoryDD.Location = new System.Drawing.Point(152, 40);
this.CategoryDD.Name = "CategoryDD";
this.CategoryDD.Size = new System.Drawing.Size(160, 21);
this.CategoryDD.TabIndex = 1;
//
// UnitTB
//
this.UnitTB.Location = new System.Drawing.Point(152, 136);
this.UnitTB.Name = "UnitTB";
this.UnitTB.Size = new System.Drawing.Size(160, 20);
this.UnitTB.TabIndex = 6;
this.UnitTB.Text = "";
//
// UnitLBL
//
this.UnitLBL.Location = new System.Drawing.Point(88, 136);
this.UnitLBL.Name = "UnitLBL";
this.UnitLBL.Size = new System.Drawing.Size(56, 16);
this.UnitLBL.TabIndex = 6;
this.UnitLBL.Text = "Unit:";
//
// TypeLBL
//
this.TypeLBL.Location = new System.Drawing.Point(88, 112);
this.TypeLBL.Name = "TypeLBL";
this.TypeLBL.Size = new System.Drawing.Size(56, 24);
this.TypeLBL.TabIndex = 4;
this.TypeLBL.Text = "Type:";
//
// CategoryLBL
//
this.CategoryLBL.Location = new System.Drawing.Point(72, 40);
this.CategoryLBL.Name = "CategoryLBL";
this.CategoryLBL.Size = new System.Drawing.Size(72, 24);
this.CategoryLBL.TabIndex = 2;
this.CategoryLBL.Text = "Category:";
//
// NameTB
//
this.NameTB.Location = new System.Drawing.Point(152, 16);
this.NameTB.Name = "NameTB";
this.NameTB.Size = new System.Drawing.Size(160, 20);
this.NameTB.TabIndex = 0;
this.NameTB.Text = "";
//
// NameLBL
//
this.NameLBL.Location = new System.Drawing.Point(88, 16);
this.NameLBL.Name = "NameLBL";
this.NameLBL.Size = new System.Drawing.Size(56, 24);
this.NameLBL.TabIndex = 0;
this.NameLBL.Text = "Name:";
//
// ReadTab
//
this.ReadTab.Controls.Add(this.groupBox1);
this.ReadTab.Controls.Add(this.ReadErrorStopGB);
this.ReadTab.Controls.Add(this.ReadWaitTimeGB);
this.ReadTab.Controls.Add(this.ReadResendingGB);
this.ReadTab.Location = new System.Drawing.Point(4, 22);
this.ReadTab.Name = "ReadTab";
this.ReadTab.Size = new System.Drawing.Size(384, 414);
this.ReadTab.TabIndex = 2;
this.ReadTab.Text = "Reading";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.ReadOnceExpirationReadRB);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.ExpirationReadTB);
this.groupBox1.Controls.Add(this.ExpirationReadRB);
this.groupBox1.Controls.Add(this.DeviceExpirationReadRB);
this.groupBox1.Controls.Add(this.NoExpirationReadRB);
this.groupBox1.Location = new System.Drawing.Point(8, 288);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(360, 112);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Expiration";
//
// ReadOnceExpirationReadRB
//
this.ReadOnceExpirationReadRB.Location = new System.Drawing.Point(80, 88);
this.ReadOnceExpirationReadRB.Name = "ReadOnceExpirationReadRB";
this.ReadOnceExpirationReadRB.Size = new System.Drawing.Size(200, 16);
this.ReadOnceExpirationReadRB.TabIndex = 16;
this.ReadOnceExpirationReadRB.Text = "Read Once";
//
// label1
//
this.label1.Location = new System.Drawing.Point(280, 64);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(56, 16);
this.label1.TabIndex = 13;
this.label1.Text = "ms.";
//
// ExpirationReadTB
//
this.ExpirationReadTB.Location = new System.Drawing.Point(208, 64);
this.ExpirationReadTB.Name = "ExpirationReadTB";
this.ExpirationReadTB.ReadOnly = true;
this.ExpirationReadTB.Size = new System.Drawing.Size(64, 20);
this.ExpirationReadTB.TabIndex = 13;
this.ExpirationReadTB.Text = "";
//
// ExpirationReadRB
//
this.ExpirationReadRB.Location = new System.Drawing.Point(80, 64);
this.ExpirationReadRB.Name = "ExpirationReadRB";
this.ExpirationReadRB.Size = new System.Drawing.Size(112, 16);
this.ExpirationReadRB.TabIndex = 12;
this.ExpirationReadRB.Text = "Expiration Time";
this.ExpirationReadRB.CheckedChanged += new System.EventHandler(this.ExpirationReadRB_CheckedChanged);
//
// DeviceExpirationReadRB
//
this.DeviceExpirationReadRB.Location = new System.Drawing.Point(80, 40);
this.DeviceExpirationReadRB.Name = "DeviceExpirationReadRB";
this.DeviceExpirationReadRB.Size = new System.Drawing.Size(200, 16);
this.DeviceExpirationReadRB.TabIndex = 11;
this.DeviceExpirationReadRB.Text = "Use Device Expiration";
//
// NoExpirationReadRB
//
this.NoExpirationReadRB.Location = new System.Drawing.Point(80, 16);
this.NoExpirationReadRB.Name = "NoExpirationReadRB";
this.NoExpirationReadRB.Size = new System.Drawing.Size(200, 16);
this.NoExpirationReadRB.TabIndex = 10;
this.NoExpirationReadRB.Text = "Don\'t use Expiration";
//
// ReadErrorStopGB
//
this.ReadErrorStopGB.Controls.Add(this.ReadErrorStopCB);
this.ReadErrorStopGB.Location = new System.Drawing.Point(8, 240);
this.ReadErrorStopGB.Name = "ReadErrorStopGB";
this.ReadErrorStopGB.Size = new System.Drawing.Size(360, 48);
this.ReadErrorStopGB.TabIndex = 2;
this.ReadErrorStopGB.TabStop = false;
this.ReadErrorStopGB.Text = "Error stop";
//
// ReadErrorStopCB
//
this.ReadErrorStopCB.Checked = true;
this.ReadErrorStopCB.CheckState = System.Windows.Forms.CheckState.Checked;
this.ReadErrorStopCB.Location = new System.Drawing.Point(96, 16);
this.ReadErrorStopCB.Name = "ReadErrorStopCB";
this.ReadErrorStopCB.Size = new System.Drawing.Size(200, 24);
this.ReadErrorStopCB.TabIndex = 8;
this.ReadErrorStopCB.Text = "Stop progress on error.";
//
// ReadWaitTimeGB
//
this.ReadWaitTimeGB.Controls.Add(this.ReadUseSpecifiedRB);
this.ReadWaitTimeGB.Controls.Add(this.ReadUseProtocolWaitRB);
this.ReadWaitTimeGB.Controls.Add(this.WaitMillisecondsLBL);
this.ReadWaitTimeGB.Controls.Add(this.ReadWaitTB);
this.ReadWaitTimeGB.Controls.Add(this.ReadWaitLBL);
this.ReadWaitTimeGB.Location = new System.Drawing.Point(8, 144);
this.ReadWaitTimeGB.Name = "ReadWaitTimeGB";
this.ReadWaitTimeGB.Size = new System.Drawing.Size(360, 96);
this.ReadWaitTimeGB.TabIndex = 1;
this.ReadWaitTimeGB.TabStop = false;
this.ReadWaitTimeGB.Text = "Wait time";
//
// ReadUseSpecifiedRB
//
this.ReadUseSpecifiedRB.Location = new System.Drawing.Point(96, 40);
this.ReadUseSpecifiedRB.Name = "ReadUseSpecifiedRB";
this.ReadUseSpecifiedRB.Size = new System.Drawing.Size(200, 16);
this.ReadUseSpecifiedRB.TabIndex = 6;
this.ReadUseSpecifiedRB.Text = "Use specified value";
this.ReadUseSpecifiedRB.CheckedChanged += new System.EventHandler(this.ReadUseSpecifiedRB_CheckedChanged);
//
// ReadUseProtocolWaitRB
//
this.ReadUseProtocolWaitRB.Checked = true;
this.ReadUseProtocolWaitRB.Location = new System.Drawing.Point(96, 16);
this.ReadUseProtocolWaitRB.Name = "ReadUseProtocolWaitRB";
this.ReadUseProtocolWaitRB.Size = new System.Drawing.Size(200, 16);
this.ReadUseProtocolWaitRB.TabIndex = 5;
this.ReadUseProtocolWaitRB.TabStop = true;
this.ReadUseProtocolWaitRB.Text = "Use protocol value";
//
// WaitMillisecondsLBL
//
this.WaitMillisecondsLBL.Location = new System.Drawing.Point(232, 64);
this.WaitMillisecondsLBL.Name = "WaitMillisecondsLBL";
this.WaitMillisecondsLBL.Size = new System.Drawing.Size(72, 16);
this.WaitMillisecondsLBL.TabIndex = 7;
this.WaitMillisecondsLBL.Text = "milliseconds";
//
// ReadWaitTB
//
this.ReadWaitTB.Location = new System.Drawing.Point(160, 64);
this.ReadWaitTB.Name = "ReadWaitTB";
this.ReadWaitTB.ReadOnly = true;
this.ReadWaitTB.Size = new System.Drawing.Size(64, 20);
this.ReadWaitTB.TabIndex = 7;
this.ReadWaitTB.Text = "";
//
// ReadWaitLBL
//
this.ReadWaitLBL.Location = new System.Drawing.Point(120, 64);
this.ReadWaitLBL.Name = "ReadWaitLBL";
this.ReadWaitLBL.Size = new System.Drawing.Size(40, 16);
this.ReadWaitLBL.TabIndex = 5;
this.ReadWaitLBL.Text = "Wait";
//
// ReadResendingGB
//
this.ReadResendingGB.Controls.Add(this.ReadResendTimesTB);
this.ReadResendingGB.Controls.Add(this.ReadResendTB);
this.ReadResendingGB.Controls.Add(this.ReadResendLBL);
this.ReadResendingGB.Controls.Add(this.ReadResendWaitRB);
this.ReadResendingGB.Controls.Add(this.ReadSendWaitRB);
this.ReadResendingGB.Controls.Add(this.ReadSendDontWaitRB);
this.ReadResendingGB.Controls.Add(this.ReadUseProtocolResendRB);
this.ReadResendingGB.Location = new System.Drawing.Point(8, 8);
this.ReadResendingGB.Name = "ReadResendingGB";
this.ReadResendingGB.Size = new System.Drawing.Size(360, 136);
this.ReadResendingGB.TabIndex = 0;
this.ReadResendingGB.TabStop = false;
this.ReadResendingGB.Text = "Resending";
//
// ReadResendTimesTB
//
this.ReadResendTimesTB.Location = new System.Drawing.Point(240, 104);
this.ReadResendTimesTB.Name = "ReadResendTimesTB";
this.ReadResendTimesTB.Size = new System.Drawing.Size(56, 16);
this.ReadResendTimesTB.TabIndex = 7;
this.ReadResendTimesTB.Text = "times";
//
// ReadResendTB
//
this.ReadResendTB.Location = new System.Drawing.Point(168, 104);
this.ReadResendTB.Name = "ReadResendTB";
this.ReadResendTB.ReadOnly = true;
this.ReadResendTB.Size = new System.Drawing.Size(64, 20);
this.ReadResendTB.TabIndex = 4;
this.ReadResendTB.Text = "";
//
// ReadResendLBL
//
this.ReadResendLBL.Location = new System.Drawing.Point(112, 104);
this.ReadResendLBL.Name = "ReadResendLBL";
this.ReadResendLBL.Size = new System.Drawing.Size(48, 16);
this.ReadResendLBL.TabIndex = 5;
this.ReadResendLBL.Text = "Resend";
//
// ReadResendWaitRB
//
this.ReadResendWaitRB.Location = new System.Drawing.Point(96, 88);
this.ReadResendWaitRB.Name = "ReadResendWaitRB";
this.ReadResendWaitRB.Size = new System.Drawing.Size(200, 16);
this.ReadResendWaitRB.TabIndex = 3;
this.ReadResendWaitRB.Text = "Send and wait for reply.";
this.ReadResendWaitRB.CheckedChanged += new System.EventHandler(this.ReadResendWaitRB_CheckedChanged);
//
// ReadSendWaitRB
//
this.ReadSendWaitRB.Location = new System.Drawing.Point(96, 64);
this.ReadSendWaitRB.Name = "ReadSendWaitRB";
this.ReadSendWaitRB.Size = new System.Drawing.Size(200, 16);
this.ReadSendWaitRB.TabIndex = 2;
this.ReadSendWaitRB.Text = "Send once. Wait for reply.";
//
// ReadSendDontWaitRB
//
this.ReadSendDontWaitRB.Location = new System.Drawing.Point(96, 40);
this.ReadSendDontWaitRB.Name = "ReadSendDontWaitRB";
this.ReadSendDontWaitRB.Size = new System.Drawing.Size(200, 16);
this.ReadSendDontWaitRB.TabIndex = 1;
this.ReadSendDontWaitRB.Text = "Send once. Don\'t wait for reply.";
//
// ReadUseProtocolResendRB
//
this.ReadUseProtocolResendRB.Checked = true;
this.ReadUseProtocolResendRB.Location = new System.Drawing.Point(96, 16);
this.ReadUseProtocolResendRB.Name = "ReadUseProtocolResendRB";
this.ReadUseProtocolResendRB.Size = new System.Drawing.Size(200, 16);
this.ReadUseProtocolResendRB.TabIndex = 0;
this.ReadUseProtocolResendRB.TabStop = true;
this.ReadUseProtocolResendRB.Text = "Use protocol value.";
//
// WriteTab
//
this.WriteTab.Controls.Add(this.groupBox2);
this.WriteTab.Controls.Add(this.WriteErrorStopGB);
this.WriteTab.Controls.Add(this.WriteWaitTimeGB);
this.WriteTab.Controls.Add(this.WriteResendingGB);
this.WriteTab.Location = new System.Drawing.Point(4, 22);
this.WriteTab.Name = "WriteTab";
this.WriteTab.Size = new System.Drawing.Size(384, 414);
this.WriteTab.TabIndex = 1;
this.WriteTab.Text = "Writing";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.ExpirationWriteTB);
this.groupBox2.Controls.Add(this.ExpirationWriteRB);
this.groupBox2.Controls.Add(this.DeviceExpirationWriteRB);
this.groupBox2.Controls.Add(this.NoExpirationWriteRB);
this.groupBox2.Location = new System.Drawing.Point(8, 288);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(360, 96);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Expiration";
//
// label2
//
this.label2.Location = new System.Drawing.Point(280, 64);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(56, 16);
this.label2.TabIndex = 13;
this.label2.Text = "ms.";
//
// ExpirationWriteTB
//
this.ExpirationWriteTB.Location = new System.Drawing.Point(208, 64);
this.ExpirationWriteTB.Name = "ExpirationWriteTB";
this.ExpirationWriteTB.ReadOnly = true;
this.ExpirationWriteTB.Size = new System.Drawing.Size(64, 20);
this.ExpirationWriteTB.TabIndex = 13;
this.ExpirationWriteTB.Text = "";
//
// ExpirationWriteRB
//
this.ExpirationWriteRB.Location = new System.Drawing.Point(80, 64);
this.ExpirationWriteRB.Name = "ExpirationWriteRB";
this.ExpirationWriteRB.Size = new System.Drawing.Size(112, 16);
this.ExpirationWriteRB.TabIndex = 12;
this.ExpirationWriteRB.Text = "Expiration Time";
this.ExpirationWriteRB.CheckedChanged += new System.EventHandler(this.ExpirationWriteRB_CheckedChanged);
//
// DeviceExpirationWriteRB
//
this.DeviceExpirationWriteRB.Location = new System.Drawing.Point(80, 40);
this.DeviceExpirationWriteRB.Name = "DeviceExpirationWriteRB";
this.DeviceExpirationWriteRB.Size = new System.Drawing.Size(200, 16);
this.DeviceExpirationWriteRB.TabIndex = 11;
this.DeviceExpirationWriteRB.Text = "Use Device Expiration";
//
// NoExpirationWriteRB
//
this.NoExpirationWriteRB.Location = new System.Drawing.Point(80, 16);
this.NoExpirationWriteRB.Name = "NoExpirationWriteRB";
this.NoExpirationWriteRB.Size = new System.Drawing.Size(200, 16);
this.NoExpirationWriteRB.TabIndex = 9;
this.NoExpirationWriteRB.Text = "Don\'t use Expiration";
//
// WriteErrorStopGB
//
this.WriteErrorStopGB.Controls.Add(this.WriteErrorStopCB);
this.WriteErrorStopGB.Location = new System.Drawing.Point(8, 240);
this.WriteErrorStopGB.Name = "WriteErrorStopGB";
this.WriteErrorStopGB.Size = new System.Drawing.Size(360, 48);
this.WriteErrorStopGB.TabIndex = 6;
this.WriteErrorStopGB.TabStop = false;
this.WriteErrorStopGB.Text = "Error stop";
//
// WriteErrorStopCB
//
this.WriteErrorStopCB.Checked = true;
this.WriteErrorStopCB.CheckState = System.Windows.Forms.CheckState.Checked;
this.WriteErrorStopCB.Location = new System.Drawing.Point(96, 16);
this.WriteErrorStopCB.Name = "WriteErrorStopCB";
this.WriteErrorStopCB.Size = new System.Drawing.Size(200, 24);
this.WriteErrorStopCB.TabIndex = 7;
this.WriteErrorStopCB.Text = "Stop progress on error.";
//
// WriteWaitTimeGB
//
this.WriteWaitTimeGB.Controls.Add(this.WriteUseSpecifiedRB);
this.WriteWaitTimeGB.Controls.Add(this.WriteUseProtocolWaitRB);
this.WriteWaitTimeGB.Controls.Add(this.WriteWaitMillisecondsLBL);
this.WriteWaitTimeGB.Controls.Add(this.WriteWaitTB);
this.WriteWaitTimeGB.Controls.Add(this.WriteWaitLBL);
this.WriteWaitTimeGB.Location = new System.Drawing.Point(8, 144);
this.WriteWaitTimeGB.Name = "WriteWaitTimeGB";
this.WriteWaitTimeGB.Size = new System.Drawing.Size(360, 96);
this.WriteWaitTimeGB.TabIndex = 5;
this.WriteWaitTimeGB.TabStop = false;
this.WriteWaitTimeGB.Text = "Wait time";
//
// WriteUseSpecifiedRB
//
this.WriteUseSpecifiedRB.Location = new System.Drawing.Point(96, 40);
this.WriteUseSpecifiedRB.Name = "WriteUseSpecifiedRB";
this.WriteUseSpecifiedRB.Size = new System.Drawing.Size(200, 16);
this.WriteUseSpecifiedRB.TabIndex = 6;
this.WriteUseSpecifiedRB.Text = "Use specified value";
this.WriteUseSpecifiedRB.CheckedChanged += new System.EventHandler(this.WriteUseSpecifiedRB_CheckedChanged);
//
// WriteUseProtocolWaitRB
//
this.WriteUseProtocolWaitRB.Checked = true;
this.WriteUseProtocolWaitRB.Location = new System.Drawing.Point(96, 16);
this.WriteUseProtocolWaitRB.Name = "WriteUseProtocolWaitRB";
this.WriteUseProtocolWaitRB.Size = new System.Drawing.Size(200, 16);
this.WriteUseProtocolWaitRB.TabIndex = 5;
this.WriteUseProtocolWaitRB.TabStop = true;
this.WriteUseProtocolWaitRB.Text = "Use protocol value";
//
// WriteWaitMillisecondsLBL
//
this.WriteWaitMillisecondsLBL.Location = new System.Drawing.Point(232, 64);
this.WriteWaitMillisecondsLBL.Name = "WriteWaitMillisecondsLBL";
this.WriteWaitMillisecondsLBL.Size = new System.Drawing.Size(72, 16);
this.WriteWaitMillisecondsLBL.TabIndex = 7;
this.WriteWaitMillisecondsLBL.Text = "milliseconds";
//
// WriteWaitTB
//
this.WriteWaitTB.Location = new System.Drawing.Point(160, 64);
this.WriteWaitTB.Name = "WriteWaitTB";
this.WriteWaitTB.ReadOnly = true;
this.WriteWaitTB.Size = new System.Drawing.Size(64, 20);
this.WriteWaitTB.TabIndex = 6;
this.WriteWaitTB.Text = "";
//
// WriteWaitLBL
//
this.WriteWaitLBL.Location = new System.Drawing.Point(120, 64);
this.WriteWaitLBL.Name = "WriteWaitLBL";
this.WriteWaitLBL.Size = new System.Drawing.Size(40, 16);
this.WriteWaitLBL.TabIndex = 5;
this.WriteWaitLBL.Text = "Wait";
//
// WriteResendingGB
//
this.WriteResendingGB.Controls.Add(this.WriteResendTimeTB);
this.WriteResendingGB.Controls.Add(this.WriteResendTB);
this.WriteResendingGB.Controls.Add(this.WriteResendLBL);
this.WriteResendingGB.Controls.Add(this.WriteResendWaitRB);
this.WriteResendingGB.Controls.Add(this.WriteSendWaitRB);
this.WriteResendingGB.Controls.Add(this.WriteSendDontWaitRB);
this.WriteResendingGB.Controls.Add(this.WriteUseProtocolResendRB);
this.WriteResendingGB.Location = new System.Drawing.Point(8, 8);
this.WriteResendingGB.Name = "WriteResendingGB";
this.WriteResendingGB.Size = new System.Drawing.Size(360, 136);
this.WriteResendingGB.TabIndex = 4;
this.WriteResendingGB.TabStop = false;
this.WriteResendingGB.Text = "Resending";
//
// WriteResendTimeTB
//
this.WriteResendTimeTB.Location = new System.Drawing.Point(240, 104);
this.WriteResendTimeTB.Name = "WriteResendTimeTB";
this.WriteResendTimeTB.Size = new System.Drawing.Size(56, 16);
this.WriteResendTimeTB.TabIndex = 7;
this.WriteResendTimeTB.Text = "times";
//
// WriteResendTB
//
this.WriteResendTB.Location = new System.Drawing.Point(168, 104);
this.WriteResendTB.Name = "WriteResendTB";
this.WriteResendTB.ReadOnly = true;
this.WriteResendTB.Size = new System.Drawing.Size(64, 20);
this.WriteResendTB.TabIndex = 4;
this.WriteResendTB.Text = "";
//
// WriteResendLBL
//
this.WriteResendLBL.Location = new System.Drawing.Point(112, 104);
this.WriteResendLBL.Name = "WriteResendLBL";
this.WriteResendLBL.Size = new System.Drawing.Size(48, 16);
this.WriteResendLBL.TabIndex = 5;
this.WriteResendLBL.Text = "Resend";
//
// WriteResendWaitRB
//
this.WriteResendWaitRB.Location = new System.Drawing.Point(96, 88);
this.WriteResendWaitRB.Name = "WriteResendWaitRB";
this.WriteResendWaitRB.Size = new System.Drawing.Size(200, 16);
this.WriteResendWaitRB.TabIndex = 3;
this.WriteResendWaitRB.Text = "Send and wait for reply.";
this.WriteResendWaitRB.CheckedChanged += new System.EventHandler(this.WriteResendWaitRB_CheckedChanged);
//
// WriteSendWaitRB
//
this.WriteSendWaitRB.Location = new System.Drawing.Point(96, 64);
this.WriteSendWaitRB.Name = "WriteSendWaitRB";
this.WriteSendWaitRB.Size = new System.Drawing.Size(200, 16);
this.WriteSendWaitRB.TabIndex = 2;
this.WriteSendWaitRB.Text = "Send once. Wait for reply.";
//
// WriteSendDontWaitRB
//
this.WriteSendDontWaitRB.Location = new System.Drawing.Point(96, 40);
this.WriteSendDontWaitRB.Name = "WriteSendDontWaitRB";
this.WriteSendDontWaitRB.Size = new System.Drawing.Size(200, 16);
this.WriteSendDontWaitRB.TabIndex = 1;
this.WriteSendDontWaitRB.Text = "Send once. Don\'t wait for reply.";
//
// WriteUseProtocolResendRB
//
this.WriteUseProtocolResendRB.Checked = true;
this.WriteUseProtocolResendRB.Location = new System.Drawing.Point(96, 16);
this.WriteUseProtocolResendRB.Name = "WriteUseProtocolResendRB";
this.WriteUseProtocolResendRB.Size = new System.Drawing.Size(200, 16);
this.WriteUseProtocolResendRB.TabIndex = 0;
this.WriteUseProtocolResendRB.TabStop = true;
this.WriteUseProtocolResendRB.Text = "Use protocol value.";
//
// DescriptionTab
//
this.DescriptionTab.Controls.Add(this.DescriptionTB);
this.DescriptionTab.Location = new System.Drawing.Point(4, 22);
this.DescriptionTab.Name = "DescriptionTab";
this.DescriptionTab.Size = new System.Drawing.Size(384, 414);
this.DescriptionTab.TabIndex = 3;
this.DescriptionTab.Text = "Description";
//
// DescriptionTB
//
this.DescriptionTB.AcceptsReturn = true;
this.DescriptionTB.AcceptsTab = true;