Howdy All,
One Quick Question. Is there a way to save a string so that it does not have the quotes surrounding it? Thank you in advance.
Printable View
Howdy All,
One Quick Question. Is there a way to save a string so that it does not have the quotes surrounding it? Thank you in advance.
Yes. There are a number of ways, but this is probably the easiest:
Code:
Open "c:\windows\desktop\testfile.txt" for Append as #1
'If you use Write #1, the saved text will be deliminated by quotes.
Print #1, "This is just a test" & vbcrlf
Close #1
Hope this helps.
(Using VB6 SP3)
Yup, Thanks. That works just fine!