-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmSplash.frm
More file actions
159 lines (153 loc) · 4.57 KB
/
frmSplash.frm
File metadata and controls
159 lines (153 loc) · 4.57 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
VERSION 5.00
Begin VB.Form frmSplash
Appearance = 0 '平面
BackColor = &H80000005&
BorderStyle = 3 '雙線固定對話方塊
ClientHeight = 3780
ClientLeft = 255
ClientTop = 1410
ClientWidth = 5865
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3780
ScaleWidth = 5865
ShowInTaskbar = 0 'False
StartUpPosition = 2 '螢幕中央
Begin VB.Timer Timer1
Interval = 2000
Left = 120
Top = 120
End
Begin VB.Label lblLicenseTo
Alignment = 1 '靠右對齊
Appearance = 0 '平面
BackColor = &H80000005&
Caption = "授權給"
ForeColor = &H80000008&
Height = 255
Left = 360
TabIndex = 5
Top = 0
Width = 5295
End
Begin VB.Label lblProductName
Appearance = 0 '平面
AutoSize = -1 'True
BackColor = &H80000005&
Caption = "NotUseComputer"
BeginProperty Font
Name = "新細明體"
Size = 27.75
Charset = 136
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 555
Left = 1800
TabIndex = 4
Top = 720
Width = 3870
End
Begin VB.Label lblPlatform
Alignment = 1 '靠右對齊
Appearance = 0 '平面
AutoSize = -1 'True
BackColor = &H80000005&
Caption = "Microsoft Windows"
BeginProperty Font
Name = "新細明體"
Size = 15.75
Charset = 136
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 315
Left = 3000
TabIndex = 3
Top = 2040
Width = 2655
End
Begin VB.Label lblVersion
Alignment = 1 '靠右對齊
Appearance = 0 '平面
AutoSize = -1 'True
BackColor = &H80000005&
Caption = "版本"
BeginProperty Font
Name = "新細明體"
Size = 12
Charset = 136
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 240
Left = 5160
TabIndex = 2
Top = 2460
Width = 525
End
Begin VB.Label lblWarning
Appearance = 0 '平面
BackColor = &H80000005&
Caption = "警告"
ForeColor = &H80000008&
Height = 195
Left = 480
TabIndex = 1
Top = 3420
Width = 5295
End
Begin VB.Label lblCompany
Appearance = 0 '平面
BackColor = &H80000005&
Caption = "510208"
ForeColor = &H80000008&
Height = 255
Left = 3360
TabIndex = 0
Top = 3120
Width = 2415
End
Begin VB.Image Image1
Appearance = 0 '平面
Height = 960
Left = 360
Picture = "frmSplash.frx":000C
Top = 840
Width = 960
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Form_Load()
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = App.Title
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
Form2.Show
End Sub