【VB开源代码栏目提醒】:网学会员为广大网友收集整理了,Ex14_2.frm,希望对大家有所帮助!
VERSION 5.00
Begin VB.Form Ex14_2
Caption = "Form1"
ClientHeight = 2040
ClientLeft = 60
ClientTop = 450
ClientWidth = 3450
LinkTopic = "Form1"
ScaleHeight = 2040
ScaleWidth = 3450
StartUpPosition = 3 '窗口缺省
End
Attribute VB_Name = "Ex14_2"
Attribute
VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Dim Str As String, Anum As Integer
Open "c:\Myfile.dat" For Append As 1 '打开文件
Str = "abcdeflghijklnm"
Anum = 1465
Print #1, Str, Anum '将字符串和数字写入文件
Write #1, Str, Anum
Close #1 '关闭打开的文件
End Sub