{
und vervollständige die Unit mit der Implementation dieser Methoden (Ctrl-Shft-C)
and complete the class by pressing Ctrl-Shft-C
4. Schritt / 4. Step
Registriere das COM-Objekt des Addins mit "Run / Register ActiveX Server"
Registriere das AddIn, so dass Outlook dieses als AddIn erkennt
- Erzeuge den Schlüssel: HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\OLAddIn.AddIn
- Trage dort den DWORD-Wert "LoadBehavior" mit dem Wert 03 ein
Register the COM-object with "run / register ActiveX Server"
Register the AddIn, so that the Addin will be recognized by Outlook
- Create a new key: HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\OLAddIn.AddIn
- create a DWOrd "LoadBehavior" with the value 3
5. Schritt / 5. Step
Kompiliere das Addin
Starte Outlook
procedure TAddIn.OnAddInsUpdate(var custom: PSafeArray); begin
end;
procedure TAddIn.OnBeginShutdown(var custom: PSafeArray); begin
end;
procedure TAddIn.OnConnection(const Application: IDispatch;
ConnectMode: ext_ConnectMode; const AddInInst: IDispatch; var custom: PSafeArray); begin // To show, that the AddIn has started just say anything ShowMessage('Das AddIn wurde gestartet'); end;
procedure TAddIn.OnDisconnection(RemoveMode: ext_DisconnectMode; var custom: PSafeArray); begin
end;
procedure TAddIn.OnStartupComplete(var custom: PSafeArray); begin