When I Try To Register My Com Adx AddIn I Have A Problem But It Does Compile

Add-in Express™ Support Service
That's what is more important than anything else

When I Try To Register My Com Adx AddIn I Have A Problem But It Does Compile
 
Michael De Marco


Guest


I have provided the error detail below.


Detailed technical information follows:
---
(Inner Exception)
(Inner Exception)
Date and Time: 9/23/2010 12:51:48 AM
Machine Name: PSTDEVSERVER
IP Address: fe80::c0fa:730d:7aef:5c74%16
Current User: PSTDEVSERVER\Rob.M

Application Domain: DefaultDomain
Assembly Codebase: file:///C:/Program Files (x86)/Add-in Express/Add-in Express for .NET New/Bin/Packages/VS2005/AddinExpress.Wizard.dll
Assembly Full Name: AddinExpress.Wizard, Version=6.1.3044.2005, Culture=neutral, PublicKeyToken=4416dd98f0861965
Assembly Version: 6.1.3044.2005
Assembly Build Date: 5/2/2008 2:06:50 AM

Exception Source: mscorlib
Exception Type: System.Resources.MissingManifestResourceException
Exception Message: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "ManageProOutLookAddIn.AddinModule.resources" was correctly embedded or linked into assembly "ManageProOutLookAddIn" at compile time, or that all the satellite assemblies required are loadable and fully signed.
Exception Target Site: Object reference not set to an instance of an object.

---- Stack Trace ----



(Outer Exception)
Date and Time: 9/23/2010 12:51:48 AM
Machine Name: PSTDEVSERVER
IP Address: fe80::c0fa:730d:7aef:5c74%16
Current User: PSTDEVSERVER\Rob.M

Application Domain: DefaultDomain
Assembly Codebase: file:///C:/Program Files (x86)/Add-in Express/Add-in Express for .NET New/Bin/Packages/VS2005/AddinExpress.Wizard.dll
Assembly Full Name: AddinExpress.Wizard, Version=6.1.3044.2005, Culture=neutral, PublicKeyToken=4416dd98f0861965
Assembly Version: 6.1.3044.2005
Assembly Build Date: 5/2/2008 2:06:50 AM

Exception Source: mscorlib
Exception Type: System.Reflection.TargetInvocationException
Exception Message: Exception has been thrown by the target of an invocation.
Exception Target Site: Object reference not set to an instance of an object.

---- Stack Trace ----



(Outer Exception)
Date and Time: 9/23/2010 12:51:48 AM
Machine Name: PSTDEVSERVER
IP Address: fe80::c0fa:730d:7aef:5c74%16
Current User: PSTDEVSERVER\Rob.M

Application Domain: DefaultDomain
Assembly Codebase: file:///C:/Program Files (x86)/Add-in Express/Add-in Express for .NET New/Bin/Packages/VS2005/AddinExpress.Wizard.dll
Assembly Full Name: AddinExpress.Wizard, Version=6.1.3044.2005, Culture=neutral, PublicKeyToken=4416dd98f0861965
Assembly Version: 6.1.3044.2005
Assembly Build Date: 5/2/2008 2:06:50 AM

Exception Source: AddinExpress.Wizard
Exception Type: System.Exception
Exception Message: The 'RegisterAssembly' function failed.
Exception Target Site: DoAfterBuild

---- Stack Trace ----
AddinExpress.Projects.Common.Registrator.DoAfterBuild(scope As vsBuildScope, action As vsBuildAction)
AddinExpress.Wizard.dll: N 0431 (0x1AF) IL
Posted 23 Sep, 2010 03:03:42 Top
Eugene Astafiev


Guest


Hi Michael,

Do you run Visual Studio in the "as an administrator" mode? Please see the Compatibility tab in the Properties window of Visual Studio shortcut.

BTW What OS and Visual Studio version do you use?
Posted 23 Sep, 2010 07:19:30 Top
Michael De Marco


Guest


Hi Eugene,

I just registered it and now it is calling the method in module. However ADXOlForm1.cs constructor is not getting called.
the code below is in the module and references adxolform1

X start code X


[GuidAttribute("731307ED-1489-4BDE-BD9E-0DDA166792B9"), ProgId("ManageProOutLookAddIn.AddinModule")]
public class AddinModule : AddinExpress.MSO.ADXAddinModule
{
public AddinModule()
{
InitializeComponent();
}

private AddinExpress.MSO.ADXOlExplorerCommandBar adxOlExplorerCommandBar1;
private AddinExpress.MSO.ADXCommandBarButton adxCommandBarButton1;
private AddinExpress.OL.ADXOlFormsCollectionItem adxOlFormsCollectionItem1;
private AddinExpress.OL.ADXOlFormsManager adxOlFormsManager1;
private AddinExpress.OL.ADXOlFormsCollectionItem adxOlFormsCollectionItem2;
private System.Windows.Forms.ImageList imageList1;
private AddinExpress.MSO.ADXCommandBarButton adxCommandBarButton2;

#region Component Designer generated code
/// <summary>
/// Required by designer
/// </summary>
private System.ComponentModel.IContainer components;

/// <summary>
/// Required by designer support - do not modify
/// the following method
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddinModule));
this.adxOlExplorerCommandBar1 = new AddinExpress.MSO.ADXOlExplorerCommandBar(this.components);
this.adxCommandBarButton1 = new AddinExpress.MSO.ADXCommandBarButton(this.components);
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.adxCommandBarButton2 = new AddinExpress.MSO.ADXCommandBarButton(this.components);
this.adxOlFormsCollectionItem1 = new AddinExpress.OL.ADXOlFormsCollectionItem(this.components);
this.adxOlFormsManager1 = new AddinExpress.OL.ADXOlFormsManager(this.components);
this.adxOlFormsCollectionItem2 = new AddinExpress.OL.ADXOlFormsCollectionItem(this.components);
//
// adxOlExplorerCommandBar1
//
this.adxOlExplorerCommandBar1.CommandBarName = "ManagePro";
this.adxOlExplorerCommandBar1.CommandBarTag = "6ac61944-050f-4605-9d54-b114161f5a48";
this.adxOlExplorerCommandBar1.Controls.Add(this.adxCommandBarButton1);
this.adxOlExplorerCommandBar1.Controls.Add(this.adxCommandBarButton2);
this.adxOlExplorerCommandBar1.ItemTypes = ((AddinExpress.MSO.ADXOlExplorerItemTypes)((((((((AddinExpress.MSO.ADXOlExplorerItemTypes.olMailItem | AddinExpress.MSO.ADXOlExplorerItemTypes.olAppointmentItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olContactItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olTaskItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olJournalItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olNoteItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olPostItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olDistributionListItem)));
this.adxOlExplorerCommandBar1.Position = AddinExpress.MSO.ADXMsoBarPosition.adxMsoBarTop;
this.adxOlExplorerCommandBar1.Temporary = true;
this.adxOlExplorerCommandBar1.UpdateCounter = 7;
//
// adxCommandBarButton1
//
this.adxCommandBarButton1.Caption = "ManagePro";
this.adxCommandBarButton1.ControlTag = "0029d30c-48b8-4635-8a6a-7f570af16282";
this.adxCommandBarButton1.DescriptionText = "Synchronize ManagePro Event and/or Todo items with Outlook";
this.adxCommandBarButton1.Image = 0;
this.adxCommandBarButton1.ImageList = this.imageList1;
this.adxCommandBarButton1.ImageTransparentColor = System.Drawing.Color.Yellow;
this.adxCommandBarButton1.OlExplorerItemTypes = ((AddinExpress.MSO.ADXOlExplorerItemTypes)((((((((AddinExpress.MSO.ADXOlExplorerItemTypes.olMailItem | AddinExpress.MSO.ADXOlExplorerItemTypes.olAppointmentItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olContactItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olTaskItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olJournalItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olNoteItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olPostItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olDistributionListItem)));
this.adxCommandBarButton1.OlInspectorItemTypes = AddinExpress.MSO.ADXOlInspectorItemTypes.olUnknown;
this.adxCommandBarButton1.St yle = AddinExpress.MSO.ADXMsoButtonStyle.adxMsoButtonIconAndCaption;
this.adxCommandBarButton1.Temporary = true;
this.adxCommandBarButton1.TooltipText = "Synchronize with ManagePro";
this.adxCommandBarButton1.UpdateCounter = 9;
this.adxCommandBarButton1.Click += new AddinExpress.MSO.ADXClick_EventHandler(this.adxCommandBarButton1_Click);
//
// imageList1
//
//this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
//this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
//this.imageList1.Images.SetKeyName(0, "PSTlogo.16x16.png");
//this.imageList1.Images.SetKeyName(1, "Database-Wizard.png");
//this.imageList1.Images.SetKeyName(2, "Edit.png");
//this.imageList1.Images.SetKeyName(3, "Properties.png");
//
// adxCommandBarButton2
//
this.adxCommandBarButton2.Caption = "Options";
this.adxCommandBarButton2.ControlTag = "acd4cb2f-3168-49df-bba0-37686dfa60a8";
this.adxCommandBarButton2.DescriptionText = "Edit Synchronization Options";
this.adxCommandBarButton2.DisableStandardAction = true;
this.adxCommandBarButton2.Image = 3;
this.adxCommandBarButton2.ImageList = this.imageList1;
this.adxCommandBarButton2.ImageTransparentColor = System.Drawing.Color.Fuchsia;
this.adxCommandBarButton2.OlExplorerItemTypes = ((AddinExpress.MSO.ADXOlExplorerItemTypes)((((((((AddinExpress.MSO.ADXOlExplorerItemTypes.olMailItem | AddinExpress.MSO.ADXOlExplorerItemTypes.olAppointmentItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olContactItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olTaskItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olJournalItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olNoteItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olPostItem)
| AddinExpress.MSO.ADXOlExplorerItemTypes.olDistributionListItem)));
this.adxCommandBarButton2.OlInspectorItemTypes = AddinExpress.MSO.ADXOlInspectorItemTypes.olUnknown;
this.adxCommandBarButton2.St yle = AddinExpress.MSO.ADXMsoButtonStyle.adxMsoButtonIcon;
this.adxCommandBarButton2.Temporary = true;
this.adxCommandBarButton2.TooltipText = "Synchronization Options";
this.adxCommandBarButton2.UpdateCounter = 12;
this.adxCommandBarButton2.Click += new AddinExpress.MSO.ADXClick_EventHandler(this.adxCommandBarButton2_Click);
//
// adxOlFormsCollectionItem1
//
this.adxOlFormsCollectionItem1.ExplorerItemTypes = AddinExpress.OL.ADXOlExplorerItemTypes.olMailItem;
this.adxOlFormsCollectionItem1.ExplorerLayout = AddinExpress.OL.ADXOlExplorerLayout.BottomSubpane;
this.adxOlFormsCollectionItem1.FormClassName = "ManageProOutLookAddIn.Form1";
//
// adxOlFormsManager1
//
this.adxOlFormsManager1.Items.Add(this.adxOlFormsCollectionItem2);
this.adxOlFormsManager1.SetOwner(this);
//
// adxOlFormsCollectionItem2
//
this.adxOlFormsCollectionItem2.Cached = AddinExpress.OL.ADXOlCachingStrategy.OneInstanceForAllFolders;
this.adxOlFormsCollectionItem2.ExplorerItemTypes = ((AddinExpress.OL.ADXOlExplorerItemTypes)((((AddinExpress.OL.ADXOlExplorerItemTypes.olMailItem | AddinExpress.OL.ADXOlExplorerItemTypes.olAppointmentItem)
| AddinExpress.OL.ADXOlExplorerItemTypes.olTaskItem)
| AddinExpress.OL.ADXOlExplorerItemTypes.olJournalItem)));
this.adxOlFormsCollectionItem2.ExplorerLayout = AddinExpress.OL.ADXOlExplorerLayout.BottomSubpane;
this.adxOlFormsCollectionItem2.FormClassName = "ManageProOutLookAddIn.ADXOlForm1";
//
// AddinModule
//
this.AddinName = "ManagePro";
this.Description = "Integrate ManagePro with Outlook";
this.SupportedApps = AddinExpress.MSO.ADXOfficeHostApp.ohaOutlook;




X end code X
Posted 23 Sep, 2010 09:42:45 Top
Eugene Astafiev


Guest


Hi Michael,

It looks like you forgot to answer my questions.

Are you able to reproduce the issue with a newly created add-in project?
Posted 23 Sep, 2010 10:07:45 Top
Michael De Marco


Guest


Hi Eugene, I just sent over a test project to xxxx@yyy.bbb. it still does not call the forms constructor. You can remote in if you want.

I don't know the build number but the version is 2010 standard package. The log file is below and the project i sent you was testaddin4

Thanks,

Michael De Marco


Add-in Express Loader Log File: 09/23/2010 08:31:00

Startup directory: C:\addinprojects\ManageProOutLookAddIn\ManageProOutLookAddIn\bin\Debug\
Loader version: 6.1.3044
------------------
08:31:00 3316 5988 Start.
08:31:00 3316 5988 Reading the registry key 'HKEY_CLASSES_ROOT\CLSID\{731307ED-1489-4BDE-BD9E-0DDA166792B9}'
08:31:00 3316 5988 Success. The registry key 'HKEY_CLASSES_ROOT\CLSID\{731307ED-1489-4BDE-BD9E-0DDA166792B9}' is closed.
08:31:00 3316 5988 Converting the '{4BA250A6-8BCA-46A6-982A-F340081187C3}' CLSID from string.
08:31:00 3316 5988 Success.
08:31:00 3316 5988 Attempting to get the class object by the '{4BA250A6-8BCA-46A6-982A-F340081187C3}' CLSID.
08:31:00 3316 5988 Success.
08:31:00 3316 5988 Creating a new instance of the add-in loader.
08:31:00 3316 5988 Success.
08:31:00 3316 5988 Loading the configuration from the system registry.
08:31:00 3316 5988 Getting the latest CLR version.
08:31:00 3316 5988 The latest CLR version is 'v4.0.30319'.
08:31:00 3316 5988 The configuration has been loaded successfully.
08:31:00 3316 5988 Runtime version: v4.0.30319.
08:31:00 3316 5988 Assembly name: ManageProOutLookAddIn, PublicKeyToken=CB8AED464A91FF99.
08:31:00 3316 5988 Class name: ManageProOutLookAddIn.AddinModule.
08:31:00 3316 5988 Attempting to create a new instance of the managed add-in class: CLR - v4.0.30319
08:31:00 3316 5988 Loading CLR: v4.0.30319.
08:31:00 3316 5988 Calling CLRCreateInstance method.
08:31:00 3316 5988 Success.
08:31:00 3316 5988 Calling GetRuntime method.
08:31:00 3316 5988 Success.
08:31:00 3316 5988 Calling GetInterface method.
08:31:00 3316 5988 Calling GetInterface method for the CorRuntimeHost interface.
08:31:00 3316 5988 Success.
08:31:00 3316 5988 Starting CLR...
08:31:00 3316 5988 Success.
08:31:00 3316 5988 The CLR v4.0.30319 has been initialized successfully.
08:31:00 3316 5988 Creating a new domain setup.
08:31:00 3316 5988 Success.
08:31:00 3316 5988 Getting the add-in directory.
08:31:00 3316 5988 Success. The directory is 'C:\addinprojects\ManageProOutLookAddIn\ManageProOutLookAddIn\bin\Debug\'
08:31:00 3316 5988 The configuration file is 'C:\addinprojects\ManageProOutLookAddIn\ManageProOutLookAddIn\bin\Debug\app.config'
08:31:00 3316 5988 The 'shadow copy' is enabled.
08:31:00 3316 5988 Creating a new application domain.
08:31:00 3316 5988 Success.
08:31:01 3316 5988 Unwrapping the managed class.
08:31:01 3316 5988 Success.
08:31:01 3316 5988 Querying the add-in extensibility.
08:31:01 3316 5988 Querying the custom task panes.
08:31:01 3316 5988 Querying the ribbon extensibility.
08:31:01 3316 5988 Success.
08:31:01 3316 5988 Querying the form regions.
08:31:01 3316 5988 Success.
08:31:01 3316 5988 Getting the dispid of the 'Dispose' method.
08:31:01 3316 5988 Success.
08:31:01 3316 5988 The managed add-in class has been created successfully.

Startup directory: c:\project\TestAddin2\TestAddin2\bin\Debug\
Loader version: 6.1.3044
------------------
08:31:03 4568 5988 Start.
08:31:03 4568 5988 Reading the registry key 'HKEY_CLASSES_ROOT\CLSID\{68B30323-2743-478D-9D48-0407F294F477}'
08:31:03 4568 5988 Success. The registry key 'HKEY_CLASSES_ROOT\CLSID\{68B30323-2743-478D-9D48-0407F294F477}' is closed.
08:31:03 4568 5988 Converting the '{4BA250A6-8BCA-46A6-982A-F340081187C3}' CLSID from string.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Attempting to get the class object by the '{4BA250A6-8BCA-46A6-982A-F340081187C3}' CLSID.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Creating a new instance of the add-in loader.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Loading the configuration from the system registry.
08:31:03 4568 5988 Getting the latest CLR version.
08:31:03 4568 5988 The latest CLR version is 'v4.0.30319'.
08:31:03 4568 5988 The configuration has been loaded successfully.
08:31:03 4568 5988 Runtime version: v4.0.30319.
08:31:03 4568 5988 Assembly name: TestAddin2, PublicKeyToken=0DA22B8EBC308905.
08:31:03 4568 5988 Class name: TestAddin2.AddinModule.
08:31:03 4568 5988 Attempting to create a new instance of the managed add-in class: CLR - v4.0.30319
08:31:03 4568 5988 Loading CLR: v4.0.30319.
08:31:03 4568 5988 Calling CLRCreateInstance method.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Calling GetRuntime method.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Calling GetInterface method.
08:31:03 4568 5988 Calling GetInterface method for the CorRuntimeHost interface.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Starting CLR...
08:31:03 4568 5988 Success.
08:31:03 4568 5988 The CLR v4.0.30319 has been initialized successfully.
08:31:03 4568 5988 Creating a new domain setup.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Getting the add-in directory.
08:31:03 4568 5988 Success. The directory is 'c:\project\TestAddin2\TestAddin2\bin\Debug\'
08:31:03 4568 5988 The configuration file is 'c:\project\TestAddin2\TestAddin2\bin\Debug\app.config'
08:31:03 4568 5988 The 'shadow copy' is enabled.
08:31:03 4568 5988 Creating a new application domain.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Unwrapping the managed class.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Querying the add-in extensibility.
08:31:03 4568 5988 Querying the custom task panes.
08:31:03 4568 5988 Querying the ribbon extensibility.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Querying the form regions.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 Getting the dispid of the 'Dispose' method.
08:31:03 4568 5988 Success.
08:31:03 4568 5988 The managed add-in class has been created successfully.

Startup directory: c:\project\TestAddin4\TestAddin4\bin\Debug\
Loader version: 6.1.3044
------------------
08:31:03 4624 5988 Start.
08:31:03 4624 5988 Reading the registry key 'HKEY_CLASSES_ROOT\CLSID\{68D486AF-D145-4D38-9B43-A230ADB85194}'
08:31:03 4624 5988 Success. The registry key 'HKEY_CLASSES_ROOT\CLSID\{68D486AF-D145-4D38-9B43-A230ADB85194}' is closed.
08:31:03 4624 5988 Converting the '{4BA250A6-8BCA-46A6-982A-F340081187C3}' CLSID from string.
08:31:03 4624 5988 Success.
08:31:03 4624 5988 Attempting to get the class object by the '{4BA250A6-8BCA-46A6-982A-F340081187C3}' CLSID.
08:31:03 4624 5988 Success.
08:31:03 4624 5988 Creating a new instance of the add-in loader.
08:31:03 4624 5988 Success.
08:31:03 4624 5988 Loading the configuration from the system registry.
08:31:03 4624 5988 Getting the latest CLR version.
08:31:03 4624 5988 The latest CLR version is 'v4.0.30319'.
08:31:03 4624 5988 The configuration has been loaded successfully.
08:31:03 4624 5988 Runtime version: v4.0.30319.
08:31:03 4624 5988 Assembly name: TestAddin4, PublicKeyToken=3E2FA533EDC6027B.
08:31:03 4624 5988 Class name: TestAddin4.AddinModule.
08:31:03 4624 5988 Attempting to create a new instance of the managed add-in class: CLR - v4.0.30319
08:31:03 4624 5988 Loading CLR: v4.0.30319.
08:31:03 4624 5988 Calling CLRCreateInstance method.
08:31:03 4624 5988 Success.
08:31:03 4624 5988 Calling GetRuntime method.
08:31:03 4624 5988 Success.
08:31:03 4624 5988 Calling GetInterface method.
08:31:03 4624 5988 Calling GetInterface method for the CorRuntimeHost interface.
08:31:03 4624 5988 Success.
08:31:03 4624 5988 Starting CLR...
08:31:03 4624 5988 Success.
08:31:03 4624 5988 The CLR v4.0.30319 has been initialized successfully.
08:31:03 4624 5988 Creating a new domain setup.
08:31:03 4624 5988 Success.
08:31:03 4624 5988 Getting the add-in directory.
08:31:03 4624 5988 Success. The directory is 'c:\project\TestAddin4\TestAddin4\bin\Debug\'
08:31:03 4624 5988 The configuration file is 'c:\project\TestAddin4\TestAddin4\bin\Debug\app.config'
08:31:03 4624 5988 The 'shadow copy' is enabled.
08:31:03 4624 5988 Creating a new application domain.
08:31:03 4624 5988 Success.
08:31:08 4624 5988 Unwrapping the managed class.
08:31:08 4624 5988 Success.
08:31:08 4624 5988 Querying the add-in extensibility.
08:31:08 4624 5988 Querying the custom task panes.
08:31:08 4624 5988 Querying the ribbon extensibility.
08:31:08 4624 5988 Success.
08:31:08 4624 5988 Querying the form regions.
08:31:08 4624 5988 Success.
08:31:08 4624 5988 Getting the dispid of the 'Dispose' method.
08:31:08 4624 5988 Success.
08:31:08 4624 5988 The managed add-in class has been created successfully.
Posted 23 Sep, 2010 10:53:28 Top
Eugene Astafiev


Guest


Hi Michael,

It looks like you changed the namespace of your form. Please correct the FormClassName property of the AddinExpress.OL.ADXOlFormsCollectionItem class according to the new namespace:

this.adxOlFormsCollectionItem2.FormClassName = "ManageProOutLookAddIn.ADXOlForm1";

Does it help?
Posted 23 Sep, 2010 12:22:12 Top
Michael De Marco


Guest


Hi Eugene,

It does not help. I sent you a sample project and it does not work either which is TestAddIn4. Did you get a chance to look at it. Would you be able to remote in to my machine and take a look before the day is up.

Thanks,

Michael
Posted 23 Sep, 2010 12:36:28 Top
Eugene Astafiev


Guest


Hi Michael,

Sure. Please send the required credentials to the support e-mail address (see readme.txt for details).
Posted 23 Sep, 2010 12:42:19 Top
Michael De Marco


Guest


Hi Eugene, where is readme.txt? Before you remote in did you see the sample project i sent.
Can you get it to work then send me back the results. Then if that does not work i we can do the remoting in. One other thing is there sample code for getting the formscollection to be invoked.

Thanks,

Michael
Posted 23 Sep, 2010 12:49:23 Top
Eugene Astafiev


Guest


Michael,

Yes, I have seen you sample add-in project. Moreover, after I corrected the FormClassName property your add-in runs as expected.

Please find a plenty of sample add-in projects in the http://www.add-in-express.com/support/addin-c-sharp.php#form-regions section of our web site.
Posted 23 Sep, 2010 12:55:55 Top