📄 frmramloadstatus.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmRAMLoadStatus
BorderStyle = 3 'Fixed Dialog
ClientHeight = 1080
ClientLeft = 45
ClientTop = 45
ClientWidth = 5895
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1080
ScaleWidth = 5895
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin MSComctlLib.ProgressBar pbrProgress
Height = 375
Left = 120
TabIndex = 1
Top = 600
Width = 5655
_ExtentX = 9975
_ExtentY = 661
_Version = 393216
Appearance = 1
End
Begin VB.Label lblMsg
Alignment = 2 'Center
Caption = "Please Wait, Loading RAM File..."
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 120
TabIndex = 0
Top = 120
Width = 5655
End
End
Attribute VB_Name = "frmRAMLoadStatus"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub tmrMsgFlash_Timer()
'Hide the text if visible else show the text
If lblLoadingRamMsg.Visible Then
lblLoadingRamMsg.Visible = False
lblLoadingRamMsg.Refresh
Else
lblLoadingRamMsg.Visible = True
lblLoadingRamMsg.Refresh
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -