| |
pscott
Posts: 2
Score: 0
Joined: 12/31/2003
From:
Status: offline
|
I have been using VBS to read a file and create an output text file. I want to feed this output file into an app but it failed. Further investigation showed that VBS had inserted a chr$(0) in between each char. e.g. A file containing ABC: the ascii looks like - 65 66 67 If written by VBS it looks like - 255 254 65 0 66 0 67 0 Where have the extra 255 254 and 0s come from and how can I get rid of them? Cheers, Pete.
|
|