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?
'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?