📄 form5.frm
字号:
VERSION 5.00
Begin VB.Form Form5
Caption = "A-5"
ClientHeight = 6570
ClientLeft = 60
ClientTop = 450
ClientWidth = 10050
LinkTopic = "Form5"
ScaleHeight = 6570
ScaleWidth = 10050
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text2
Height = 3375
Left = 6360
TabIndex = 5
Top = 2040
Width = 2655
End
Begin VB.CommandButton Command2
Caption = "复制>="
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 4440
TabIndex = 4
Top = 4080
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "隶书25磅"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 975
Left = 4440
TabIndex = 3
Top = 2400
Width = 1335
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3375
Left = 960
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 2
Top = 2040
Width = 2775
End
Begin VB.Label Label2
Alignment = 2 'Center
Caption = "复制效果"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 6480
TabIndex = 1
Top = 1080
Width = 1935
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "输入文本"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1560
TabIndex = 0
Top = 1200
Width = 1695
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub File1_Click()
End Sub
Private Sub Command1_Click()
Text1.Font = "隶书"
Text1.FontSize = 25
End Sub
Private Sub Command2_Click()
Text2.Text = Text1.SelText
Text2.Font = "隶书"
Text2.FontSize = 25
End Sub
Private Sub Form_Load()
Text1.Text = "VB功能强大,但要下功夫学习才能学好"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -