PowerPoint Com Add-in PresentationBeforeSave event not firing

B

BatKing

Hi,

I have a PowerPoint 2007 COM add-in which has the PresentationBeforeSave
event.

my problem is that it won't fire. actually it was working fine until today.
Suddently this event is not fired at all. but if I try PresentationSave
event, then this is firing fine but this is not the event I want. I also have
a AfterPresentationOpen event which is firing fine. but why the
PresentationBeforeSave won't fire?

here is my code

in OnStartupComplete I have the following line of code

((Application)_powerpointApplication).PresentationBeforeSave += new
EApplication_PresentationBeforeSaveEventHandler(MySave);

public void MySave(Presentation pres, ref bool SaveAsUI)
{
System.Windows.Forms.MessageBox.Show("in Save");
}

Any help is appreciated

Thanks.
 
B

BatKing

I find out the problem. but a very BAD one. seems I need to report a bug to MS.

this is all because of the MS Office Live add-in.

I find out thie problem but freash intall another machine, and everything is
working. and I know this was working until last week on my dev machine. and
all I have done to my system was a MS update which only office related update
is this Office Live Add-in.

By Disabling the Office Live add-in in PPT 2007, everything is working. the
PresentationBeforeSave event is working fine.
 

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

Top