Sep 4, 2001 #1 Gti Programmer Jul 23, 2001 99 PT I have a collection with some chars What i need is print the collection to a file How can i do it? Tkx
I have a collection with some chars What i need is print the collection to a file How can i do it? Tkx
Sep 7, 2001 #2 angst11 Programmer Sep 5, 2001 25 US This will write data to a sequential access file from what you have stored in FileToSave, hope it helps! Open "a:\Test.dat" for append as #1 write # 1, FileToSave.Text Close #1 Upvote 0 Downvote
This will write data to a sequential access file from what you have stored in FileToSave, hope it helps! Open "a:\Test.dat" for append as #1 write # 1, FileToSave.Text Close #1