📄 frmlockform.frm
字号:
VERSION 5.00
Begin VB.Form frmLockForm
Caption = "密码校验"
ClientHeight = 1935
ClientLeft = 60
ClientTop = 345
ClientWidth = 4590
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1935
ScaleWidth = 4590
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
BackColor = &H000000FF&
Caption = "锁屏..."
Height = 1935
Left = 0
TabIndex = 0
Top = 0
Width = 4575
Begin VB.CommandButton cmdExit
Caption = "退出(&E)"
Height = 495
Left = 2520
TabIndex = 4
Top = 1320
Width = 1335
End
Begin VB.CommandButton cmdOk
Caption = "确定(&O)"
Height = 495
Left = 720
TabIndex = 3
Top = 1320
Width = 1215
End
Begin VB.TextBox txtPassWord
Height = 375
IMEMode = 3 'DISABLE
Left = 1800
PasswordChar = "*"
TabIndex = 2
Top = 645
Width = 2415
End
Begin VB.Label Label1
BackColor = &H000000FF&
Caption = "操作员密码"
BeginProperty Font
Name = "宋体"
Size = 11.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 255
Left = 360
TabIndex = 1
Top = 720
Width = 1215
End
End
End
Attribute VB_Name = "frmLockForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdExit_Click()
Unload mdiMain
End Sub
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
Unload mdiMain
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -