📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00E0E0E0&
ClientHeight = 3480
ClientLeft = 60
ClientTop = 345
ClientWidth = 5205
FillColor = &H00C0C0C0&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "Form1.frx":0000
LinkTopic = "Form1"
ScaleHeight = 3480
ScaleWidth = 5205
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command1
Caption = "写入文件"
Height = 480
Left = 2160
TabIndex = 0
Top = 1200
Width = 1455
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'CODE Manger By BcodeXRose
'##################################################################
'## 过程名称:Command1_Click
'## 参数: 无
'##################################################################
Private Sub Command1_Click()
Open "testfile" For Output As #1
Print #1, "this is a test"
Print #1,
Print #1, "zone 1"; Tab; "zone2"
Print #1, "hello"; ""; "world"
Print #1, Spc(5); "5 leading spaces"
Print #1, Tab(10); "hello"
Close #1
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -