Hello,
in my script i write a line in a textfile, ask the user something, and write again a line. but the last line must be under the first line. if i use skipline it always give me an error.
here is the code:
Set fs = CreateObject("scripting.filesystemobject"
Set datei = fs.createtextfile("C:\Test.txt", True)
datei.skipline
datei.writeline "Test"
datei.Close
BenniP
in my script i write a line in a textfile, ask the user something, and write again a line. but the last line must be under the first line. if i use skipline it always give me an error.
here is the code:
Set fs = CreateObject("scripting.filesystemobject"
Set datei = fs.createtextfile("C:\Test.txt", True)
datei.skipline
datei.writeline "Test"
datei.Close
BenniP