Converting Word to PDF

If you are a C/C++/C# developer and have any questions about using our products from your application here is the place to post them.
Post Reply
srini
Posts: 4
Joined: Mon Mar 21 2005

Converting Word to PDF

Post by srini »

Hi
I am using BatchConvert() Method for converting word files into
PDF.Conversion is working fine but source files (word files in my case) are opening and closing while converting.
Is there any way to overcome this. please suggest me.
Thanks in advance.

Regards
Srinivas Reddy
Jose
Amyuni Team
Posts: 553
Joined: Tue Oct 01 2002
Contact:

Post by Jose »

Hello,



The BatchConvert() function will launch the application that is associated with a specific file extension and issue a print (verb) command to convert the document. In the case of the .doc extension, MsWord will open, print the document and then close.



If you wish to eliminate this process you will need to programmatically instantiate an instance of MsWord and use it’s .printout() method to direct it’s output to the PDF Converter.



Hope this helps?
Post Reply