📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 4260
ClientLeft = 60
ClientTop = 450
ClientWidth = 6510
LinkTopic = "Form1"
ScaleHeight = 4260
ScaleWidth = 6510
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "取消"
Height = 495
Left = 3600
TabIndex = 3
Top = 2760
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 495
Left = 720
TabIndex = 2
Top = 2760
Width = 1215
End
Begin VB.TextBox Text2
Height = 495
Left = 2400
TabIndex = 1
Top = 1200
Width = 1215
End
Begin VB.TextBox Text1
Height = 495
Left = 2400
TabIndex = 0
Top = 480
Width = 1215
End
Begin VB.Label Label2
Caption = "密码"
Height = 255
Left = 1680
TabIndex = 5
Top = 1320
Width = 495
End
Begin VB.Label Label1
Caption = "用户名"
Height = 255
Left = 1560
TabIndex = 4
Top = 600
Width = 735
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 = "gd" And Text2.Text = "ABC" Then
Form2.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -