Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Manipulating MSWord with Win32::OLE to convert a word document to pdf

by guha (Priest)
on Sep 11, 2003 at 15:53 UTC ( [id://290728]=note: print w/replies, xml ) Need Help??


in reply to Manipulating MSWord with Win32::OLE to convert a word document to pdf

I have not used Acrobat Writer myself so I can't vouch for that the problem isn't due to incorrect usage, but there is another angle on this.

Which version of w32 and Word are you running on?

I've had problems with code running fine on w98 and Office 97, but fails on XP and Office 2000.

Haven't really determined the exact culprit but the solution was to access the Wordconstants in this manner instead.

use Win32::OLE; use Win32::OLE::Const; #Note const not loaded here . . . my $wdConst = Win32::OLE::Const->Load("Microsoft Word"); #const loaded + explicitely . . $doc->PrintOut({ PrintToFile => 1, OutputFileName => "$dir/test.pdf", Background => 0, Append => 0, Range => $wdConst->{wdPrintAllDocument}, Item => $wdConst->{wdPrintDocumentContent}, Copies => 1, PageType => $wdConst->{wdPrintAllPages}, });

Note this is untested, coming directly from my old and crufty memory, so check the docs for exact syntax.

HTH
  • Comment on Re: Manipulating MSWord with Win32::OLE to convert a word document to pdf
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://290728]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (2)
As of 2024-04-25 04:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found