I am using the following script to write some data into a file. The problem I am facing is that it writes the inverted commas (" ") into my file. How may I get the data into my file without the inverted commas.
Open LogfilePointer for append as #2
write #2,"<Status>Okay</Status>"
write #2,"<CubeUrl> & Left$(sLoopFilename, Len(sLoopFilename) - 4)
write #2,"<CubeUrl>"
write #2,Format(Now, "dmmmyy h:mm:ss")
write #2,"<Msg></Msg>"
close #2
Appreciate any ideas.
Thanks !
Open LogfilePointer for append as #2
write #2,"<Status>Okay</Status>"
write #2,"<CubeUrl> & Left$(sLoopFilename, Len(sLoopFilename) - 4)
write #2,"<CubeUrl>"
write #2,Format(Now, "dmmmyy h:mm:ss")
write #2,"<Msg></Msg>"
close #2
Appreciate any ideas.
Thanks !