This is the code I am using to save it.
Dim list(5) As String * 10 Dim datafile As String Dim item As Integer Cls: Print 'the list of items list(1) = "A" list(2) = "D" list(3) = "C" list(4) = "D" list(5) = "E" datafile = "\\xtho.rbe.sk.ca\student\justin.chapman\File.txt" 'open the file to receive data Open datafile For Output As 1 For item = 1 To 5 Print #1, list(item) Next item Close #1

New Topic/Question
Reply



MultiQuote



|