 Object Menu
|

| Write |
| Type | Method |
| Return Value Type | None |
| Usage | object.Write(String) |
| Description | Writes the specified string to a text file. |
| Example | Code: Set fso = CreateObject("Scripting.FileSystemObject") filename="c:\test\test.txt" textvalue="Here is my resume." Set tso = fso.OpenTextFile(filename,1,false,0) tso.Write(textvalue) tso.Close
|
| Notes | The Close method must follow the Write method or the text will not appear in the file. |
|