becks22
12th November 2008, 07:14
I m generating a text file through coding ...How can i add heading to the columns ..Please help

bdittmar
12th November 2008, 10:12
I m generating a text file through coding ...How can i add heading to the columns ..Please help

Hello,

If you use a variable for the texline, write the first line with header information like :

textline = "Item | Description | ....."
seq.puts()
textline = <DATA>
seq.puts()
........

Regards