📄 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 'CenterScreen
Begin VB.Frame Frame1
Height = 4050
Left = 180
TabIndex = 0
Top = 60
Width = 7080
Begin VB.Timer Timer1
Interval = 5000
Left = 5910
Top = 1200
End
Begin VB.Label Label1
Caption = "(中行版)"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3930
TabIndex = 8
Top = 1620
Width = 1035
End
Begin VB.Image imgLogo
Height = 2385
Left = 360
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 795
Width = 1815
End
Begin VB.Label lblCopyright
Caption = "版权所有:浙江省嘉兴农业学校 黄雪峰"
Height = 255
Left = 3360
TabIndex = 3
Top = 3270
Width = 3585
End
Begin VB.Label lblWarning
Caption = "警告:本软件受版权法和国际版权公约保护,未经授权不得复制传播本软件!"
Height = 195
Left = 150
TabIndex = 2
Top = 3660
Width = 6855
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "版本:sy1.0"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 5805
TabIndex = 4
Top = 2700
Width = 1050
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "平台"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 6435
TabIndex = 5
Top = 2340
Width = 420
End
Begin VB.Label lblProductName
AutoSize = -1 'True
Caption = "产品"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 2190
TabIndex = 7
Top = 1230
Width = 675
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
Caption = "使用权属于:"
Height = 255
Left = 120
TabIndex = 1
Top = 240
Width = 6855
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
Caption = "公司产品"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 2355
TabIndex = 6
Top = 705
Width = 1215
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 = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblProductName.Caption = "机关事业单位通用工资管理系统"
lblLicenseTo.Caption = "使用权属于" & syr
lblCompanyProduct.Caption = "欢迎使用黄雪峰的产品:"
lblPlatform.Caption = "使用平台:Windows95/Windows98/Windows NT4.0"
lblVersion.Caption = "版本号:sy1.0"
End Sub
Private Sub Frame1_Click()
Unload Me
frmMAIN.Show
frmLogin.Show 1
End Sub
Private Sub Timer1_Timer()
Unload Me
'frmMAIN.Show
frmLogin.Show 1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -