Hiyas,

I know how to write an array to a file ...

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
This will produce a file like:

Code:
0
"This"," is"," text!"
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?

-Git