newbie: Office 2003 addin - handle file save events in c#

S

Stefan Weber

Hello,

well i am quite new to c#, so i hope my questions are not too stupid
;-)

What i want to do is to provide a general office addin, which handles
save and open tasks in Office 2003. The idea is, that every time a
user clicks on save or save as the addin provides the user with
additional information where to save the current document.

Is there a ways to "overwrite" the save function ?

Is there any information available about the office methods, functions
and events i can use ?

Thanks in advance

Stefan
 
C

Chango V.

Quick pointers:
-- You can create a macro called FileSave() in a global template. Word will
call it.
-- Programmatically change the CommandBarButton that corresponds to the
File-Save menu item. It has a property OnAction and a Click event.

You can use the built-in "VBA" help, which is generally sufficient for doing
any work with Word's API. The VBA Object Browser is also very helpful.

//
 

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