📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4245
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "frmSplash.frx":000C
ScaleHeight = 4245
ScaleWidth = 7380
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 4050
Left = 240
TabIndex = 0
Top = 120
Width = 7080
Begin VB.Image imgLogo
Height = 4065
Left = -120
Picture = "frmSplash.frx":4A90
Stretch = -1 'True
Top = 0
Width = 7215
End
Begin VB.Label lblCopyright
Caption = "版权所有:2000计科"
Height = 255
Left = 4440
TabIndex = 2
Top = 2880
Width = 2415
End
Begin VB.Label lblCompany
Caption = "公司:2000计科"
Height = 255
Left = 5160
TabIndex = 1
Top = 3360
Width = 2415
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "版本1.0"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 5835
TabIndex = 3
Top = 2400
Width = 915
End
Begin VB.Label lblProductName
AutoSize = -1 'True
Caption = "介绍"
BeginProperty Font
Name = "宋体"
Size = 32.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 645
Left = 2280
TabIndex = 4
Top = 600
Width = 1320
End
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
form1.Show
End Sub
Private Sub imgLogo_Click()
Unload Me
form1.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -