📄 frmsplash1.frm
字号:
VERSION 5.00
Begin VB.Form FrmSplash1
BorderStyle = 3 'Fixed Dialog
ClientHeight = 5730
ClientLeft = 45
ClientTop = 45
ClientWidth = 7500
ControlBox = 0 'False
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5730
ScaleWidth = 7500
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text1
Height = 495
Left = 3720
TabIndex = 0
Text = "0"
Top = 3720
Visible = 0 'False
Width = 1335
End
Begin VB.Timer Timer1
Interval = 100
Left = 3000
Top = 3720
End
Begin VB.Label Label1
BackColor = &H80000011&
BackStyle = 0 'Transparent
Caption = "水质模糊综合评价系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 1440
TabIndex = 1
Top = 840
Width = 4815
End
Begin VB.Image Image1
Height = 5760
Left = -120
Picture = "FrmSplash1.frx":0000
Stretch = -1 'True
Top = 0
Width = 7680
End
End
Attribute VB_Name = "FrmSplash1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
Text1.Text = Text1 + 1
If Text1.Text > 8 Then
Timer1.Interval = 0
FrmLogin.Show
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -