📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "爱国者黑客挂机锁"
ClientHeight = 1185
ClientLeft = 60
ClientTop = 345
ClientWidth = 5115
LinkTopic = "Form1"
ScaleHeight = 1185
ScaleWidth = 5115
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "取消"
Height = 255
Left = 3480
TabIndex = 5
Top = 720
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 255
Left = 3480
TabIndex = 4
Top = 240
Width = 1335
End
Begin VB.TextBox Text2
Height = 270
IMEMode = 3 'DISABLE
Left = 960
PasswordChar = "*"
TabIndex = 3
Top = 720
Width = 2175
End
Begin VB.TextBox Text1
Height = 270
IMEMode = 3 'DISABLE
Left = 960
PasswordChar = "*"
TabIndex = 2
Top = 240
Width = 2175
End
Begin VB.Label Label2
Caption = "确认密码:"
Height = 255
Left = 0
TabIndex = 1
Top = 720
Width = 975
End
Begin VB.Label Label1
Caption = "挂机密码:"
Height = 255
Left = 0
TabIndex = 0
Top = 240
Width = 1335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Text1.Text = Text2.Text Then
Form2.Show
Else
MsgBox "两次输入的密码不一样请重新输入!", vbOKOnly, "提示:"
Text1.Text = ""
Text2.Text = ""
End If
End Sub
Private Sub Command2_Click()
End
End Sub '我们开始做窗体2
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -