Update BuiltinDocumentProperties

B

Blackpower

Im trying to update some BuiltinDocumentProperties of office documents.
It all goes wel, except that it doesnt save the properties.
If I save to a new file the new properties are saved as well.

here is the code.

use strict;
use Win32::OLE qw(in);

my $Word = Win32::OLE->new('Word.Application', 'Quit');
my $Doc = $Word->Documents->Open('Document1.doc');

$Doc->BuiltinDocumentProperties->{Title} = "Custom Title" ;
$Doc->BuiltinDocumentProperties->{Comments} = "Custom Comment" ;


#$Doc->SaveAs( 'Document2.doc'); # this works

$Doc->Save ; #this doesnt work.

$Doc->Quit ;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,563
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top