E
Ed from AZ
I've got a very long file which is a string of docs that need to be
broken out and saved as individual docs. I can do this with either
Word's Document.Add and SaveAs or by using FSO.CreateTextFile.
I have to strike a balance between two issues, or find a better
solution altogether. The docs are formatted to look right in a
smaller mono-spaced font - I use Courier New, 10 pt. The files are
saved with a .doc extension and opened in Word (either 2003 or 2007).
If I create the files with Add, it takes 5-15 seconds per file, but I
can format them so they look right when opened. If I use FSO, it's
fractions of a second per file, but the file will use the Normal
default style - often Times 12 pt - when opening.
Is there a way to add font formatting to the FSO file? Or speed up
the doc saving? Or what about creating all files by FSO, then
accessing each doc in the folder and setting font characteristics?
Ed
broken out and saved as individual docs. I can do this with either
Word's Document.Add and SaveAs or by using FSO.CreateTextFile.
I have to strike a balance between two issues, or find a better
solution altogether. The docs are formatted to look right in a
smaller mono-spaced font - I use Courier New, 10 pt. The files are
saved with a .doc extension and opened in Word (either 2003 or 2007).
If I create the files with Add, it takes 5-15 seconds per file, but I
can format them so they look right when opened. If I use FSO, it's
fractions of a second per file, but the file will use the Normal
default style - often Times 12 pt - when opening.
Is there a way to add font formatting to the FSO file? Or speed up
the doc saving? Or what about creating all files by FSO, then
accessing each doc in the folder and setting font characteristics?
Ed