📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 0 'None
ClientHeight = 7200
ClientLeft = 210
ClientTop = 1380
ClientWidth = 9000
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 7200
ScaleWidth = 9000
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 7044
Left = 108
TabIndex = 0
Top = 12
Width = 8772
Begin VB.Timer Timer1
Interval = 8000
Left = 1236
Top = 4812
End
Begin VB.Image Image1
BorderStyle = 1 'Fixed Single
Height = 540
Left = 2745
Picture = "frmSplash.frx":2CCA
Top = 5970
Width = 540
End
Begin VB.Label Label1
Caption = "欢迎使用本软件"
BeginProperty Font
Name = "华文新魏"
Size = 16.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000080&
Height = 450
Left = 3465
TabIndex = 4
Top = 6120
Width = 2835
End
Begin VB.Image imgLogo
Appearance = 0 'Flat
Height = 3144
Left = 2448
Picture = "frmSplash.frx":310C
Stretch = -1 'True
Top = 2556
Width = 3600
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "版本"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 5364
TabIndex = 2
Top = 1956
Width = 516
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 = 768
Left = 1044
TabIndex = 3
Top = 1116
Width = 5232
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
Caption = "江阴众和电力仪表公司授权"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 252
Left = 2736
TabIndex = 1
Top = 540
Width = 2760
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()
Timer1.Enabled = True
lblVersion.Caption = "版本 " & "2" & "." & App.Revision & App.Minor & " " & "2000-" & Year(Date)
lblProductName.Caption = "多费率电能表设置软件"
End Sub
Private Sub Frame1_Click()
Unload Me
FrmMDI.Show
End Sub
Private Sub Image1_Click()
Unload Me
FrmMDI.Show
End Sub
Private Sub imgLogo_Click()
Unload Me
FrmMDI.Show
End Sub
Private Sub Timer1_Timer()
Timer1.Enabled = False
Unload Me
FrmMDI.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -