www.pudn.com > gdqj1a302.zip > Cover.frm
VERSION 5.00
Begin VB.Form fmCover
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4200
ClientLeft = 255
ClientTop = 1410
ClientWidth = 6540
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "Cover.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4200
ScaleWidth = 6540
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
WindowState = 2 'Maximized
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 2500
Left = 7710
Top = 5010
End
Begin VB.Image Image1
Height = 4185
Left = 0
Picture = "Cover.frx":000C
Stretch = -1 'True
Top = 0
Width = 6555
End
End
Attribute VB_Name = "fmCover"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'**************************************************************
' Cover.frm ·âÃæ
'**************************************************************
Option Explicit
Private Sub Form_Load()
Image1.Height = Screen.Height
Image1.width = Screen.width
Timer1.Interval = 3500
Timer1.Enabled = True
End Sub
Private Sub Image1_Click()
Timer1.Enabled = False
Unload Me
End Sub
Private Sub Timer1_Timer()
Timer1.Enabled = False
Unload Me
End Sub