📄 frmmessage.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form frmmessage
BackColor = &H00C0FFFF&
BorderStyle = 0 'None
ClientHeight = 3315
ClientLeft = -150
ClientTop = 0
ClientWidth = 6195
LinkTopic = "Form2"
ScaleHeight = 3468.555
ScaleMode = 0 'User
ScaleWidth = 6371.18
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 100
Left = 7080
Top = 4800
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 135
Left = 1800
TabIndex = 0
Top = 2520
Width = 2535
_ExtentX = 4471
_ExtentY = 238
_Version = 393216
Appearance = 0
End
Begin VB.Label Label3
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "系统版本号:OL1.0"
BeginProperty Font
Name = "隶书"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000C000&
Height = 1215
Left = 2160
TabIndex = 2
Top = 7680
Width = 7335
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "正在系统验证,请稍后......"
BeginProperty Font
Name = "楷体_GB2312"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF80FF&
Height = 735
Left = 1320
TabIndex = 1
Top = 1680
Width = 5655
End
End
Attribute VB_Name = "frmmessage"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
If ProgressBar1.Value < ProgressBar1.Max Then
ProgressBar1.Value = ProgressBar1.Value + 4
Else
Unload Me
frmlogin.Show
Unload frmserver
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -