Hello, and thank you for good answers earlier.

I am using the print # function in VB, but having problems when i try to print to statements on the same line. My code looks like this:

Open PrintFile For Append As #1
sData = sData & fld.Name & ", "
Print #1, sData
aData = aData & fld.Address & ", "
Print #1, aData
Close#

When I do it this way, VB starts on a new line each time it does a print#. I want it to print on the same line, and just add it in the end of the line..

Thankful for all suggestions
K.