L
li1215
Unregistered / Unconfirmed
GUEST, unregistred user!
我使用:
var
WordApp: OLEVariant;
SaveChanges: OleVariant;
begin
WordApp := CreateOleObject('Word.Application');
WordApp.Documents.Open(FileName);
WordApp.ActiveDocument.BuiltInDocumentProperties[1].Value := '标题';
WordApp.ActiveDocument.BuiltInDocumentProperties[2].Value := '作者';
SaveChanges := wdSaveChanges;
WordApp.Quit(SaveChanges, EmptyParam, EmptyParam);
end;
方法来修改WORD文档的属性,但是只能修改一次,如果这个文档使用这种方法修改以后就不能再修改了!这个问题怎么解决呀?
var
WordApp: OLEVariant;
SaveChanges: OleVariant;
begin
WordApp := CreateOleObject('Word.Application');
WordApp.Documents.Open(FileName);
WordApp.ActiveDocument.BuiltInDocumentProperties[1].Value := '标题';
WordApp.ActiveDocument.BuiltInDocumentProperties[2].Value := '作者';
SaveChanges := wdSaveChanges;
WordApp.Quit(SaveChanges, EmptyParam, EmptyParam);
end;
方法来修改WORD文档的属性,但是只能修改一次,如果这个文档使用这种方法修改以后就不能再修改了!这个问题怎么解决呀?