📄 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
ScaleHeight = 4245
ScaleWidth = 7380
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command1
Caption = "退出系统"
Height = 495
Left = 5880
TabIndex = 6
Top = 3600
Width = 1215
End
Begin VB.Frame Frame1
Height = 4050
Left = 120
TabIndex = 0
Top = 120
Width = 7080
Begin VB.Image imgLogo
Height = 2385
Left = 360
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 795
Width = 1815
End
Begin VB.Label lblWarning
Caption = " 敬告:鉴于本人水平有限,不当之处望广大师友指教,谢谢!"
Height = 195
Left = 150
TabIndex = 1
Top = 3660
Width = 6765
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "基于Visual Basic6.0程序设计"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 1920
TabIndex = 2
Top = 2640
Width = 3150
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "运行平台:Window98/2000/XP"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 3000
TabIndex = 3
Top = 3000
Width = 2940
End
Begin VB.Label lblProductName
AutoSize = -1 'True
Caption = "感谢使用本系统!"
BeginProperty Font
Name = "宋体"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 2400
TabIndex = 5
Top = 1440
Width = 3960
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
Caption = "毕业设计"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 2400
TabIndex = 4
Top = 720
Width = 1500
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 Form_Load()
lblVersion.Caption = "基于VB6.0程序设计 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = "感谢使用本系统!"
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub Command1_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -