Removing double quotes

Rogerhar

Registered User.
Local time
Today, 15:45
Joined
Jul 11, 2005
Messages
16
I need to write data to a text file. Here is the code I am using.

'Write to text file
Dim strList As String

strList = 1

Open "c:\Programs\HTML.txt" For Output As #1
Write #1, strList
Close #1


The problem I am having is that it's adding "" to all my lines. i.e "1"
How do I work around this issue?
 
Bob your a genius!

Thank you it worked perfect.
 
No, not a genius. I've just been in your shoes in the past and had to find the answer. So, just passing along the info.
 

Users who are viewing this thread

Back
Top Bottom