
02-19-2002, 12:24 PM
|
 |
Google Hound
Retired Moderator * Guru *
|
|
Join Date: Nov 2001
Location: Arizona, USA
Posts: 12,386
|
|
|
A text file is just that - Text. No formatting of characters is possible, unless you decide, say, to use the high-order bit for boldface, at which point, it's no longer a text file, but is a propriatory format.
use the constant vbCRLF for the end-of-line (it is actually two characters - chr(10) and chr(13))
The tab is actually chr(9) - but, it's a good idea to use the vbTab constant.
|
__________________
Lou
"I have my standards. They may be low, but I have them!" ~ Bette Middler
"It's a book about a Spanish guy called Manual. You should read it." ~ Dilbert
"To understand recursion, you must first understand recursion." ~ unknown
|