📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form Form2
Caption = "登陆框"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form2"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "退出"
Height = 495
Left = 2640
TabIndex = 5
Top = 2160
Width = 1095
End
Begin VB.CommandButton Command1
Caption = "登陆"
Height = 495
Left = 480
TabIndex = 4
Top = 2160
Width = 1095
End
Begin VB.TextBox Text2
Height = 375
Left = 1320
TabIndex = 3
Top = 1320
Width = 1695
End
Begin VB.TextBox Text1
Height = 375
Left = 1320
TabIndex = 2
Top = 600
Width = 1695
End
Begin VB.Label Label2
Caption = "密码:"
Height = 255
Left = 720
TabIndex = 1
Top = 1440
Width = 615
End
Begin VB.Label Label1
Caption = "用户名:"
Height = 255
Left = 600
TabIndex = 0
Top = 720
Width = 855
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim i As Integer
If Text2.Text = "123" Then
Form2.Hide
Form1.Show
Else
i = MsgBox("密码错误", 5 + vbExclamation, "输入密码")
If i <> 4 Then
End
Else
Text2.Text = ""
Text2.SetFocus
End If
End If
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Form_Load()
Text2.Text = ""
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -