Hi Ed
Emphatically NO, it is not a Word doc. If you want a Word doc, use the
Documents.Add method.
Strictly speaking, FreeFile doesn't create any file at all. It returns
a number that you can use in VBA's Open command -- and I strongly
recommend that you read the VBA help topic for that command. To help
you understand what you'll find there, here's a little ramble:
The Open command can open (or create, if the specified file path/name
doesn't already exist) *any* kind of file. Most often it's used with
plain text files, but it can open "binary" files such as Word docs,
database files, or even executables. The trick is to be able to
understand the data you read from the file, or to be able to write to
it in the correct format. It's *very* unlikely you would be able to
write successfully to a Word doc this way.
The Open command associates the file's name with a file number, which
can be any number you want from 1 to 511. You use that number in all
the commands that read from and write to the file. If you have two or
more files open at the same time, you need to make sure the numbers
are distinct, and that's what FreeFile is for.