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.
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.