-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmPrefs.frm
4480 lines (3873 loc) · 166 KB
/
frmPrefs.frm
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 = "{BCE37951-37DF-4D69-A8A3-2CFABEE7B3CC}#1.0#0"; "CCRSlider.ocx"
Begin VB.Form planetPrefs
AutoRedraw = -1 'True
Caption = "Earth Preferences"
ClientHeight = 10650
ClientLeft = 60
ClientTop = 345
ClientWidth = 8970
Icon = "frmPrefs.frx":0000
LinkTopic = "Form2"
ScaleHeight = 10800
ScaleMode = 0 'User
ScaleWidth = 8970
StartUpPosition = 3 'Windows Default
Visible = 0 'False
Begin VB.Frame fraConfig
Caption = "Configuration"
Height = 4785
Left = 240
TabIndex = 8
Top = 1200
Width = 7140
Begin VB.Frame fraConfigInner
BorderStyle = 0 'None
Height = 4215
Left = 435
TabIndex = 34
Top = 435
Width = 6450
Begin VB.CheckBox chkShowTaskbar
Caption = "Show Widget in Taskbar"
Height = 225
Left = 2010
TabIndex = 144
ToolTipText = "Check the box to show the widget in the taskbar"
Top = 3735
Width = 3405
End
Begin VB.ComboBox cmbScrollWheelDirection
Height = 315
ItemData = "frmPrefs.frx":25CA
Left = 1995
List = "frmPrefs.frx":25CC
Style = 2 'Dropdown List
TabIndex = 90
ToolTipText = "To change the direction of the mouse scroll wheel when resiziing the globe gauge."
Top = 1695
Width = 2490
End
Begin VB.Frame fraAllowShutdowns
BorderStyle = 0 'None
Height = 1245
Left = 1425
TabIndex = 40
Top = 5370
Width = 4575
Begin VB.Label lblConfigurationTab
Height = 660
Index = 8
Left = 270
TabIndex = 41
Top = 525
Width = 3720
End
End
Begin VB.CheckBox chkEnableBalloonTooltips
Caption = "Enable Balloon Tooltips on all Controls *"
Height = 225
Left = 2010
TabIndex = 39
ToolTipText = "Check the box to enable larger balloon tooltips for all controls on the main program"
Top = 3345
Width = 3405
End
Begin VB.CheckBox chkEnableTooltips
Caption = "Enable Tooltips on all Controls"
Height = 225
Left = 2010
TabIndex = 35
ToolTipText = "Check the box to enable tooltips for all controls on the main program"
Top = 2910
Width = 3345
End
Begin vb6projectCCRSlider.Slider sliGaugeSize
Height = 390
Left = 1920
TabIndex = 98
ToolTipText = "Adjust to a percentage of the original size. You can also use Ctrl+Mousewheel."
Top = 60
Width = 3870
_ExtentX = 6826
_ExtentY = 688
Min = 5
Max = 220
Value = 100
TickFrequency = 6
SelStart = 20
End
Begin VB.Label lblConfiguration
Caption = "The scroll-wheel resizing direction can be determined here. The direction chosen causes the image to grow. *"
Height = 660
Index = 6
Left = 2025
TabIndex = 123
Top = 2145
Width = 3930
End
Begin VB.Label lblGaugeSize
Caption = "180"
Height = 315
Index = 4
Left = 4770
TabIndex = 94
Top = 555
Width = 345
End
Begin VB.Label lblGaugeSize
Caption = "130"
Height = 315
Index = 3
Left = 3990
TabIndex = 93
Top = 555
Width = 345
End
Begin VB.Label lblGaugeSize
Caption = "50"
Height = 315
Index = 1
Left = 2730
TabIndex = 92
Top = 555
Width = 345
End
Begin VB.Label lblConfiguration
Caption = "Mouse Wheel Resize :"
Height = 345
Index = 3
Left = 255
TabIndex = 91
ToolTipText = "To change the direction of the mouse scroll wheel when resiziing the globe gauge."
Top = 1740
Width = 2055
End
Begin VB.Label lblConfiguration
Caption = "Adjust to a percentage of the original size. You can also use Ctrl+Mousewheel. Immediate. *"
Height = 555
Index = 2
Left = 2070
TabIndex = 89
ToolTipText = "Adjust to a percentage of the original size. You can also use Ctrl+Mousewheel."
Top = 870
Width = 3810
End
Begin VB.Label lblConfiguration
Caption = "Gauge Size :"
Height = 315
Index = 1
Left = 885
TabIndex = 88
Top = 105
Width = 975
End
Begin VB.Label lblGaugeSize
Caption = "90"
Height = 315
Index = 2
Left = 3345
TabIndex = 87
Top = 555
Width = 840
End
Begin VB.Label lblGaugeSize
Caption = "220 (%)"
Height = 315
Index = 5
Left = 5385
TabIndex = 86
Top = 555
Width = 735
End
Begin VB.Label lblGaugeSize
Caption = "5"
Height = 315
Index = 0
Left = 1980
TabIndex = 85
Top = 555
Width = 345
End
End
End
Begin VB.Frame fraPosition
Caption = "Position"
Height = 7440
Left = 240
TabIndex = 48
Top = 1230
Visible = 0 'False
Width = 8520
Begin VB.Frame fraPositionInner
BorderStyle = 0 'None
Height = 6960
Left = 150
TabIndex = 49
Top = 300
Width = 7680
Begin VB.CheckBox chkPreventDragging
Caption = "Widget Position Locked. *"
Height = 225
Left = 2265
TabIndex = 131
ToolTipText = "Checking this box turns off the ability to drag the program with the mouse, locking it in position."
Top = 3465
Width = 2505
End
Begin VB.TextBox txtPortraitYoffset
Height = 315
Left = 2250
TabIndex = 83
ToolTipText = "Enter a prefix/nickname for outgoing messages."
Top = 6465
Width = 2130
End
Begin VB.TextBox txtPortraitHoffset
Height = 315
Left = 2250
TabIndex = 81
ToolTipText = "Enter a prefix/nickname for outgoing messages."
Top = 6000
Width = 2130
End
Begin VB.TextBox txtLandscapeVoffset
Height = 315
Left = 2250
TabIndex = 79
ToolTipText = "Enter a prefix/nickname for outgoing messages."
Top = 4875
Width = 2130
End
Begin VB.TextBox txtLandscapeHoffset
Height = 315
Left = 2250
TabIndex = 77
Top = 4425
Width = 2130
End
Begin VB.ComboBox cmbWidgetLandscape
Height = 315
ItemData = "frmPrefs.frx":25CE
Left = 2250
List = "frmPrefs.frx":25D0
Style = 2 'Dropdown List
TabIndex = 75
ToolTipText = "Choose the alarm sound."
Top = 3930
Width = 2160
End
Begin VB.ComboBox cmbWidgetPortrait
Height = 315
ItemData = "frmPrefs.frx":25D2
Left = 2250
List = "frmPrefs.frx":25D4
Style = 2 'Dropdown List
TabIndex = 72
ToolTipText = "Choose the alarm sound."
Top = 5505
Width = 2160
End
Begin VB.ComboBox cmbWidgetPosition
Height = 315
ItemData = "frmPrefs.frx":25D6
Left = 2265
List = "frmPrefs.frx":25D8
Style = 2 'Dropdown List
TabIndex = 69
ToolTipText = "Choose the alarm sound."
Top = 2100
Width = 2160
End
Begin VB.ComboBox cmbAspectHidden
Height = 315
ItemData = "frmPrefs.frx":25DA
Left = 2265
List = "frmPrefs.frx":25DC
Style = 2 'Dropdown List
TabIndex = 66
ToolTipText = "Choose the alarm sound."
Top = 0
Width = 2160
End
Begin VB.Label lblPosition
Caption = "*"
Height = 255
Index = 1
Left = 4545
TabIndex = 134
Tag = "lblAlarmSound"
Top = 45
Width = 345
End
Begin VB.Label Label2
Caption = "(px)"
Height = 300
Left = 4530
TabIndex = 130
Tag = "lblPrefixString"
Top = 4905
Width = 435
End
Begin VB.Label Label1
Caption = "(px)"
Height = 300
Left = 4530
TabIndex = 129
Tag = "lblPrefixString"
Top = 4500
Width = 390
End
Begin VB.Label lblPosition
Caption = "Portrait Top Y pos :"
Height = 510
Index = 17
Left = 720
TabIndex = 84
Tag = "lblPrefixString"
Top = 6480
Width = 2175
End
Begin VB.Label lblPosition
Caption = "Portrait Left X pos :"
Height = 510
Index = 16
Left = 660
TabIndex = 82
Tag = "lblPrefixString"
Top = 6015
Width = 2175
End
Begin VB.Label lblPosition
Caption = "Landscape Top Y pos :"
Height = 510
Index = 15
Left = 480
TabIndex = 80
Tag = "lblPrefixString"
Top = 4905
Width = 2175
End
Begin VB.Label lblPosition
Caption = "Landscape Left X pos :"
Height = 510
Index = 14
Left = 480
TabIndex = 78
Tag = "lblPrefixString"
Top = 4455
Width = 2175
End
Begin VB.Label lblPosition
Caption = "Widget Locked in Landscape:"
Height = 375
Index = 13
Left = 0
TabIndex = 76
Tag = "lblAlarmSound"
Top = 3975
Width = 2205
End
Begin VB.Label lblPosition
Caption = $"frmPrefs.frx":25DE
Height = 3120
Index = 12
Left = 5145
TabIndex = 74
Tag = "lblAlarmSoundDesc"
Top = 3480
Width = 2520
End
Begin VB.Label lblPosition
Caption = "Widget Locked in Portrait:"
Height = 375
Index = 11
Left = 300
TabIndex = 73
Tag = "lblAlarmSound"
Top = 5550
Width = 2040
End
Begin VB.Label lblPosition
Caption = $"frmPrefs.frx":27B0
Height = 705
Index = 10
Left = 2250
TabIndex = 71
Tag = "lblAlarmSoundDesc"
Top = 2550
Width = 4455
End
Begin VB.Label lblPosition
Caption = "Widget Position by Percent:"
Height = 375
Index = 8
Left = 180
TabIndex = 70
Tag = "lblAlarmSound"
Top = 2145
Width = 2355
End
Begin VB.Label lblPosition
Caption = $"frmPrefs.frx":284F
Height = 3045
Index = 6
Left = 2265
TabIndex = 68
Tag = "lblAlarmSoundDesc"
ToolTipText = $"frmPrefs.frx":29EB
Top = 450
Width = 5175
End
Begin VB.Label lblPosition
Caption = "Aspect Ratio Hidden Mode :"
Height = 375
Index = 3
Left = 120
TabIndex = 67
Tag = "lblAlarmSound"
Top = 45
Width = 2145
End
End
End
Begin VB.Frame fraDevelopment
Caption = "Development"
Height = 6570
Left = 240
TabIndex = 50
Top = 1200
Visible = 0 'False
Width = 8520
Begin VB.Frame fraDevelopmentInner
BorderStyle = 0 'None
Height = 6060
Left = 870
TabIndex = 51
Top = 300
Width = 7455
Begin VB.Frame fraDefaultEditor
BorderStyle = 0 'None
Height = 2625
Left = 45
TabIndex = 138
Top = 3165
Width = 7290
Begin VB.CommandButton btnDefaultEditor
Caption = "..."
Height = 300
Left = 5115
Style = 1 'Graphical
TabIndex = 140
ToolTipText = "Click to select the .vbp file to edit the program - You need to have access to the source!"
Top = 210
Width = 315
End
Begin VB.TextBox txtDefaultEditor
Height = 315
Left = 1440
TabIndex = 139
Text = " eg. E:\vb6\fire call\FireCallWin.vbp"
ToolTipText = $"frmPrefs.frx":2B90
Top = 195
Width = 3660
End
Begin VB.Label lblDebug
Caption = $"frmPrefs.frx":2C22
Height = 930
Index = 9
Left = 1545
TabIndex = 143
Top = 690
Width = 3900
End
Begin VB.Label lblDebug
Caption = "Default Editor :"
Height = 255
Index = 7
Left = 285
TabIndex = 142
Tag = "lblSharedInputFile"
Top = 225
Width = 1350
End
Begin VB.Label lblGitHub
Caption = $"frmPrefs.frx":2CC6
ForeColor = &H8000000D&
Height = 885
Left = 1530
TabIndex = 141
ToolTipText = "Double Click to visit github"
Top = 1665
Width = 3855
End
End
Begin VB.TextBox txtDblClickCommand
Height = 315
Left = 1515
TabIndex = 63
ToolTipText = "Enter a Windows command for the gauge to operate when double-clicked."
Top = 1095
Width = 3660
End
Begin VB.CommandButton btnOpenFile
Caption = "..."
Height = 300
Left = 5175
Style = 1 'Graphical
TabIndex = 60
ToolTipText = "Click to select a particular file for the gauge to run or open when double-clicked."
Top = 2250
Width = 315
End
Begin VB.TextBox txtOpenFile
Height = 315
Left = 1515
TabIndex = 59
ToolTipText = "Enter a particular file for the gauge to run or open when double-clicked."
Top = 2235
Width = 3660
End
Begin VB.ComboBox cmbDebug
Height = 315
ItemData = "frmPrefs.frx":2D59
Left = 1530
List = "frmPrefs.frx":2D5B
Style = 2 'Dropdown List
TabIndex = 56
ToolTipText = "Choose to set debug mode."
Top = -15
Width = 2160
End
Begin VB.Label lblDebug
Caption = "DblClick Command :"
Height = 510
Index = 1
Left = -15
TabIndex = 65
Tag = "lblPrefixString"
Top = 1155
Width = 1545
End
Begin VB.Label lblConfigurationTab
Caption = "Shift+double-clicking on the widget image will open this file. "
Height = 375
Index = 6
Left = 1560
TabIndex = 64
Top = 2730
Width = 3705
End
Begin VB.Label lblDebug
Caption = "Default command to run when the stamp receives a double-click eg %SystemRoot%/system32/ncpa.cpl"
Height = 570
Index = 5
Left = 1590
TabIndex = 62
Tag = "lblSharedInputFileDesc"
Top = 1605
Width = 4410
End
Begin VB.Label lblDebug
Caption = "Open File :"
Height = 255
Index = 4
Left = 645
TabIndex = 61
Tag = "lblSharedInputFile"
Top = 2280
Width = 1350
End
Begin VB.Label lblDebug
Caption = "Turning on the debugging will provide extra information in the debug window. *"
Height = 495
Index = 2
Left = 1545
TabIndex = 58
Tag = "lblAlarmSoundDesc"
Top = 450
Width = 4455
End
Begin VB.Label lblDebug
Caption = "Debug :"
Height = 375
Index = 0
Left = 855
TabIndex = 57
Tag = "lblAlarmSound"
Top = 45
Width = 1740
End
End
End
Begin VB.Frame fraAbout
Caption = "About"
Height = 8580
Left = 255
TabIndex = 104
Top = 1185
Visible = 0 'False
Width = 8520
Begin VB.Frame fraScrollbarCover
BorderStyle = 0 'None
Height = 6435
Left = 7950
TabIndex = 118
Top = 1995
Width = 420
End
Begin VB.TextBox txtAboutText
Appearance = 0 'Flat
BackColor = &H8000000F&
BorderStyle = 0 'None
Height = 6135
Left = 300
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 117
Text = "frmPrefs.frx":2D5D
Top = 2205
Width = 8010
End
Begin VB.CommandButton btnAboutDebugInfo
Caption = "Debug &Info."
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 6780
Style = 1 'Graphical
TabIndex = 108
ToolTipText = "This gives access to the debugging tool"
Top = 1110
Width = 1470
End
Begin VB.CommandButton btnFacebook
Caption = "&Facebook"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 6780
Style = 1 'Graphical
TabIndex = 107
ToolTipText = "This will link you to the Rocket/Steamy dock users Group"
Top = 735
Width = 1470
End
Begin VB.CommandButton btnUpdate
Caption = "&Update"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 6780
Style = 1 'Graphical
TabIndex = 106
ToolTipText = "Here you can visit the update location where you can download new versions of the programs."
Top = 360
Width = 1470
End
Begin VB.CommandButton btnDonate
Caption = "&Donate"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 6780
Style = 1 'Graphical
TabIndex = 105
ToolTipText = "Opens a browser window and sends you to our donate page on Amazon"
Top = 1485
Width = 1470
End
Begin VB.Label lblDotDot
BackStyle = 0 'Transparent
Caption = ". ."
BeginProperty Font
Name = "Centurion Light SF"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 2940
TabIndex = 122
Top = 510
Width = 495
End
Begin VB.Label lblRevisionNum
BackStyle = 0 'Transparent
Caption = "0"
BeginProperty Font
Name = "Centurion Light SF"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 3450
TabIndex = 121
Top = 510
Width = 525
End
Begin VB.Label lblMajorVersion
BackStyle = 0 'Transparent
Caption = "0"
BeginProperty Font
Name = "Centurion Light SF"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 2730
TabIndex = 120
Top = 510
Width = 225
End
Begin VB.Label lblMinorVersion
BackStyle = 0 'Transparent
Caption = "0"
BeginProperty Font
Name = "Centurion Light SF"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 3090
TabIndex = 119
Top = 510
Width = 225
End
Begin VB.Label Label61
Caption = "Dean Beedell © 2023"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 2715
TabIndex = 116
Top = 855
Width = 2175
End
Begin VB.Label Label65
Caption = "Originator"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1050
TabIndex = 115
Top = 855
Width = 795
End
Begin VB.Label Label74
Caption = "Version"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1065
TabIndex = 114
Top = 495
Width = 795
End
Begin VB.Label Label60
Caption = "Dean Beedell © 2023"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 2715
TabIndex = 113
Top = 1215
Width = 2175
End
Begin VB.Label Label63
Caption = "Current Developer"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1050
TabIndex = 112
Top = 1215
Width = 1470
End
Begin VB.Label Label10
Caption = "Target"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1050
TabIndex = 111
Top = 1560
Width = 1470
End
Begin VB.Label Label17
Caption = "Windows XP, Vista, 7, 8, 10 && 11 + ReactOS"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 2715
TabIndex = 110
Top = 1560
Width = 3735
End
Begin VB.Label Label20
Caption = "(32bit WoW64)"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 3900
TabIndex = 109
Top = 510
Width = 1245
End
End
Begin VB.Frame fraGeneral
Caption = "General"
Height = 2070
Left = 240
TabIndex = 52
Top = 1200
Visible = 0 'False
Width = 7500
Begin VB.Frame fraGeneralInner
BorderStyle = 0 'None
Height = 1500
Left = 465
TabIndex = 53
Top = 300
Width = 6600
Begin VB.CheckBox chkGenStartup
Caption = "Run this widget at Windows Startup *"
Height = 195
Left = 2010
TabIndex = 95
ToolTipText = "Check this box to enable the automatic start of the program when Windows is started."
Top = 1140
Width = 3555
End
Begin VB.CheckBox chkGaugeFunctions
Caption = "Double Click Enabled *"
Height = 225
Left = 1995
TabIndex = 54
ToolTipText = "When checked this box enables the spinning earth functionality. That's it!"
Top = 180
Width = 3405
End
Begin VB.Label lblGeneral
Caption = "Stamp Functions :"
Height = 315
Index = 6
Left = 510
TabIndex = 97
Top = 165
Width = 1320
End
Begin VB.Label lblGeneral
Caption = "Auto Start :"
Height = 345
Index = 11
Left = 1140
TabIndex = 96
Tag = "lblRefreshInterval"
Top = 1140
Width = 1740
End
Begin VB.Label lblGeneral
Caption = "When checked this box enables the double click functionality. That's it! *"
Height = 660
Index = 2
Left = 2025
TabIndex = 55
Tag = "lblEnableSoundsDesc"
Top = 540
Width = 3615
End
End
End
Begin VB.Frame fraSounds
Caption = "Sounds"
Height = 1965
Left = 240
TabIndex = 13
Top = 1230
Visible = 0 'False
Width = 7965
Begin VB.Frame fraSoundsInner
BorderStyle = 0 'None
Height = 1755
Left = 930
TabIndex = 25
Top = 135
Width = 5160
Begin VB.CheckBox chkEnableSounds
Caption = "Enable Sounds for the Animations "
Height = 225
Left = 1485
TabIndex = 36