Discussion:
simple com add-in
(too old to reply)
jordan
2006-09-28 21:44:02 UTC
Permalink
Hi,

I am looking for a link that will show me how to create a simple com add
in/macro.

I want to create a tool bar button on Word that when clicked will popup a
form.

The form will be in a C# assembly which I will register.

For now that is all I need to figure out!

thanks
Cindy M.
2006-10-03 12:56:27 UTC
Permalink
Hi =?Utf-8?B?am9yZGFu?=,
Post by jordan
I am looking for a link that will show me how to create a simple com add
in/macro.
I want to create a tool bar button on Word that when clicked will popup a
form.
The form will be in a C# assembly which I will register.
Start here:

http://support.microsoft.com/kb/302901/en-us

I highly recommend Andrew Whitechapel's book on .NET development for
Microsoft Office, if you want to go any further than a simple test.

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or
reply in the newsgroup and not by e-mail :-)
Andrei Smolin
2006-10-09 17:06:37 UTC
Permalink
Jordan,

Even a simple COM add-in may raise many problems. You will have to make
the following decisions: what Word versions are to be supported, how
your add-in should react when Word is run via Automation, or in a
container, or as an Outlook email editor.

Look at Add-in Express .NET (http://www.add-in-express.com/add-in-net/)
that provides you with COM add-in development components. We created it
for developers not to waste their time implementing base functionality,
such as: adding / removing toolbars / toolbar controls, event handling
of the host application (Word) or toolbar controls, removing toolbars
and controls during the add-in uninstallation, an so on.


Andrei Smolin
Add-in Express Team Leader
Post by jordan
Hi,
I am looking for a link that will show me how to create a simple com add
in/macro.
I want to create a tool bar button on Word that when clicked will popup a
form.
The form will be in a C# assembly which I will register.
For now that is all I need to figure out!
thanks
Loading...