with each string in the array on each line?
Printable View
with each string in the array on each line?
Here's one way... :)
VB Code:
Dim i as Long Open App.Path & "Array.txt" For Output As #1 For i = 0 To UBound(yourArray) Print #1, yourArray(i) Next i Close #1