Hiyas,
I know how to write an array to a file ...
This will produce a file like:Code:Dim NumberOfStrings as Integer Dim String(2) as String String(0) = "This" String(1) = " is" String(2) = " text!" NumberOfStrings = 3 Open FileName For Output as #1 Write #1, NumberOfStrings For a = 1 to NumberOfStrings Write #1, String(a) Next a Close #1
How can I write to a file using the same data above, but putting it all on the same line like: (keep in mind I need to use the array, like above)Code:0 "This"," is"," text!"
Anyone know?Code:0,"This"," is"," text!"
-Git




Reply With Quote