>When Printing using the File Menu, Printing ...
>you can choose different parameters (such as
>wich printer, number of pages etc..)
>BUT you can also choose to print in a file !
>Then Windows will generate a .PRN file that you give
>a name.
> I wanted to generate this printing file to copy it
>on another PC and print it later.
>But HOW CAN I send this file to the printer ?
Open a command prompt and use the copy command to copy the file to the
printer device (often prn

:
copy filename.prn /b prn:
If the printer is on a network share, I think you can also do this:
copy filename.prn /b \\machinename\printersharename
You must bear in mind that the .PRN file is specific to the type of
printer you originally printed to - you can't expect to use it with a
different type of printer.
If you need device independence of the output, you need to look into
some other alternative such as PDF output.
Dave