www.pudn.com > VB-KAOQINXITONG.zip > frmSplash.frm
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H00FFFFFF&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3330
ClientLeft = 4410
ClientTop = 2745
ClientWidth = 7185
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 222
ScaleMode = 3 'Pixel
ScaleWidth = 479
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Label lblCaption
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "程序标题"
BeginProperty Font
Name = "楷体_GB2312"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFC0C0&
Height = 525
Index = 1
Left = 4650
TabIndex = 1
Top = 2040
Width = 2235
End
Begin VB.Label lblCaption
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "程序标题"
BeginProperty Font
Name = "楷体_GB2312"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 525
Index = 0
Left = 4605
TabIndex = 0
Top = 2070
Width = 2235
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()
If Me.Picture = 0 Then
lblCaption(0) = gTAppLicInfo.SoftName
lblCaption(1) = lblCaption(0)
Me.Picture = LoadPicture(gTAppLicInfo.FilePicSplash)
End If
End Sub