shawn said:
Is there a free program similar to CutePDF (allows you to print directly to
an PDF file from any program) but to print directly to an Excel file?
It has been a while since I have done so, but here are some clues.
Excel will read text files. If you can write them tab delimited somehow,
each tab will move you over to the next cell. A carriage return will
start a new row. It should be possible to use Word to do that. Save the
word file as a text file. Of course, you will lose some of the
formatting Word can provide. Then open the text file from Excel. Excel
might ask how the file is delimited.
Many database programs used tab delimited files.
When I wrote programs in pascal. I automatically got tabs with the write
instruction. the writeln instruction provided a carriage return to begin
a new row. I suspect that all modern programming languages, including
BASIC, have similar capability.
Bill