|
-
September 13th, 2009, 10:41 PM
#1
double quote appears on open and end of each lines.
Hi,
I'm extracting data to a text file (notepad) using VB system IO.
I'm not sure what is wrong.
When i extract the file from computer A, it is OK
Output:
Data A
Data B
Data C
Data D
But from PC B,
Output:
"Data A"
"Data B"
"Data C"
double quote appears on open and end of each lines.
Anyone know why and how to solve this?
Thanks.
-
September 14th, 2009, 02:20 AM
#2
Re: double quote appears on open and end of each lines.
Edit: Misread your question.
How do you write the text files?
Last edited by Alsvha; September 14th, 2009 at 02:24 AM.
-
September 15th, 2009, 08:23 PM
#3
Re: double quote appears on open and end of each lines.
Dim rdf As New IO.StreamWriter(ReadMe)
sBatchHeader_FullString1 = "Data A"
sBatchHeader_FullString2 = "Data B"
sBatchHeader_FullString3 = "Data C"
rdf.WriteLine(sBatchHeader_FullString1)
rdf.WriteLine(sBatchHeader_FullString2)
rdf.WriteLine(sBatchHeader_FullString3)
-
September 15th, 2009, 10:34 PM
#4
Re: double quote appears on open and end of each lines.
that isn't extracting anything. show more code that writes the data, and also the extraction. what about notepad? don't see that either
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|