Well if you are ever going to need to load the data into something again (and it sounds like you are...sounds like you are creating some sort of address book) then you are going to want to use the Write command, not the Print. Read up on it. It can make your life easier.

You were saying something about using Chr(9) for something...if you want to put tabs in between the entries then you can do something like this:

For counter= 1 to HowManyTabsYouWant
TabString=TabString & Chr(9)
Next counter

Then:

Print #1, FirstName, TabString, LastName

Any other questions? You can email me at [email protected].

-Adam