 Object Menu
|

| SkipLine |
| Type | Method |
| Return Value Type | None |
| Usage | object.SkipLine |
| Description | Skips a line in the text file. |
| Example | Code: Set fso = CreateObject("Scripting.FileSystemObject") filename="c:\test\test.txt" Set tso = fso.OpenTextFile(filename,1,false,0) tso.SkipLine response.write tso.ReadLineResult: This is a test of the SkipLine method. |
|