📄 我的第一个vb应用程序.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "第一个VB应用程序"
ClientHeight = 2535
ClientLeft = 60
ClientTop = 390
ClientWidth = 4140
LinkTopic = "Form1"
ScaleHeight = 2535
ScaleWidth = 4140
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text2
Height = 375
Left = 1200
TabIndex = 5
Top = 2040
Width = 1215
End
Begin VB.TextBox Text1
Height = 495
Left = 480
TabIndex = 3
Top = 240
Width = 3015
End
Begin VB.CommandButton Command3
Caption = "关闭"
Height = 375
Left = 2280
TabIndex = 2
Top = 1560
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "清除"
Height = 375
Left = 480
TabIndex = 1
Top = 1560
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "输入密码后,单击此按钮"
Height = 375
Left = 480
TabIndex = 0
Top = 960
Width = 3015
End
Begin VB.Label Label1
Caption = "密码:"
Height = 375
Left = 480
TabIndex = 4
Top = 2160
Width = 615
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 Text2.Text = "VB" Then
Text1.Text = "欢迎来到Visual Basic6.0编程世界"
End If
End Sub
Private Sub Command2_Click()
Text1.Text = ""
End Sub
Private Sub Command3_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -