📄 frmdlg.frm
字号:
VERSION 5.00
Begin VB.Form frmDlg
Caption = "SuperEncrypt"
ClientHeight = 945
ClientLeft = 60
ClientTop = 450
ClientWidth = 4905
ControlBox = 0 'False
LinkTopic = "Form1"
ScaleHeight = 63
ScaleMode = 3 'Pixel
ScaleWidth = 327
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CheckBox ChkIndec
Caption = "开启防破解功能"
Height = 255
Left = 2205
TabIndex = 4
Top = 150
Width = 1575
End
Begin VB.CommandButton cmdCancel
Caption = "取消"
Height = 375
Left = 3840
TabIndex = 3
Top = 480
Width = 975
End
Begin VB.CommandButton cmdOK
Caption = "确定"
Height = 375
Left = 3840
TabIndex = 2
Top = 120
Width = 975
End
Begin VB.TextBox txtMain
Height = 270
Left = 120
TabIndex = 0
Text = "txtMain"
Top = 480
Width = 3615
End
Begin VB.Label lblIntr
AutoSize = -1 'True
Caption = "请输入密码:"
Height = 180
Left = 120
TabIndex = 1
Top = 180
Width = 990
End
End
Attribute VB_Name = "frmDlg"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
txtMain.Text = ""
Me.Hide
End Sub
Private Sub cmdOK_Click()
If Len(txtMain) = 0 Then
MsgBox "密码不能为空!"
Else
Me.Hide
End If
End Sub
Private Sub txtMain_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 13 Then
Call cmdOK_Click
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -