我想写入文件怎么老实提示缺少AS呢?看下边代码?
Dim m As String
m = Txt1.Text
Open (App.Path & "\abc.txt") For Input Read Write As #1
Write #1, m
Close 作者:
Nothing 时间: 2006-4-10 23:42
Dim m As String
m = Txt1.Text
Open App.Path & "\abc.txt" For Output As #1
Write #1, m
Close #1
操作文件只能是读或写或是随机文件或是二进制文件,不能多选。 作者:
netice 时间: 2006-4-11 19:06