View Single Post
  #5 (permalink)  
Old 02-14-2008, 08:43 AM
BjornF BjornF is offline
Senior Member
 
Join Date: Apr 2007
Location: Copenhagen
Posts: 141
Default

Hi Stellarefox,

I think so, these lines write 10 lines in three columns, separated by a comma. Is that what you were asking for?

FileOpen(c1,AppPath&"\test.csv",cWrite)
For i=0 To 10
FileWrite(c1,"This is record "&i&" col 1, This is record "&i&" col 2, This is record "&i&" col 3")
Next
FileClose(c1)

all the best / Björn
Reply With Quote