📄 frmqpass.frm
字号:
VERSION 5.00
Begin VB.Form frmQPass
BorderStyle = 1 '虫絬㏕﹚
Caption = "Please enter password..."
ClientHeight = 930
ClientLeft = 45
ClientTop = 330
ClientWidth = 2865
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 930
ScaleWidth = 2865
StartUpPosition = 2 '棵辊いァ
Begin VB.CommandButton cmdCancel
Cancel = -1 'True
Caption = "&Cancel"
Height = 375
Left = 1440
TabIndex = 2
Top = 480
Width = 1335
End
Begin VB.CommandButton cmdOK
Caption = "&OK"
Default = -1 'True
Height = 375
Left = 120
TabIndex = 1
Top = 480
Width = 1215
End
Begin VB.TextBox txtPass
Height = 270
IMEMode = 3 '既ゎ
Left = 120
PasswordChar = "*"
TabIndex = 0
Top = 120
Width = 2655
End
End
Attribute VB_Name = "frmQPass"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public Canceled As Boolean, PasswordEntered As String
Private Sub cmdCancel_Click()
Canceled = True
txtPass.text = ""
Me.Hide
End Sub
Private Sub cmdOK_Click()
PasswordEntered = txtPass.text
End Sub
Private Sub Form_Load()
Canceled = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -