Hi r_keller,
could you tell me a little bit more about your application? Which AddIn do you wanna use? What do wanna calculate?
Here is a link regarding ActiveX:
http://msdn2.microsoft.com/en-us/library/default.aspx
Go to (from the menu to the left):
Office Developement >> Microsoft Office 2003 >> Office 2003 >> VBA Language Reference >> Microsoft Excel Visual Basic Reference >> Reference >> Properties/Methods.
Maybe you wanna install the Office Help, as well.
Location of ActiveX Object Model Documentation for Microsoft Office:
http://digital.ni.com/public.nsf/allkb/29CDE4332C4E6A27862570AE006ECBF4?OpenDocument
Here is the documentation regarding AddIn from the Office Help:
*****
AddIns Property
See AlsoApplies ToExampleSpecifics
Returns an AddIns collection that represents all the add-ins listed in the Add-Ins dialog box (Tools menu). Read-only.
For information about returning a single member of a collection, see Returning an Object from a Collection.
Remarks
Using this method without an object qualifier is equivalent to Application.Addins.
Example
This example displays the status of the Analysis ToolPak add-in. Note that the string used as the index to the AddIns collection is the title of the add-in, not the add-in’s file name.
If AddIns("Analysis ToolPak").Installed = True Then
MsgBox "Analysis ToolPak add-in is installed"
Else
MsgBox "Analysis ToolPak add-in is not installed"
End If
*****
Is that what you wanna do?
Bye
Daniel
NIG