Well... I wanted to see what you have for xxxx if there are any \t or \n or \r
Anyway, to be safe the code should be changed from
\\Networkpath\xxxx\xxxx\xxxx\JOB1Job337FinishedRunJob1Job347.txt
to
\\\\Networkpath\\xxxx\\xxxx\\xxxx\\JOB1Job337FinishedRunJob1Job347.txt
For details, please read "Special ASCII Characters" topic in the on-line help.
: Here is a sample of the code: Dim f, Number
:
: FileOpen("\\Networkpath\xxxx\xxxx\xxxx\JOB1Job337FinishedRunJob1Job347.txt",
: "LineMode", "Write", False, f)
: FileWrite(f, "Job1Job337Finished")
: FileClose(f)
|