Tomer
Guest
|
Is there an example which uses ATL?
Do you support multiple inspectors and explorers?
Thanks
|
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
The Addin Express .NET is written in C# and does not support ATL. To develop your own applications based on Add-in Express .NET you can use all .NET languages that generate managed code. They are C#, VB.NET or Managed Extensions for C++. For C++ there are the following projects: "Managed C++ Class Library" project in Visual Studio .NET 7.0 or "Class Library (.NET)" in Visual Studio .NET 7.1.
The Add-in Express .NET supports multiple inspectors and explorers. See the ItemTypes property for ADXOlExplorerCommandBar and ADXOlInspectorCommandBar components. To set this property you can use the ADXOlExplorerItemTypes enumeration and the ADXOlInspectorObjClasses enumeration respectively. For example: adxExplorerCommandBar. ItemTypes =(ADXOlExplorerItemTypes.olMailItem | ADXOlExplorerItemTypes.olAppointmentItem);
|
|