0

I'm having some problems with bypassing the Application_PresentationBeforeSave event in MS Office PowerPoint 2007

void Application_PresentationBeforeSave(Microsoft.Office.Interop.PowerPoint.Presentation Pres, ref bool Cancel)

In this event, I need to update a webservice, with the byte[] content of the file. But at this point in time, the file is not saved. There is no event called PresentationAfterSave fx that is called.

I need some way of calling the event again, after it is saved. Some people are saying that I need to make a Thread, due the save and then the update or the otherway around. This is by far the worst solution (but properly the only one), is there a better solution ?

// dennis

4

1 回答 1

0

我认为您正在寻找的是 PresentationSave 而不是 PresentationBeforeSave 事件。

于 2012-10-11T18:58:12.860 回答