Outlook programming in Delphi. Develop add-in / plugin
for Outlook 2007, 2003 - 2000: toolbars, menus, ribbons.
Add-in Express™
|
| Add-in name, description, and load behavior | |
| Collection of custom task panes (Outlook 2007 only) | |
| Collection of command bars (all Outlook versions) | |
| Outlook interface | |
| When the add-in completes start-up routines or is required to shut down | |
| Before and after a custom task pane is created or shown, before a task pane is destroyed | |
| Before the Ribbon XML markup is created and loaded, after Ribbon XML markup is loaded | |
| Before and after the add-in is registered | |
| Find Ribbon control | |
| Find CommandBar | |
| Find CommandBar control |
3. Add a custom Ribbon tab to an Outlook 2007 Inspector window
In the Tool Palette, select the Add-in Express tab, find the Ribbon Tab component, and add it to the add-in module. Specify the controls to be located on the tab using a friendly treeview-like editor.

Technical information:
| Ribbon tab caption, key tip, and position in Ribbon | |
| Supported ribbons and context (say, Pivot Table in Excel or table in Word) | |
| Visible (Boolean) | |
| Controls collection |
4. Customize Office Menu in Outlook 2007
The task is easily solved with the Ribbon Office Menu component located on the Add-in Express tab on the Component Palette.

Technical information:
| Supported ribbons | |
| Controls collection |
5. Add custom task panes in Outlook 2007
Use the Add-in Express project wizard to define custom task panes. Add-in Express documentation also shows how to add a task pane to an existing Add-in Express project. So, all you need is flourish the task panes with controls and handle their events.

6. Add custom options and property pages in Outlook 2000 - 2007
Using the Add-in Express project wizard you define property pages to be added to the Options dialog box (on the Tools menu) or to the Properties dialog box for a given folder (or all folders). The wizard creates the property and options pages (TActiveForm descendants) and adds a sample TEdit control as well as a code sample that demonstrates controls' events processing.

7. Customizing Outlook Today
Some Add-in Express product packages include the Advanced Outlook Regions feature. Unlike the standard way of customizing Outlook Today with HTML and VBScript, this feature allows you to completely replace the folder view with a custom .NET form. More about customizing Outlook views in Outlook Today style.
8. Create a custom command bar in Outlook
Add-in Express provides two special Outlook command bar components: Outlook Explorer commandbar and Outlook Inspector commandbar. The components take into account Outlook multi-Explorer and multi-Inspector windowing system. They also provide context-sensitivity: you can specify any given or all folders that toolbar will be shown for. You can also narrow down the folder list by specifying the default item type.
You can also connect an Outlook command bar component to a built-in command bar: just specify the name of a built-in or an existing toolbar in the CommandBarName property. The commandbars provide a property for preventing toolbar showing in the Outlook 2007 Ribbon UI (it is available for Outlook 2007 Inspector windows only).

Technical information:
| Commandbar name, position, and protection | |
| Supported Office applications | |
| Temporary | |
| Visible | |
| Collection of command bar controls | |
| Flag, specifying if the commandbar will show up in the Ribbon interface (UI) |
9. Add a command bar button on an Outlook toolbar
The Controls collection editor of Add-in Express provides you with a simple way to populate a command bar with controls:


