Hi,
I'm using VB to read in a file, and depending on the data content per line, I write that line to a seperate output file. The problem is that when I write to the output file, the output string is always encapsulated automatically in quotation marks("
. I don't want these quotation marks in my output file.
Currently I'm using the Write function :
Example :
string = "My String"
Write #2, string
Output :
"My String"
Output should look like this :
My String (no quotes)
Does anyone know of a different function to use or a way to specify not to use the quotes within the Write function??
thanks
Mike.
I'm using VB to read in a file, and depending on the data content per line, I write that line to a seperate output file. The problem is that when I write to the output file, the output string is always encapsulated automatically in quotation marks("
Currently I'm using the Write function :
Example :
string = "My String"
Write #2, string
Output :
"My String"
Output should look like this :
My String (no quotes)
Does anyone know of a different function to use or a way to specify not to use the quotes within the Write function??
thanks
Mike.