📄 practice2-8.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3435
ClientLeft = 60
ClientTop = 450
ClientWidth = 4575
LinkTopic = "Form1"
ScaleHeight = 3435
ScaleWidth = 4575
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text3
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 480
TabIndex = 4
Top = 1800
Width = 3735
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 480
TabIndex = 3
Top = 960
Width = 3735
End
Begin VB.TextBox Text1
Height = 495
Left = 480
TabIndex = 2
Top = 240
Width = 3735
End
Begin VB.CommandButton Command2
Caption = "退出"
Height = 615
Left = 2520
TabIndex = 1
Top = 2640
Width = 975
End
Begin VB.CommandButton Command1
Caption = "清除"
Height = 615
Left = 1200
TabIndex = 0
Top = 2640
Width = 975
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()
Text1 = " "
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Text1_Change()
Text2.Text = Text1
Text3.Text = Text1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -