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.
VB Code:
  1. Dim textfileData As String
  2.  
  3. Open Filename For Output As #1
  4.     textfileData = Replace(textfileData, Chr$(34), "")
  5.     Write #1, textfileData
  6. Close #1
Any suggestions?