-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathForm1.frm
More file actions
5888 lines (5134 loc) · 191 KB
/
Form1.frm
File metadata and controls
5888 lines (5134 loc) · 191 KB
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
VERSION 5.00
Object = "{648A5603-2C6E-101B-82B6-000000000014}#1.1#0"; "MSCOMM32.OCX"
Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
Begin VB.Form frmMain
AutoRedraw = -1 'True
BackColor = &H0024211E&
ClientHeight = 8910
ClientLeft = 120
ClientTop = 465
ClientWidth = 17940
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Icon = "Form1.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form1"
ScaleHeight = 594
ScaleMode = 3 'Pixel
ScaleWidth = 1196
StartUpPosition = 2 'CenterScreen
Begin MSCommLib.MSComm comm
Left = 240
Top = 5745
_ExtentX = 1005
_ExtentY = 1005
_Version = 393216
DTREnable = 0 'False
InBufferSize = 10
InputLen = 100
OutBufferSize = 1
ParityReplace = 48
RThreshold = 1
BaudRate = 4000000
DataBits = 4
StopBits = 2
SThreshold = 1
End
Begin SerialConsole.uButton picConnectionSettings
Height = 480
Left = 12495
TabIndex = 102
Top = 165
Width = 480
_ExtentX = 847
_ExtentY = 847
BackgroundColor = 2367774
MouseOverBackgroundColor= 2367774
FocusColor = 2367774
BackgroundColorDisabled= 2367774
BorderColorDisabled= 0
ForeColorDisabled= 0
MouseOverBackgroundColorDisabled= 2367774
CaptionBorderColorDisabled= 0
FocusColorDisabled= 2367774
FocusVisible = 0 'False
Caption = ""
Border = 0 'False
BorderAnimation = 0
Picture = "Form1.frx":1542
PictureMouseOver= "Form1.frx":2196
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin SerialConsole.uToolTip ttToolTip
Height = 420
Left = 6270
TabIndex = 91
Top = 3795
Visible = 0 'False
Width = 780
_ExtentX = 7938
_ExtentY = 7938
End
Begin SerialConsole.uButton cmdConnect
Height = 360
Left = 8295
TabIndex = 3
Top = 225
Width = 1425
_ExtentX = 2514
_ExtentY = 635
BackgroundColor = 4671472
BorderColor = 8421504
ForeColor = 16777215
MouseOverBackgroundColor= 8882165
FocusColor = 12632256
BackgroundColorDisabled= 14737632
BorderColorDisabled= 8421504
ForeColorDisabled= 0
MouseOverBackgroundColorDisabled= 12632256
CaptionBorderColorDisabled= 0
FocusColorDisabled= 12632256
FocusVisible = 0 'False
Caption = "Connect"
Border = 0 'False
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin SerialConsole.uLoadBar loadReconnect
Height = 450
Left = 8250
TabIndex = 89
Top = 180
Width = 1515
_ExtentX = 2672
_ExtentY = 794
BackgroundColor = 4671472
BarColor = 2367774
BarType = 0
BarWidth = 0
Border = 0 'False
Caption = ""
CaptionType = 99
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LoadingSpeed = 1
Value = 0
End
Begin SerialConsole.uFrame frmReconnectSettings
Height = 3630
Left = 3705
TabIndex = 81
Top = 870
Visible = 0 'False
Width = 2400
_ExtentX = 4233
_ExtentY = 6403
BackgroundColor = 2367774
BorderColor = 14737632
ForeColor = 16777215
Caption = "Reconnect Settings"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Begin SerialConsole.uCheckBox chkComOptions
Height = 195
Index = 2
Left = 90
TabIndex = 82
Top = 240
Width = 2130
_ExtentX = 3572
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Clear On Connect"
CaptionOffsetLeft= 5
CaptionOffsetTop= 2
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkComOptions
Height = 195
Index = 3
Left = 90
TabIndex = 83
Top = 510
Width = 2130
_ExtentX = 3387
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Auto Disconnect"
CaptionOffsetLeft= 5
CaptionOffsetTop= 2
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkComOptions
Height = 195
Index = 4
Left = 90
TabIndex = 84
Top = 780
Width = 2130
_ExtentX = 2831
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Auto Connect"
CaptionOffsetLeft= 5
CaptionOffsetTop= 2
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkComOptions
Height = 195
Index = 5
Left = 90
TabIndex = 85
Top = 1050
Width = 2130
_ExtentX = 3572
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Auto Connect USB"
CaptionOffsetLeft= 5
CaptionOffsetTop= 2
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkComOptions
Height = 375
Index = 6
Left = 90
TabIndex = 90
Top = 1320
Width = 2235
_ExtentX = 3942
_ExtentY = 661
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Auto disconnect on"
CaptionOffsetLeft= 5
CaptionOffsetTop= 2
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uDropDown drpDataBits
Height = 240
Left = 1260
TabIndex = 110
Top = 2670
Width = 1065
_ExtentX = 1879
_ExtentY = 423
BackgroundColor = 14322034
BorderColor = 14322034
ForeColor = 16777215
SelectionBackgroundColor= 13592135
SelectionBorderColor= 14322034
BackgroundColorDisabled= 14737632
BorderColorDisabled= 8421504
SelectionBackgroundColorDisabled= 14737632
SelectionBorderColorDisabled= 14737632
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Text = "8"
Border = 0 'False
ItemHeight = 19
VisibleItems = 8
ScrollBarWidth = 19
End
Begin SerialConsole.uDropDown drpParityBit
Height = 240
Left = 1260
TabIndex = 113
Top = 2985
Width = 1065
_ExtentX = 1879
_ExtentY = 423
BackgroundColor = 14322034
BorderColor = 14322034
ForeColor = 16777215
SelectionBackgroundColor= 13592135
SelectionBorderColor= 14322034
BackgroundColorDisabled= 14737632
BorderColorDisabled= 8421504
SelectionBackgroundColorDisabled= 14737632
SelectionBorderColorDisabled= 14737632
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Text = "None"
Border = 0 'False
ItemHeight = 19
VisibleItems = 8
ScrollBarWidth = 19
End
Begin SerialConsole.uDropDown drpStopBits
Height = 240
Left = 1260
TabIndex = 115
Top = 3300
Width = 1065
_ExtentX = 1879
_ExtentY = 423
BackgroundColor = 14322034
BorderColor = 14322034
ForeColor = 16777215
SelectionBackgroundColor= 13592135
SelectionBorderColor= 14322034
BackgroundColorDisabled= 14737632
BorderColorDisabled= 8421504
SelectionBackgroundColorDisabled= 14737632
SelectionBorderColorDisabled= 14737632
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Text = "1"
Border = 0 'False
ItemHeight = 19
VisibleItems = 8
ScrollBarWidth = 19
End
Begin SerialConsole.uCheckBox chkComOptions
Height = 375
Index = 7
Left = 90
TabIndex = 123
Top = 1770
Width = 2235
_ExtentX = 3942
_ExtentY = 661
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Auto disconnect on"
CaptionOffsetLeft= 5
CaptionOffsetTop= 2
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkComOptions
Height = 375
Index = 8
Left = 90
TabIndex = 124
Top = 2220
Width = 2235
_ExtentX = 3942
_ExtentY = 661
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Auto disconnect on"
CaptionOffsetLeft= 5
CaptionOffsetTop= 2
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin VB.Label lblCommSettings
BackColor = &H0024211E&
Caption = "Stop Bits"
ForeColor = &H00C0C0C0&
Height = 240
Index = 2
Left = 90
TabIndex = 114
Top = 3300
Width = 1005
End
Begin VB.Label lblCommSettings
BackColor = &H0024211E&
Caption = "Parity"
ForeColor = &H00C0C0C0&
Height = 240
Index = 1
Left = 90
TabIndex = 112
Top = 2985
Width = 1005
End
Begin VB.Label lblCommSettings
BackColor = &H0024211E&
Caption = "Data Bits"
ForeColor = &H00C0C0C0&
Height = 240
Index = 0
Left = 90
TabIndex = 111
Top = 2670
Width = 1005
End
End
Begin VB.Timer tmrCheckUsbStillConnected
Enabled = 0 'False
Interval = 1000
Left = 14970
Top = 195
End
Begin SerialConsole.uFrame frmWindow
Height = 1485
Index = 2
Left = 15675
TabIndex = 69
Top = 135
Visible = 0 'False
Width = 2205
_ExtentX = 3889
_ExtentY = 2619
BackgroundColor = 2367774
BorderColor = 14737632
ForeColor = 16777215
Caption = "Graph"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Begin SerialConsole.uGraph graphArduino
Height = 705
Left = 90
TabIndex = 70
Top = 510
Width = 1920
_ExtentX = 3387
_ExtentY = 1244
End
Begin SerialConsole.uCheckBox chkEnableGraph
Height = 165
Left = 90
TabIndex = 73
ToolTipText = "Show the received data in hex (Hold: H)"
Top = 240
Width = 1905
_ExtentX = 1191
_ExtentY = 291
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Enable Graph"
CaptionOffsetLeft= 5
CaptionOffsetTop= 1
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
AutoSize = 0 'False
End
End
Begin SerialConsole.uFrame frmWindow
Height = 3495
Index = 1
Left = 9945
TabIndex = 61
Top = 4695
Width = 3090
_ExtentX = 5450
_ExtentY = 6165
BackgroundColor = 2367774
BorderColor = 14737632
ForeColor = 16777215
Caption = "Winsock Ethernet"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Begin VB.Timer tmrWinsock
Enabled = 0 'False
Interval = 100
Left = 2280
Top = 1800
End
Begin MSWinsockLib.Winsock win
Left = 2520
Top = 960
_ExtentX = 741
_ExtentY = 741
_Version = 393216
End
Begin SerialConsole.uTextBox txtWinsockPort
Height = 360
Left = 1755
TabIndex = 104
Top = 390
Width = 1080
_ExtentX = 1905
_ExtentY = 635
BorderColor = 8421504
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Lucida Console"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 2367774
BorderThickness = 3
ConsoleColors = 0 'False
End
Begin SerialConsole.uButton cmdWinsockHost
Height = 330
Left = 225
TabIndex = 106
Top = 1710
Width = 1830
_ExtentX = 3228
_ExtentY = 582
BackgroundColor = 4671472
BorderColor = 8421504
ForeColor = 16777215
MouseOverBackgroundColor= 8882165
FocusColor = 12632256
BackgroundColorDisabled= 14737632
BorderColorDisabled= 8421504
ForeColorDisabled= 0
MouseOverBackgroundColorDisabled= 12632256
CaptionBorderColorDisabled= 0
FocusColorDisabled= 12632256
FocusVisible = 0 'False
Caption = "Host Server"
Border = 0 'False
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
CaptionOffsetTop= -1
End
Begin SerialConsole.uOptionBox optWinsockTCPUDP
Height = 300
Index = 0
Left = 225
TabIndex = 107
Top = 930
Width = 1815
_ExtentX = 3201
_ExtentY = 529
BackgroundColor = 2367774
Border = 0 'False
Caption = "TCP"
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 8882165
CheckSize = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
Value = 1
End
Begin SerialConsole.uOptionBox optWinsockTCPUDP
Height = 300
Index = 1
Left = 225
TabIndex = 108
Top = 1290
Width = 1815
_ExtentX = 3201
_ExtentY = 529
BackgroundColor = 2367774
Border = 0 'False
Caption = "UDP"
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 8882165
CheckSize = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uTextBox txtWinsockStatus
Height = 420
Left = 150
TabIndex = 109
Top = 2955
Width = 1725
_ExtentX = 3043
_ExtentY = 741
BorderColor = 8421504
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 2367774
BorderThickness = 3
ConsoleColors = 0 'False
End
Begin VB.Label lblInfo
AutoSize = -1 'True
BackColor = &H0024211E&
Caption = "Port Number"
ForeColor = &H00FFFFFF&
Height = 195
Index = 4
Left = 240
TabIndex = 105
Top = 450
Width = 900
End
End
Begin VB.Timer tmrCheckForReconnect
Enabled = 0 'False
Interval = 1000
Left = 13620
Top = 195
End
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 450
Index = 1
Left = 1530
TabIndex = 54
Top = 900
Visible = 0 'False
Width = 1230
End
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 450
Index = 0
Left = 270
TabIndex = 53
Top = 900
Visible = 0 'False
Width = 795
End
Begin SerialConsole.uFrame frmTxtSettings
Height = 450
Left = 195
TabIndex = 49
Top = 4320
Width = 7020
_ExtentX = 12383
_ExtentY = 794
BackgroundColor = 2367774
BorderColor = 14737632
ForeColor = 16777215
Caption = "Settings"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Begin SerialConsole.uDropDown drpReceiveSpeed
Height = 255
Left = 5385
TabIndex = 64
Top = 150
Width = 1605
_ExtentX = 2831
_ExtentY = 450
BackgroundColor = 14322034
BorderColor = 14322034
ForeColor = 16777215
SelectionBackgroundColor= 13592135
SelectionBorderColor= 14322034
BackgroundColorDisabled= 14737632
BorderColorDisabled= 8421504
SelectionBackgroundColorDisabled= 14737632
SelectionBorderColorDisabled= 14737632
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Text = "Ultra Slow"
Border = 0 'False
ItemHeight = 19
VisibleItems = 8
ScrollBarWidth = 19
End
Begin SerialConsole.uCheckBox chkTxtSettings
Height = 195
Index = 0
Left = 90
TabIndex = 51
Top = 180
Width = 1245
_ExtentX = 2196
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "AutoScroll"
CaptionOffsetLeft= 5
CaptionOffsetTop= 1
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkTxtSettings
Height = 195
Index = 1
Left = 1350
TabIndex = 52
Top = 180
Width = 1515
_ExtentX = 2672
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "ConsoleColors"
CaptionOffsetLeft= 5
CaptionOffsetTop= 1
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkTxtSettings
Height = 195
Index = 2
Left = 2790
TabIndex = 55
Top = 180
Width = 1605
_ExtentX = 2831
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Font(Hex, Dec)"
CaptionOffsetLeft= 5
CaptionOffsetTop= 1
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
Begin SerialConsole.uCheckBox chkTxtSettings
Height = 195
Index = 3
Left = 4365
TabIndex = 103
Top = 180
Width = 1335
_ExtentX = 2355
_ExtentY = 344
BackgroundColor = 2367774
Border = 0 'False
BorderColor = 2367774
Caption = "Print CR LF"
CaptionOffsetLeft= 5
CaptionOffsetTop= 1
CheckBackgroundColor= 2367774
CheckBorderColor= 8421504
CheckBorderThickness= 2
CheckSelectionColor= 4210752
CheckSize = 0
CheckOffsetLeft = 2
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Consolas"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = 12632256
End
End
Begin VB.TextBox txtDataExchange
BeginProperty Font
Name = "Tahoma"
Size = 14.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 420
Left = 5070
TabIndex = 47
Top = 5025
Visible = 0 'False
Width = 480