in reply to Re^2: Win32::ole and MSWord
in thread Win32::ole and MSWord
Although to be honest, You're better to use the save as like Kenny did. Here's some more on SaveAs() method if anyone needs an example:$Active::Document->{Saved} = 1; $Active::Document->Close;
my $MSDN_const = { %{ Win32::OLE::Const->Load("Microsoft Word 11.0 Object Library +") } }; # Save as normal MS Word document $Active::Document->SaveAs( { FileName=>'C:\\My_Word_Document.doc', FileFormat=>$MSDN_const->{wdFormatDocument} } ); # Save in XML format $Active::Document->SaveAs( { FileName=>'C:\\My_XML_Document.xml', FileFormat=>$MSDN_const->{wdFormatXML} } );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Win32::ole and MSWord
by Anonymous Monk on Sep 17, 2013 at 05:10 UTC |