谢谢,
这就是我在Acad2002
-
- Constant Value Description
- ForReading 1 Open a file for reading only. You can't write to this file.
- ForAppending 8 Open a file and write to the end of the file.
- The format argument can have any of the following settings:
- Constant Value Description
- TristateUseDefault 2 Opens the file using the system default.
- TristateTrue 1 Opens the file as Unicode.
- TristateFalse 0 Opens the file as ASCII.
- Remarks
- The following code illustrates the use of the OpenTextFile method to open a file for appending text:
- Sub OpenTextFileTest
- Const ForReading = 1, ForWriting = 2, ForAppending = 3
- Dim fs, f
- Set fs = CreateObject("Scripting.FileSystemObject")
- Set f = fs.OpenTextFile("c:\testfile.txt", ForAppending,TristateFalse)
- f.Write "Hello world!"
- f.Close
- End Sub
我的错误,我确实复制了,读起来不够好。抱歉,这是阿姆斯特丹糟糕的办公日结束。但它有效,感谢你们。下次我会在我哭泣之前更仔细地阅读。
贝恩德 |