-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmGuide.frm
More file actions
executable file
·899 lines (881 loc) · 29.6 KB
/
frmGuide.frm
File metadata and controls
executable file
·899 lines (881 loc) · 29.6 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
VERSION 5.00
Begin VB.Form frmGuide
BackColor = &H00404040&
BorderStyle = 0 'None
Caption = "Lock Pro 向导"
ClientHeight = 5295
ClientLeft = 0
ClientTop = 0
ClientWidth = 7215
LinkTopic = "Form1"
ScaleHeight = 5295
ScaleWidth = 7215
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.PictureBox picStep
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 855
Left = 6120
ScaleHeight = 855
ScaleWidth = 1095
TabIndex = 5
Top = 480
Width = 1095
Begin VB.Label lblStep
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "/9"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C0C0&
Height = 465
Index = 1
Left = 600
TabIndex = 7
Top = 240
Width = 360
End
Begin VB.Label lblStep
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "1"
BeginProperty Font
Name = "微软雅黑"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 690
Index = 0
Left = 240
TabIndex = 6
Top = 0
Width = 330
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 6
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 30
Top = 480
Width = 7215
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Remolock"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 17
Left = 3120
TabIndex = 32
Top = 1080
Width = 1695
End
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = $"frmGuide.frx":0000
BeginProperty Font
Name = "微软雅黑"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1455
Index = 16
Left = 3120
TabIndex = 31
Top = 1680
Width = 3780
End
Begin LockPro.PngImage pngPic
Height = 1815
Index = 6
Left = 240
Top = 1080
Width = 2580
_ExtentX = 4551
_ExtentY = 3201
Image = "frmGuide.frx":008D
OLEdrop = 1
Props = 5
End
End
Begin VB.Timer tmrSFrm
Enabled = 0 'False
Interval = 1
Left = 2040
Top = 0
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 0
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 0
Top = 480
Width = 7215
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = "Lock Pro 是一款优秀的锁屏软件,此向导将引导您认识 Lock Pro 的基本功能"
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 915
Index = 1
Left = 2760
TabIndex = 4
Top = 1800
Width = 3780
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "你好,我叫 Lock Pro!"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 0
Left = 2760
TabIndex = 3
Top = 1200
Width = 3735
End
Begin LockPro.PngImage pngLogo
Height = 2040
Index = 0
Left = 480
Top = 960
Width = 2025
_ExtentX = 3572
_ExtentY = 3598
Image = "frmGuide.frx":CCCB
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 7
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 26
Top = 480
Width = 7215
Begin LockPro.PngImage pngPic
Height = 1560
Index = 5
Left = 240
Top = 1200
Width = 2610
_ExtentX = 4604
_ExtentY = 2752
Image = "frmGuide.frx":141A0
OLEdrop = 1
Props = 5
End
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = $"frmGuide.frx":277EA
BeginProperty Font
Name = "微软雅黑"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1455
Index = 15
Left = 3120
TabIndex = 28
Top = 1680
Width = 3780
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "包容的心"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 14
Left = 3120
TabIndex = 27
Top = 1080
Width = 1440
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 5
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 20
Top = 480
Width = 7215
Begin LockPro.PngImage pngPic
Height = 2115
Index = 4
Left = 360
Top = 960
Width = 2535
_ExtentX = 4471
_ExtentY = 3731
Image = "frmGuide.frx":2787A
OLEdrop = 1
Props = 5
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "为触屏而生"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 11
Left = 3120
TabIndex = 22
Top = 1080
Width = 1800
End
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = "Lock Pro 对触屏计算机做了特殊的优化,更大的按钮可以使您的触摸体验更舒适。软件丰富的切换效果得益于 Naree 技术,每一次点击都尽显绚丽"
BeginProperty Font
Name = "微软雅黑"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1455
Index = 10
Left = 3120
TabIndex = 21
Top = 1680
Width = 3780
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 4
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 17
Top = 480
Width = 7215
Begin LockPro.PngImage pngPic
Height = 2040
Index = 3
Left = 360
Top = 960
Width = 2460
_ExtentX = 4339
_ExtentY = 3598
Image = "frmGuide.frx":2F5BD
OLEdrop = 1
Props = 5
End
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = "通过菜单您可以开启 Lock Pro 设置。软件提供了丰富的选项,以满足您对锁屏的各种需求。如有选项设置不当,Lock Pro 会在窗口左下角提示您"
BeginProperty Font
Name = "微软雅黑"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1455
Index = 9
Left = 3120
TabIndex = 19
Top = 1680
Width = 3780
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "自定义您的 Lock Pro"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 8
Left = 3120
TabIndex = 18
Top = 1080
Width = 3375
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 3
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 14
Top = 480
Width = 7215
Begin LockPro.PngImage pngPic
Height = 1530
Index = 2
Left = 360
Top = 1200
Width = 2535
_ExtentX = 4471
_ExtentY = 2699
Image = "frmGuide.frx":3E631
OLEdrop = 1
Props = 5
End
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = $"frmGuide.frx":7CC3F
BeginProperty Font
Name = "微软雅黑"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1455
Index = 7
Left = 3120
TabIndex = 16
Top = 1680
Width = 3780
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "锁屏功能"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 6
Left = 3120
TabIndex = 15
Top = 1080
Width = 1440
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 2
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 11
Top = 480
Width = 7215
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = "双击 Lock Pro 栏的绿色按钮可以立即锁定屏幕,您也可以点击右侧的菜单按钮或按下设置好的快捷键来锁屏"
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1515
Index = 5
Left = 3000
TabIndex = 13
Top = 1680
Width = 3780
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "快速锁屏"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 4
Left = 3000
TabIndex = 12
Top = 1080
Width = 1440
End
Begin LockPro.PngImage pngPic
Height = 1665
Index = 1
Left = 240
Top = 1200
Width = 2625
_ExtentX = 4630
_ExtentY = 2937
Image = "frmGuide.frx":7CCCD
OLEdrop = 1
Props = 5
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 1
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 8
Top = 480
Width = 7215
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = "Lock Pro 运行时会在屏幕顶端显示 Lock Pro 栏。Lock Pro 栏会自动隐藏,用鼠标拖拽绿色的按钮可以改变 Lock Pro 栏的位置"
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1275
Index = 3
Left = 3000
TabIndex = 10
Top = 1680
Width = 3780
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "认识 Lock Pro 栏"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 2
Left = 3000
TabIndex = 9
Top = 1080
Width = 2760
End
Begin LockPro.PngImage pngPic
Height = 2220
Index = 0
Left = 240
Top = 840
Width = 2520
_ExtentX = 4445
_ExtentY = 3916
Image = "frmGuide.frx":90980
OLEdrop = 1
End
End
Begin VB.PictureBox picFrm
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Height = 3735
Index = 8
Left = 0
ScaleHeight = 3735
ScaleWidth = 7215
TabIndex = 23
Top = 480
Width = 7215
Begin LockPro.PngImage pngLogo
Height = 2040
Index = 2
Left = 480
Top = 960
Width = 2025
_ExtentX = 3572
_ExtentY = 3598
Image = "frmGuide.frx":9A8FD
End
Begin VB.Label lblFirst
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "退出向导之后会自动启动设置"
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 315
Left = 2880
TabIndex = 29
Top = 2880
Visible = 0 'False
Width = 3120
End
Begin VB.Label lblShow
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "很高兴认识您"
BeginProperty Font
Name = "微软雅黑"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 465
Index = 13
Left = 2880
TabIndex = 25
Top = 1080
Width = 2160
End
Begin VB.Label lblShow
BackStyle = 0 'Transparent
Caption = "您已经初步认识了 Lock Pro,现在您可以尽情体验 Lock Pro 的众多功能了"
BeginProperty Font
Name = "微软雅黑"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1335
Index = 12
Left = 2880
TabIndex = 24
Top = 1680
Width = 3540
End
End
Begin LockPro.PngImage pngCls
Height = 495
Left = 6720
ToolTipText = "关闭"
Top = 0
Width = 495
_ExtentX = 873
_ExtentY = 873
BackColor = -2147483633
Image = "frmGuide.frx":A1DD2
Opacity = 0
OLEdrop = 1
Props = 5
End
Begin VB.Label lblCnl
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "退出向导"
BeginProperty Font
Name = "微软雅黑"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 405
Left = 3000
TabIndex = 2
Top = 4560
Width = 1200
End
Begin LockPro.PngImage pngBack
Height = 585
Left = 240
Top = 4480
Width = 585
_ExtentX = 1032
_ExtentY = 1032
Image = "frmGuide.frx":A2268
Mirror = 1
OLEdrop = 1
Props = 5
End
Begin LockPro.PngImage pngNext
Height = 585
Left = 6360
Top = 4485
Width = 585
_ExtentX = 1032
_ExtentY = 1032
Image = "frmGuide.frx":A32C5
OLEdrop = 1
Props = 5
End
Begin VB.Label lblCap
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Lock Pro 使用向导"
BeginProperty Font
Name = "微软雅黑"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C0C0C0&
Height = 300
Left = 120
TabIndex = 1
Top = 75
Width = 1770
End
Begin VB.Image imgCls
Height = 480
Left = 6720
Picture = "frmGuide.frx":A4322
Stretch = -1 'True
Top = 0
Width = 480
End
End
Attribute VB_Name = "frmGuide"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim lNow As Long
Dim Shdw As cShadow
Private Sub Form_Load()
lblCap.Top = (480 - lblCap.Height) / 2
Set Shdw = New cShadow
With Shdw
.Transparency = 120
.Depth = 10
.Shadow Me
End With
lNow = 0
SetZOrder picFrm(0)
lblFirst.Visible = CBool(ReadCon("First"))
pngLogo(0).Opacity = 0
pngLogo(0).FadeInOut 100, 3
pngBack.Opacity = 0
pngNext.Opacity = 0
pngNext.FadeInOut 100, 3
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
On Error Resume Next
Static ox!, oy!
With Me
If Button = 1 Then
.Move .Left - ox + x, .Top - oy + y
Else
ox = x
oy = y
End If
End With
End Sub
Private Sub Form_Unload(Cancel As Integer)
If ReadCon("First") = "1" Then frmSettings.Show
End Sub
Private Sub lblCap_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Form_MouseMove Button, Shift, x, y
End Sub
Private Sub lblCnl_Click()
Unload Me
End Sub
Private Sub pngBack_Click(ByVal Button As Integer)
If pngBack.Opacity <> 0 And lNow <= 1 Then pngBack.FadeInOut 0, 3
If pngNext.Opacity < 100 And lNow = 8 Then pngNext.FadeInOut 100, 3
If lNow = 0 Then
Exit Sub
End If
lNow = lNow - 1
lblStep(0).Caption = lNow + 1
picFrm(lNow).Left = -picFrm(0).Width
SetZOrder picFrm(lNow)
tmrSFrm.Tag = "Back"
tmrSFrm.Enabled = True
End Sub
Private Sub pngBack_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
If lNow = 0 Then Exit Sub
pngBack.FadeInOut 80, 5
End Sub
Private Sub pngBack_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If lNow = 0 Then Exit Sub
pngBack.FadeInOut 100, 2
End Sub
Private Sub pngCls_Click(ByVal Button As Integer)
Unload Me
End Sub
Private Sub pngCls_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
pngCls.FadeInOut 80, 5
End Sub
Private Sub pngCls_MouseEnter()
pngCls.FadeInOut 50, 5
End Sub
Private Sub pngCls_MouseExit()
pngCls.FadeInOut 0, 5
End Sub
Private Sub pngCls_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
pngCls.FadeInOut 0, 5
End Sub
Private Sub pngNext_Click(ByVal Button As Integer)
If pngNext.Opacity <> 0 And lNow >= 7 Then pngNext.FadeInOut 0, 3
If pngBack.Opacity < 100 And lNow >= 0 Then pngBack.FadeInOut 100, 3
If lNow = 8 Then
Exit Sub
End If
lNow = lNow + 1
lblStep(0).Caption = lNow + 1
picFrm(lNow).Left = picFrm(0).Width
SetZOrder picFrm(lNow)
tmrSFrm.Tag = ""
tmrSFrm.Enabled = True
End Sub
Private Sub pngNext_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
If lNow >= 7 Then Exit Sub
pngNext.FadeInOut 80, 5
End Sub
Private Sub pngNext_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If lNow >= 7 Then Exit Sub
pngNext.FadeInOut 100, 2
End Sub
Sub SetZOrder(zCtrl As Control)
zCtrl.ZOrder 0
picStep.ZOrder 0
End Sub
Private Sub tmrSFrm_Timer()
With picFrm(CInt(lNow))
.Left = .Left + GetMoveNum(0, .Left, 5)
If tmrSFrm.Tag = "" Then
picFrm(CInt(lNow) - 1).Left = .Left - .Width
Else
picFrm(CInt(lNow) + 1).Left = .Left + .Width
End If
If GetMoveNum(0, .Left, 5) = 0 Then
.Left = 0
tmrSFrm.Enabled = False
End If
End With
End Sub