-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathwinsck.frm
executable file
·4105 lines (3825 loc) · 127 KB
/
winsck.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 = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.1#0"; "ieframe.dll"
Begin VB.Form cWinsock
BackColor = &H8000000E&
Caption = "MAD Cafe Manager - Server"
ClientHeight = 9345
ClientLeft = 1500
ClientTop = 2010
ClientWidth = 15060
Icon = "winsck.frx":0000
LinkTopic = "cwinsock"
ScaleHeight = 9345
ScaleWidth = 15060
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdCommand44
Caption = "Command44"
Height = 720
Left = 10560
TabIndex = 191
Top = 600
Width = 990
End
Begin VB.Frame mfrm
BackColor = &H00FFFFFF&
Height = 5055
Index = 9
Left = 2280
TabIndex = 188
Top = 1320
Width = 9615
Begin SHDocVwCtl.WebBrowser WebBrowser1
Height = 4695
Left = 120
TabIndex = 189
Top = 240
Width = 9375
ExtentX = 16536
ExtentY = 8281
ViewMode = 0
Offline = 0
Silent = 0
RegisterAsBrowser= 0
RegisterAsDropTarget= 1
AutoArrange = 0 'False
NoClientEdge = 0 'False
AlignLeft = 0 'False
NoWebView = 0 'False
HideFileNames = 0 'False
SingleClick = 0 'False
SingleSelection = 0 'False
NoFolders = 0 'False
Transparent = 0 'False
ViewID = "{0057D0E0-3573-11CF-AE69-08002B2E1262}"
Location = "http:///"
End
End
Begin VB.Timer tmr
Enabled = 0 'False
Index = 0
Interval = 1000
Left = 4320
Top = 0
End
Begin MSComctlLib.TabStrip TabStrip1
Height = 375
Left = 2040
TabIndex = 32
Top = 6120
Width = 9255
_ExtentX = 16325
_ExtentY = 661
HotTracking = -1 'True
Separators = -1 'True
_Version = 393216
BeginProperty Tabs {1EFB6598-857C-11D1-B16A-00C0F0283628}
NumTabs = 6
BeginProperty Tab1 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Home"
ImageVarType = 2
EndProperty
BeginProperty Tab2 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Window Manager "
ImageVarType = 2
EndProperty
BeginProperty Tab3 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Clipboard Manager"
ImageVarType = 2
EndProperty
BeginProperty Tab4 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Bandwith Manager"
ImageVarType = 2
EndProperty
BeginProperty Tab5 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Website Manager"
ImageVarType = 2
EndProperty
BeginProperty Tab6 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Others"
ImageVarType = 2
EndProperty
EndProperty
End
Begin VB.Timer Timer2
Interval = 30000
Left = 3840
Top = 0
End
Begin VB.ComboBox cmbChooseView
Height = 315
ItemData = "winsck.frx":E859
Left = 8880
List = "winsck.frx":E863
TabIndex = 11
Text = "Icon View"
Top = 1080
Width = 2055
End
Begin VB.Frame Frame1
BackColor = &H00FFFFFF&
Caption = "Main"
Height = 7935
Index = 1
Left = 0
TabIndex = 5
Top = 1320
Width = 2055
Begin MServer.chameleonButton cHome
Height = 495
Left = 120
TabIndex = 190
Top = 360
Width = 1815
_ExtentX = 3201
_ExtentY = 873
BTYPE = 3
TX = "Home"
ENAB = -1 'True
BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
COLTYPE = 1
FOCUSR = 0 'False
BCOL = 15790320
BCOLO = 15790320
FCOL = 16777215
FCOLO = 16777215
MCOL = 12632256
MPTR = 1
MICON = "winsck.frx":E87E
PICN = "winsck.frx":E89A
UMCOL = -1 'True
SOFT = 0 'False
PICPOS = 0
NGREY = 0 'False
FX = 2
HAND = 0 'False
CHECK = 0 'False
VALUE = 0 'False
End
Begin VB.CommandButton hcom
Caption = "Help"
Height = 375
Index = 8
Left = 120
TabIndex = 187
Top = 4680
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Reports"
Height = 495
Index = 7
Left = 120
TabIndex = 186
Top = 4200
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Employee"
Height = 495
Index = 6
Left = 120
TabIndex = 166
Top = 3720
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Advanced"
Height = 495
Index = 5
Left = 120
TabIndex = 134
Top = 3240
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Custom Timers"
Height = 495
Index = 4
Left = 120
TabIndex = 133
Top = 2760
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Users"
Height = 495
Index = 3
Left = 120
TabIndex = 90
Top = 2280
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Printer Management"
Height = 495
Index = 2
Left = 120
TabIndex = 86
Top = 1800
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Token"
Height = 495
Index = 1
Left = 120
TabIndex = 47
Top = 1320
Width = 1815
End
Begin VB.CheckBox aLogin
BackColor = &H00FFFFFF&
Caption = "Auto Login"
CausesValidation= 0 'False
Height = 255
Left = 240
TabIndex = 30
Top = 6960
Width = 1455
End
Begin VB.CheckBox aRenew
BackColor = &H00FFFFFF&
Caption = "Auto Renew"
Height = 255
Left = 240
TabIndex = 29
Top = 7200
Width = 1575
End
Begin VB.CommandButton Command15
Caption = "Refresh"
Height = 315
Left = 120
TabIndex = 28
Top = 6120
Width = 1815
End
Begin VB.CommandButton hcom
Caption = "Price List"
Height = 495
Index = 0
Left = 120
TabIndex = 25
Top = 840
Width = 1815
End
Begin VB.CommandButton cRefresh
Caption = "Search PC"
Height = 315
Left = 120
TabIndex = 19
ToolTipText = "Refresh"
Top = 6480
Width = 1815
End
Begin VB.CheckBox Check1
BackColor = &H00FFFFFF&
Caption = "Minimize on close"
Height = 255
Left = 240
TabIndex = 15
Top = 7440
Width = 1695
End
End
Begin VB.Frame Frame1
Caption = "Frame1"
Height = 2055
Index = 0
Left = 240
TabIndex = 1
Top = 4800
Width = 375
Begin VB.TextBox txtLog
Height = 1335
Left = 0
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 4
Top = 480
Width = 8175
End
Begin VB.TextBox Text1
Height = 375
Left = 0
TabIndex = 3
Text = "dockit"
Top = 0
Width = 4815
End
Begin VB.CommandButton Command1
Caption = "Send"
Height = 375
Left = 5040
TabIndex = 2
Top = 0
Width = 1935
End
End
Begin VB.Timer Timer1
Interval = 1000
Left = 3360
Top = 0
End
Begin MSWinsockLib.Winsock SckUdp
Left = 3000
Top = 0
_ExtentX = 741
_ExtentY = 741
_Version = 393216
Protocol = 1
End
Begin VB.CommandButton cmd
Caption = "0000"
Height = 975
Index = 0
Left = 13440
Picture = "winsck.frx":F42B
TabIndex = 0
Top = 360
Visible = 0 'False
Width = 1095
End
Begin MSWinsockLib.Winsock sock1
Index = 0
Left = 3000
Top = 360
_ExtentX = 741
_ExtentY = 741
_Version = 393216
End
Begin MSComctlLib.ImageList ImageList1
Left = 3480
Top = 480
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 80
ImageHeight = 80
MaskColor = 12632256
UseMaskColor = 0 'False
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 10
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":FCFB
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":1169B
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":12D78
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":146A0
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":15B7A
Key = ""
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":16DFA
Key = ""
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":18217
Key = ""
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":19DC7
Key = ""
EndProperty
BeginProperty ListImage9 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":1B911
Key = ""
EndProperty
BeginProperty ListImage10 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "winsck.frx":1D1FD
Key = ""
EndProperty
EndProperty
End
Begin VB.Frame Frame2
BackColor = &H00FFFFFF&
Caption = "Stat"
Height = 6615
Left = 12120
TabIndex = 10
Top = 1440
Width = 2415
Begin VB.CommandButton Command51
Caption = "Logout"
Height = 375
Left = 360
TabIndex = 179
Top = 6120
Width = 1695
End
Begin VB.CheckBox AppToAll
BackColor = &H00FFFFFF&
Caption = "Apply to all terminals"
Height = 255
Left = 120
TabIndex = 152
Top = 5760
Width = 2055
End
Begin VB.CommandButton Command6
Caption = "Show Details"
Height = 375
Left = 240
TabIndex = 12
Top = 3480
Width = 1935
End
Begin VB.Label ctLeft
Caption = "Time Remaining"
Height = 255
Left = 240
TabIndex = 127
Top = 1920
Width = 1935
End
Begin VB.Label lcDownloaded
Caption = "Downloaded"
Height = 255
Left = 240
TabIndex = 64
Top = 2280
Width = 1935
End
Begin VB.Label lStart
Caption = "Start Time"
Height = 255
Left = 240
TabIndex = 63
Top = 1200
Width = 1935
End
Begin VB.Label lTamount
Caption = "Total Amount"
Height = 255
Left = 240
TabIndex = 62
Top = 2640
Width = 1935
End
Begin VB.Label lTTme
Caption = "Total Time"
Height = 255
Left = 240
TabIndex = 61
Top = 1560
Width = 1935
End
Begin VB.Label lcName
Caption = "Name"
Height = 255
Left = 240
TabIndex = 60
Top = 840
Width = 1935
End
Begin VB.Shape Shape5
Height = 3375
Left = 120
Top = 720
Width = 2175
End
Begin VB.Shape Shape1
Height = 1455
Left = 120
Top = 4200
Width = 2175
End
Begin VB.Label cInfo
BackStyle = 0 'Transparent
Caption = "Unlocked :"
Height = 255
Index = 4
Left = 240
TabIndex = 24
Top = 5280
Width = 1815
End
Begin VB.Label cInfo
BackStyle = 0 'Transparent
Caption = "Free System:"
Height = 255
Index = 3
Left = 240
TabIndex = 23
Top = 5040
Width = 1815
End
Begin VB.Label cInfo
BackStyle = 0 'Transparent
Caption = "Offline :"
Height = 255
Index = 2
Left = 240
TabIndex = 22
Top = 4800
Width = 1815
End
Begin VB.Label cInfo
BackStyle = 0 'Transparent
Caption = "Total :"
Height = 255
Index = 0
Left = 240
TabIndex = 21
Top = 4320
Width = 1815
End
Begin VB.Label cInfo
BackStyle = 0 'Transparent
Caption = "Online :"
Height = 255
Index = 1
Left = 240
TabIndex = 20
Top = 4560
Width = 1815
End
Begin VB.Label lblsEl
BackStyle = 0 'Transparent
Caption = "Selected Terminal "
Height = 375
Left = 240
TabIndex = 13
Top = 360
Width = 2055
End
End
Begin VB.Frame Frame3
BackColor = &H00FFFFFF&
Height = 1215
Left = 3000
TabIndex = 16
Top = 120
Width = 7215
Begin VB.Label sTitle
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "MAD Cafe Manager"
BeginProperty Font
Name = "Cambria"
Size = 24
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 480
TabIndex = 18
Top = 120
Width = 5895
End
Begin VB.Label cfeName
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "MASAC Cyber Cafe (India) U.P."
Height = 255
Left = 1200
TabIndex = 17
Top = 720
Width = 4695
End
End
Begin MSComctlLib.ListView lvwDB
Height = 4695
Left = 12960
TabIndex = 46
Top = 6840
Width = 8775
_ExtentX = 15478
_ExtentY = 8281
LabelEdit = 1
LabelWrap = -1 'True
HideSelection = -1 'True
AllowReorder = -1 'True
FullRowSelect = -1 'True
GridLines = -1 'True
PictureAlignment= 4
_Version = 393217
Icons = "ImageList1"
ForeColor = -2147483640
BackColor = -2147483643
Appearance = 1
NumItems = 0
End
Begin VB.Frame Frm
BackColor = &H00FFFFFF&
Height = 2895
Index = 1
Left = 1200
TabIndex = 31
Top = 6600
Width = 11775
Begin VB.CommandButton Command23
Caption = "Close All Applications"
Height = 375
Left = 6360
TabIndex = 83
Top = 600
Width = 1815
End
Begin VB.CommandButton Command9
Caption = "Remote Desktop"
Enabled = 0 'False
Height = 375
Left = 6360
TabIndex = 82
Top = 1080
Width = 1815
End
Begin VB.Timer atTitle
Enabled = 0 'False
Interval = 2000
Left = 5520
Top = 120
End
Begin VB.CheckBox Check2
BackColor = &H00FFFFFF&
Caption = "Auto Refresh Title"
Height = 255
Left = 2760
TabIndex = 43
Top = 600
Width = 3135
End
Begin VB.CommandButton Command13
Caption = "Get Active Window Title"
Height = 375
Left = 2760
TabIndex = 42
Top = 1440
Width = 3135
End
Begin VB.TextBox caTitle
Height = 405
Left = 2760
TabIndex = 41
Text = "Active Window Title"
Top = 960
Width = 3135
End
Begin VB.CommandButton uDisable
BackColor = &H00FFFFFF&
Caption = "Disable USB"
Height = 375
Left = 360
TabIndex = 35
Top = 1440
Width = 1815
End
Begin VB.CommandButton uEnable
Caption = "Enable USB"
Height = 375
Left = 360
TabIndex = 34
Top = 960
Width = 1815
End
Begin VB.CheckBox cUSB
BackColor = &H00FFFFFF&
Caption = "USB Always Enabled "
Height = 255
Left = 360
TabIndex = 33
Top = 600
Value = 1 'Checked
Width = 1935
End
Begin VB.Shape Shape11
BorderColor = &H8000000A&
Height = 1575
Left = 240
Top = 480
Width = 2175
End
Begin VB.Shape Shape13
BorderColor = &H8000000A&
Height = 1575
Left = 6240
Top = 480
Width = 2055
End
Begin VB.Shape Shape12
BorderColor = &H8000000A&
Height = 1575
Left = 2640
Top = 480
Width = 3375
End
End
Begin VB.Frame Frm
BackColor = &H00FFFFFF&
Height = 2535
Index = 0
Left = 1680
TabIndex = 6
Top = 6840
Width = 9975
Begin VB.Frame Frame8
BackColor = &H00FFFFFF&
Height = 2175
Left = 7440
TabIndex = 163
Top = 120
Visible = 0 'False
Width = 2175
Begin VB.CommandButton Command52
Caption = "Cancel"
Height = 375
Left = 240
TabIndex = 184
Top = 1560
Width = 1695
End
Begin VB.CommandButton Command50
Caption = "Add"
Height = 375
Left = 240
TabIndex = 182
Top = 1080
Width = 1695
End
Begin VB.TextBox Text2
Height = 375
Left = 360
TabIndex = 181
Text = "10"
Top = 600
Width = 1455
End
Begin VB.Label Label13
BackStyle = 0 'Transparent
Caption = "Amount :"
Height = 255
Left = 360
TabIndex = 183
Top = 360
Width = 855
End
End
Begin VB.CommandButton Command43
Caption = "Remote Desktop"
Height = 375
Left = 5160
TabIndex = 165
Top = 840
Width = 1935
End
Begin VB.CommandButton Command42
Caption = "File Transfer"
Height = 375
Left = 5160
TabIndex = 164
Top = 1800
Width = 1935
End
Begin VB.CommandButton Command41
Caption = "Add Charge"
Height = 375
Left = 7560
TabIndex = 162
Top = 840
Width = 1935
End
Begin VB.CommandButton Command40
Caption = "Add Discount"
Height = 375
Left = 7560
TabIndex = 161
Top = 1320
Width = 1935
End
Begin VB.CommandButton Command12
Caption = "Transfer Session"
Height = 375
Left = 5160
TabIndex = 81
Top = 1320
Width = 1935
End
Begin VB.CommandButton Command10
Caption = "Identify Terminal"
Height = 375
Left = 5160
TabIndex = 80
Top = 360
Width = 1935
End
Begin VB.CommandButton Command11
Caption = "Generate Invoice"
Height = 375
Left = 7560
TabIndex = 79
Top = 360
Width = 1935
End
Begin VB.CommandButton Command7
Caption = "Lock Terminal / Close Session"
Height = 375
Left = 600
TabIndex = 14
Top = 1800
Width = 4095
End
Begin VB.CommandButton Command5
Caption = "Unlock Terminal / Unlimited"
Height = 375
Left = 600
TabIndex = 9
Top = 1320
Width = 4095
End
Begin VB.CommandButton Command2
Caption = "New User"
Height = 375
Left = 600
TabIndex = 8
Top = 360
Width = 1935
End
Begin VB.CommandButton Command3
Caption = "Add Time"
Height = 375
Left = 2760
TabIndex = 7
Top = 360
Width = 1935
End
Begin VB.Shape Shape10
BorderColor = &H8000000A&
Height = 1935
Index = 1
Left = 7440
Top = 240
Width = 2175
End
Begin VB.Shape Shape10
BorderColor = &H8000000A&
Height = 2055
Index = 0
Left = 5040
Top = 240
Width = 2175
End
Begin VB.Shape Shape9
BorderColor = &H8000000A&
Height = 1095
Left = 480
Top = 1200
Width = 4335
End
Begin VB.Shape Shape8
BorderColor = &H8000000A&
Height = 615
Left = 480
Top = 240
Width = 4335
End
End
Begin VB.Frame Frm
BackColor = &H00FFFFFF&
Height = 2655
Index = 2
Left = 1920
TabIndex = 36
Top = 6600
Width = 9375
Begin VB.CommandButton clipBrdGet
Caption = "Get From Clipboard"
Height = 375
Left = 5520
TabIndex = 39
Top = 1320
Width = 2295
End
Begin VB.CommandButton clipBrdSet
Caption = "Paste To Clipboard"
Height = 375
Left = 5520
TabIndex = 38
Top = 840
Width = 2295
End
Begin VB.TextBox clipBrd
Height = 1335
Left = 360
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 37
Text = "winsck.frx":1EAFB
Top = 600
Width = 5055
End
Begin VB.Shape Shape16
BorderColor = &H8000000A&
Height = 1575
Left = 240
Top = 480
Width = 7695
End
End
Begin VB.Frame Frm
BackColor = &H00FFFFFF&
Height = 2295
Index = 5
Left = 1440
TabIndex = 78
Top = 6480
Width = 9495
Begin VB.CommandButton Command24
Caption = "Optimize System"
Height = 495
Left = 480
TabIndex = 85
Top = 600
Width = 2175
End
End
Begin VB.Frame Frm
BackColor = &H00FFFFFF&
Height = 2415
Index = 3
Left = 1680
TabIndex = 40
Top = 6720
Width = 9495
Begin VB.CheckBox wDL
BackColor = &H00FFFFFF&
Caption = "Warn Me If a User Exceeds Download Limit"
Height = 255
Left = 480
TabIndex = 55
Top = 840
Value = 1 'Checked
Width = 3495
End
Begin VB.CommandButton nDlSel
Caption = "No Download Limit For Selected PC"
Height = 375
Left = 960
TabIndex = 52
Top = 1680
Width = 2775
End
Begin VB.CheckBox sDlUnlock
BackColor = &H00FFFFFF&
Caption = "No Limit For Unlocked PC"
Height = 315
Left = 480
TabIndex = 51
Top = 1080
Width = 2895
End
Begin VB.TextBox uDllimit
Height = 285
Left = 6120
TabIndex = 50
Text = "100"