form1.frm
来自「vb编程+从基础到实践光盘代码」· FRM 代码 · 共 38 行
FRM
38 行
VERSION 5.00
Begin VB.Form Form1
Caption = "Hello,World"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4485
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4485
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "显示""Hello,World"""
Height = 495
Left = 1200
TabIndex = 1
Top = 2040
Width = 1695
End
Begin VB.TextBox Text1
Height = 855
Left = 600
TabIndex = 0
Top = 480
Width = 3255
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.Text = "Hello,World!"
Text1.FontSize = 20
Text1.ForeColor = vbBlue
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?