|
-
Dec 4th, 1999, 02:34 PM
#4
New Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|