Home Page (Add-ins) | Overview | How Do I ... Topics | FAQ | Reference
Before you create an add-in, you should consider the following design issues:
You can write a macro more quickly and easily than you can write an add-in. Before you begin, carefully consider the differences between macros and add-ins.
If you need several, you can combine them in the same DLL.
An add-in can display modal windows or dialog boxes; however, it cannot display modeless windows or dialog boxes. For details, see the EnableModeless method.
An add-in can handle events fired by Developer Studio objects. Additionally, an add-in can display a dialog box containing ActiveX controls that fire events in the add-in. The controls' container (the dialog box or add-in) can handle the events.
An add-in can control another executable file (.EXE) by serving as an out-of-process controller for the other application.
If you create a multithreaded add-in, the results are unpredictable. An add-in can have multiple threads if none of them has a message pump and only one thread accesses the Developer Studio object model.
Visual C++ cannot display a Help file created for an add-in. The add-in must expose a dedicated command to display a Help file.
Tip To get some ideas for add-ins, look at the sample add-ins.