-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrdIconConfig.frm
17365 lines (14074 loc) · 683 KB
/
rdIconConfig.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 = "{FB95F7DD-5143-4C75-88F9-A53515A946D7}#2.0#0"; "ccrtreeview.ocx"
Object = "{13E244CC-5B1A-45EA-A5BC-D3906B9ABB79}#1.0#0"; "CCRSlider.ocx"
Object = "{FA5FEA4A-5ED5-4004-A509-2DABC30D42A7}#1.0#0"; "ccrimagelist.ocx"
Begin VB.Form rDIconConfigForm
Appearance = 0 'Flat
Caption = "SteamyDock Icon Settings VB6"
ClientHeight = 10365
ClientLeft = 165
ClientTop = 165
ClientWidth = 10365
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
HasDC = 0 'False
Icon = "rdIconConfig.frx":0000
LinkTopic = "Form1"
ScaleHeight = 10365
ScaleWidth = 10365
Begin VB.PictureBox picTemporaryStore
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 1000
Left = 1185
ScaleHeight = 67
ScaleMode = 3 'Pixel
ScaleWidth = 67
TabIndex = 109
Tag = "Do not delete"
ToolTipText = "This is the currently selected icon scaled to 64 x 64 for the dragIcon to reside prior to conversion"
Top = 8835
Visible = 0 'False
Width = 1000
End
Begin VB.Timer themeTimer
Enabled = 0 'False
Interval = 10000
Left = 450
Top = 5760
End
Begin VB.Frame Frame
Caption = "Configuration"
Height = 600
Index = 0
Left = 2100
TabIndex = 44
Top = 4515
Visible = 0 'False
Width = 1665
Begin VB.CheckBox chkBiLinear
Caption = "Quality Sizing"
Height = 240
Left = 90
TabIndex = 45
ToolTipText = "Stretch Quality Option"
Top = 270
Width = 1485
End
Begin VB.Label Label1
Caption = "Drag && Drop, Copy && Paste too. Unicode Compatible"
Enabled = 0 'False
Height = 255
Index = 3
Left = 45
TabIndex = 46
ToolTipText = "To Paste: Click on display box and press Ctrl+V"
Top = 5865
Width = 3840
End
End
Begin VB.Timer registryTimer
Interval = 2500
Left = 450
Top = 6150
End
Begin VB.PictureBox picRdThumbFrame
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 705
Left = 180
ScaleHeight = 705
ScaleWidth = 9660
TabIndex = 36
Top = 4530
Visible = 0 'False
Width = 9660
Begin VB.HScrollBar rdMapHScroll
Height = 120
Left = 45
Max = 100
TabIndex = 40
Top = 540
Visible = 0 'False
Width = 9630
End
Begin VB.CommandButton btnMapNext
Height = 450
Left = 9180
Picture = "rdIconConfig.frx":058A
Style = 1 'Graphical
TabIndex = 33
ToolTipText = "Scroll the RD map to the right"
Top = 45
Width = 450
End
Begin VB.CommandButton btnMapPrev
Height = 450
Left = 45
Picture = "rdIconConfig.frx":0ACF
Style = 1 'Graphical
TabIndex = 37
ToolTipText = "Scroll the RD map to the left"
Top = 45
Width = 435
End
Begin VB.PictureBox picCover
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 555
Left = -45
ScaleHeight = 555
ScaleWidth = 570
TabIndex = 38
Top = 0
Width = 570
End
Begin VB.PictureBox back
Appearance = 0 'Flat
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 555
Left = 9150
ScaleHeight = 555
ScaleWidth = 600
TabIndex = 39
Top = 0
Width = 600
End
Begin VB.PictureBox picRdMap
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
DragIcon = "rdIconConfig.frx":101C
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 500
Index = 0
Left = 540
OLEDropMode = 1 'Manual
ScaleHeight = 33
ScaleMode = 3 'Pixel
ScaleWidth = 33
TabIndex = 51
Top = 15
Width = 500
End
End
Begin VB.PictureBox btnArrowUp
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 180
Left = 9900
Picture = "rdIconConfig.frx":20E6
ScaleHeight = 180
ScaleWidth = 270
TabIndex = 35
ToolTipText = "Hide the map"
Top = 4530
Visible = 0 'False
Width = 270
End
Begin VB.CommandButton rdMapRefresh
Height = 270
Left = 9945
Picture = "rdIconConfig.frx":2442
Style = 1 'Graphical
TabIndex = 41
ToolTipText = "Refresh the icon map"
Top = 4770
Visible = 0 'False
Width = 210
End
Begin VB.Frame FrameFolders
Caption = "Folders"
Height = 4500
Left = 180
TabIndex = 9
ToolTipText = "The current list of known icon folders"
Top = 15
Width = 4005
Begin VB.PictureBox btnSettingsUp
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 180
Left = 990
Picture = "rdIconConfig.frx":284B
ScaleHeight = 180
ScaleWidth = 270
TabIndex = 101
ToolTipText = "Hide the registry form showing where details are being read from and saved to."
Top = 3990
Visible = 0 'False
Width = 270
End
Begin VB.Frame fraConfigSource
BorderStyle = 0 'None
Caption = "Frame1"
Height = 495
Left = 1800
TabIndex = 64
Top = 3960
Visible = 0 'False
Width = 2055
Begin VB.ComboBox cmbDefaultDock
Height = 330
ItemData = "rdIconConfig.frx":2BA7
Left = 570
List = "rdIconConfig.frx":2BB1
Locked = -1 'True
TabIndex = 65
Text = "RocketDock"
ToolTipText = "Indicates the default dock, Rocketdock or SteamyDock. Cannot be changed here but only in the dock settings utility."
Top = 0
Width = 1515
End
Begin VB.Label lblDefaultDock
Caption = "Dock"
Height = 225
Left = 0
TabIndex = 66
Top = 45
Width = 555
End
End
Begin VB.PictureBox btnSettingsDown
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 180
Left = 930
Picture = "rdIconConfig.frx":2BCD
ScaleHeight = 180
ScaleWidth = 375
TabIndex = 61
ToolTipText = "Show where the details are being read from and saved to."
Top = 3990
Visible = 0 'False
Width = 375
End
Begin CCRTreeView.TreeView folderTreeView
Height = 3210
Left = 135
TabIndex = 55
ToolTipText = "These are the icon folders available to Rocketdock"
Top = 630
Width = 3735
_ExtentX = 6588
_ExtentY = 5662
VisualTheme = 1
LineStyle = 1
LabelEdit = 1
ShowTips = -1 'True
Indentation = 38
End
Begin VB.TextBox textCurrentFolder
Height = 330
Left = 135
TabIndex = 21
Text = "textCurrentFolder"
ToolTipText = "The selected folder path"
Top = 225
Width = 3735
End
Begin VB.CommandButton btnRemoveFolder
Caption = "-"
Height = 345
Left = 120
Style = 1 'Graphical
TabIndex = 20
ToolTipText = "This button can remove a custom folder from the treeview above"
Top = 3990
Width = 360
End
Begin VB.CommandButton btnAddFolder
Caption = "+"
Height = 345
Left = 525
Style = 1 'Graphical
TabIndex = 10
ToolTipText = "Select a target folder to add to the treeview list above"
Top = 3990
Width = 360
End
End
Begin VB.PictureBox btnArrowDown
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 180
Left = 9780
Picture = "rdIconConfig.frx":2E77
ScaleHeight = 180
ScaleWidth = 375
TabIndex = 34
ToolTipText = "Show the Rocketdock Map"
Top = 4530
Width = 375
End
Begin VB.Frame fraProperties
Caption = "Properties"
Height = 4800
Left = 4290
TabIndex = 0
ToolTipText = "The Icon Properties Window"
Top = 5370
Width = 5895
Begin VB.Frame fraLblAppToTerminate
BorderStyle = 0 'None
Height = 360
Left = 165
TabIndex = 121
Top = 4320
Width = 4035
Begin VB.TextBox txtAppToTerminate
Height = 345
Left = 1230
TabIndex = 124
ToolTipText = "Any program that must be terminated prior to the main program initiation will be shown here"
Top = 0
Width = 2205
End
Begin VB.CommandButton btnAppToTerminate
Caption = "..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 3510
Style = 1 'Graphical
TabIndex = 123
ToolTipText = "Press to select a program to terminate prior to the main program initiation"
Top = 0
Width = 360
End
Begin VB.Label lblAppToTerminate
Caption = "Terminate App :"
Height = 255
Left = 0
TabIndex = 122
ToolTipText = "If you want to run a second program after the program initiation, select it here"
Top = 0
Width = 1305
End
End
Begin VB.Frame fraOptionButtons
BorderStyle = 0 'None
Height = 660
Left = 4125
TabIndex = 116
Top = 3840
Width = 1725
Begin VB.OptionButton optRunSecondAppAfterward
Enabled = 0 'False
Height = 240
Left = 45
TabIndex = 118
ToolTipText = "Determines whether the secondary program is run after the main program has started"
Top = 270
Width = 270
End
Begin VB.OptionButton optRunSecondAppBeforehand
Caption = "Run Beforehand"
Enabled = 0 'False
Height = 225
Left = 45
TabIndex = 117
ToolTipText = "Determines whether the secondary program is run before the main program"
Top = 15
Value = -1 'True
Width = 240
End
Begin VB.Label lblRunSecondAppAfterward
Caption = "Run Afterward"
Enabled = 0 'False
Height = 165
Left = 330
TabIndex = 120
Tag = "this extra label compensates for the poor quality greying out on label captions"
ToolTipText = "Determines whether the secondary program is run after the main program has started"
Top = 270
Width = 1335
End
Begin VB.Label lblRunSecondAppBeforehand
Caption = "Run Beforehand"
Enabled = 0 'False
Height = 165
Left = 330
TabIndex = 119
Tag = "this extra label compensates for the poor quality greying out on label captions"
ToolTipText = "Determines whether the secondary program is run before the main program"
Top = 15
Width = 1335
End
End
Begin VB.CheckBox chkDisabled
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 2925
TabIndex = 114
ToolTipText = "If you want extra options to appear when you right click on an icon, enable this checkbox"
Top = 3045
Width = 240
End
Begin VB.PictureBox picMoreConfigUp
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 180
Left = 3570
Picture = "rdIconConfig.frx":3121
ScaleHeight = 180
ScaleWidth = 270
TabIndex = 102
ToolTipText = "Hides the extra configuration section"
Top = 3360
Visible = 0 'False
Width = 270
End
Begin VB.Frame fraLblRdIconNumber
BorderStyle = 0 'None
Height = 1065
Left = 4365
TabIndex = 99
Top = 1875
Width = 1320
Begin VB.Label lblRdIconNumber
Alignment = 2 'Center
AutoSize = -1 'True
Caption = "1"
BeginProperty Font
Name = "Trebuchet MS"
Size = 45
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00404040&
Height = 1140
Left = 390
TabIndex = 100
ToolTipText = "This is dock icon number one."
Top = -75
Width = 480
End
End
Begin VB.Frame fraLblSecondApp
BorderStyle = 0 'None
Height = 495
Left = 285
TabIndex = 95
Top = 3885
Width = 4005
Begin VB.CommandButton btnSecondApp
Caption = "..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 3390
Style = 1 'Graphical
TabIndex = 97
ToolTipText = "Press to select a second program to run after the main program initiation"
Top = 30
Width = 360
End
Begin VB.TextBox txtSecondApp
Height = 345
Left = 1110
TabIndex = 96
ToolTipText = "Any second program to run after the main program initiation will be shown here"
Top = 30
Width = 2205
End
Begin VB.Label lblSecondApp
Caption = "Second App :"
Height = 225
Left = 15
TabIndex = 98
ToolTipText = "If you want to run a second program after the program initiation, select it here"
Top = 75
Width = 1560
End
End
Begin VB.Frame fraLblQuickLaunch
BorderStyle = 0 'None
Height = 285
Left = 45
TabIndex = 89
Top = 3615
Width = 1590
Begin VB.CheckBox chkQuickLaunch
Caption = "Quick Launch :"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1350
TabIndex = 90
ToolTipText = "Launch an application before the bounce has completed"
Top = 0
Width = 180
End
Begin VB.Label lblQuickLaunch
Caption = "Quick Launch :"
Height = 225
Left = 165
TabIndex = 91
ToolTipText = "Launch an application before the bounce has completed"
Top = 0
Width = 1215
End
End
Begin VB.Frame fraLblConfirmDialogAfter
BorderStyle = 0 'None
Height = 210
Left = 1695
TabIndex = 86
Top = 3345
Width = 1680
Begin VB.CheckBox chkConfirmDialogAfter
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1237
TabIndex = 87
ToolTipText = "Shows Confirmation Dialog after the command has run."
Top = -15
Width = 240
End
Begin VB.Label lblConfirmDialogAfter
Caption = "Confirm After :"
Height = 225
Left = 0
TabIndex = 88
ToolTipText = "Shows Confirmation Dialog after the command has run."
Top = -15
Width = 1110
End
End
Begin VB.Frame fraLblConfirmDialog
BorderStyle = 0 'None
Height = 255
Left = 30
TabIndex = 83
Top = 3315
Width = 1575
Begin VB.CheckBox chkConfirmDialog
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1365
TabIndex = 85
ToolTipText = "Adds a Confirmation Dialog prior to the command running allowing you to say yes or no at runtime"
Top = 15
Width = 180
End
Begin VB.Label lblConfirmDialog
Caption = "Confirm Prior :"
Height = 225
Left = 240
TabIndex = 84
ToolTipText = "Adds a Confirmation Dialog prior to the command running allowing you to say yes or no at runtime"
Top = 0
Width = 1215
End
End
Begin VB.Frame fraLblPopUp
BorderStyle = 0 'None
Height = 255
Left = 45
TabIndex = 81
Top = 3045
Width = 1320
Begin VB.Label lblRunElevated
Caption = "Run Elevated :"
Height = 225
Left = 210
TabIndex = 82
ToolTipText = "If you want extra options to appear when you right click on an icon, enable this checkbox"
Top = -15
Width = 1200
End
End
Begin VB.Frame fraLblOpenRunning
BorderStyle = 0 'None
Height = 330
Left = 90
TabIndex = 79
Top = 2655
Width = 1245
Begin VB.Label lblOpenRunning
Caption = "New instance:"
Height = 225
Left = 135
TabIndex = 80
Top = 15
Width = 1515
End
End
Begin VB.Frame fraLblRun
BorderStyle = 0 'None
Height = 330
Left = 75
TabIndex = 77
Top = 2265
Width = 1260
Begin VB.Label lblRun
Caption = "Window State:"
Height = 225
Left = 135
TabIndex = 78
Top = 15
Width = 1215
End
End
Begin VB.Frame fraLblArgument
BorderStyle = 0 'None
Height = 330
Left = 90
TabIndex = 75
Top = 1890
Width = 1260
Begin VB.Label lblArgument
Caption = "Arguments:"
Height = 225
Left = 345
TabIndex = 76
Top = 15
Width = 1215
End
End
Begin VB.Frame fraLblStartIn
BorderStyle = 0 'None
Height = 315
Left = 120
TabIndex = 73
Top = 1485
Width = 1245
Begin VB.Label lblStartIn
Caption = "Start in:"
Height = 225
Left = 600
TabIndex = 74
Top = 15
Width = 1215
End
End
Begin VB.Frame fraLblTarget
BorderStyle = 0 'None
Height = 330
Left = 60
TabIndex = 71
Tag = "This frame is only here to support a mouseover for the label"
Top = 1080
Width = 1290
Begin VB.Label lblTarget
Caption = "Target:"
Height = 225
Left = 720
TabIndex = 72
Top = 15
Width = 1215
End
End
Begin VB.Frame fraLblCurrentIcon
BorderStyle = 0 'None
Height = 255
Left = 105
TabIndex = 69
Tag = "This frame is only here to support a mouseover for the label"
Top = 735
Width = 1260
Begin VB.Label lblCurrentIcon
Caption = "Current Icon:"
Height = 225
Left = 255
TabIndex = 70
Top = 15
Width = 1215
End
End
Begin VB.PictureBox picMoreConfigDown
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 180
Left = 3510
Picture = "rdIconConfig.frx":347D
ScaleHeight = 180
ScaleWidth = 375
TabIndex = 62
ToolTipText = "Shows extra configuration items"
Top = 3360
Width = 375
End
Begin VB.CommandButton btnIconSelect
Caption = "..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 5370
Style = 1 'Graphical
TabIndex = 60
ToolTipText = "Press to select an icon manually."
Top = 690
Width = 345
End
Begin VB.TextBox txtDbg02
Height = 315
Left = 5370
TabIndex = 59
Text = "txtDbg01"
Top = 2370
Visible = 0 'False
Width = 345
End
Begin VB.TextBox txtDbg01
Height = 315
Left = 5370
TabIndex = 58
Text = "txtDbg01"
Top = 1980
Visible = 0 'False
Width = 345
End
Begin VB.PictureBox picBusy
Appearance = 0 'Flat
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 795
Left = 3660
Picture = "rdIconConfig.frx":3727
ScaleHeight = 795
ScaleWidth = 825
TabIndex = 54
ToolTipText = "The program is doing something..."
Top = 1920
Visible = 0 'False
Width = 825
End
Begin VB.CommandButton btnSet
Caption = "&Set"
Enabled = 0 'False
Height = 345
Left = 4275
Style = 1 'Graphical
TabIndex = 32
ToolTipText = "Sets the icon characteristics but you will need to press the save and restart button to make it 'fix' on the running dock."
Top = 3195
Width = 1470
End
Begin VB.TextBox txtCurrentIcon
Height = 345
Left = 1395
TabIndex = 18
Text = "txtCurrentIcon"
ToolTipText = "Double click on an image above to set the current icon"
Top = 690
Width = 3915
End
Begin VB.CommandButton btnSelectStart
Caption = "..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 5370
Style = 1 'Graphical
TabIndex = 14
ToolTipText = "Select a start folder"
Top = 1470
Width = 345
End
Begin VB.CommandButton btnTarget
Caption = "..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
Left = 5370
Style = 1 'Graphical
TabIndex = 11
ToolTipText = "Press to select a target file (or right click for a folder)"
Top = 1080
Width = 345
End
Begin VB.CheckBox chkRunElevated
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1395
TabIndex = 7
ToolTipText = "If you want extra options to appear when you right click on an icon, enable this checkbox"
Top = 3045
Width = 180
End
Begin VB.ComboBox cmbOpenRunning
Height = 330
ItemData = "rdIconConfig.frx":41A2
Left = 1395
List = "rdIconConfig.frx":41AF
TabIndex = 6
Text = "Always"
ToolTipText = "Choose what to do if the chosen app is already running"
Top = 2640
Width = 2145
End
Begin VB.ComboBox cmbRunState
Height = 330
ItemData = "rdIconConfig.frx":41D6
Left = 1395
List = "rdIconConfig.frx":41E3
TabIndex = 5
Text = "Normal"
ToolTipText = "Window mode for the program to operate within"
Top = 2250
Width = 2145
End
Begin VB.TextBox txtArguments
Height = 345
Left = 1395
TabIndex = 4
ToolTipText = "Add any additional arguments that the target file operation requires, eg. -s -t 00 -f "
Top = 1860
Width = 2130
End
Begin VB.TextBox txtStartIn
Height = 345
Left = 1395
TabIndex = 3
ToolTipText = "If the operation needs to be performed in a particular folder select it here"
Top = 1470
Width = 3915
End
Begin VB.TextBox txtTarget
Height = 345
Left = 1395
TabIndex = 2
ToolTipText = "The target you wish to run, a file or a folder"
Top = 1080
Width = 3915
End
Begin VB.TextBox txtLabelName
Height = 345
Left = 1395
TabIndex = 1
ToolTipText = "The name of the icon as it appears on the dock"
Top = 300
Width = 4305
End
Begin VB.Frame frmLblAutoHideDock
BorderStyle = 0 'None
Height = 270
Left = 1680
TabIndex = 92
Top = 3615
Width = 1455
Begin VB.CheckBox chkAutoHideDock
Caption = "Auto Hide Dock :"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 225
Left = 1245
TabIndex = 93
ToolTipText = "Automatically hides the dock for the default hiding period when the program is initiated"
Top = 0
Width = 240
End
Begin VB.Label lblchkAutoHideDock
Caption = "Auto Hide :"
Height = 225
Left = 285
TabIndex = 94
ToolTipText = "Automatically hides the dock for the default hiding period when the program is initiated"
Top = 0
Width = 870
End