|
-
Mar 16th, 2000, 01:11 AM
#1
Thread Starter
Lively Member
Is there a way using the write command to add text to file without it adding the quotes.
My Sample code would be like this:
Dim test1, test2, test3 As String
test1 = "Hello"
test2 = "world"
test3 = "Goodbye"
Open App.Path & "\CrossRef.htm" For Output As #1
Write #1, test1, test2, test3
Close #1
And the output looks like this
"Hello","world","Cool"
Is there any good info out there on writing to text files, that might help me with this. Thank you.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|