-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmSplash.frm
50 lines (46 loc) · 1.22 KB
/
frmSplash.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
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 9195
ClientLeft = 255
ClientTop = 1740
ClientWidth = 14145
ClipControls = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 9195
ScaleWidth = 14145
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Interval = 3000
Left = 4200
Top = 3360
End
Begin VB.Image Image1
Height = 9630
Left = 0
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 0
Width = 14460
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 Frame1_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub