From: Word-to-prn on
I need to convert the Doc(word) file to Prn file through any programming
language. Could you please advise me how to convert doc to prn(or)ps without
manual interaction (Or) Is there any third party tool available for this.

Thanks in advance
From: Doug Robbins - Word MVP on
Use the following VBA command

ActiveDocument.PrintOut _
Background:=False, _
Append:=False, _
OutputFileName:="c:\myfile.prn", _
PrintToFile:=True


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com

"Word-to-prn" <Word-to-prn(a)discussions.microsoft.com> wrote in message
news:BBDDB2A0-2C6A-4C0B-B588-2390FD724556(a)microsoft.com...
> I need to convert the Doc(word) file to Prn file through any programming
> language. Could you please advise me how to convert doc to prn(or)ps
> without
> manual interaction (Or) Is there any third party tool available for this.
>
> Thanks in advance