I think my problem is that I'm trying to write a string to a text file, and VB must automatically add the "" to the front and back of any string when writing it to a text file. Is there a way to keep this from happening? I tried trimming the quotes off before writing but no luck. Maybe I'm doing something wrong.
Any suggestions?VB Code:
Dim textfileData As String Open Filename For Output As #1 textfileData = Replace(textfileData, Chr$(34), "") Write #1, textfileData Close #1




Reply With Quote