My Excel
addin (XLL AddIn, call it MyAddIn
) is built with C#, ExcelDNA, NetOffice, VS2010. Client has another addin (let's call it B
), I guess it is written in VBA.
Client says B
works fine without MyAddIn
. Once MyAddIn
is installed, B
fails with error:
Error code: 406 Error message: Non-modal forms cannot be displayed in this host application from an ActiveX DLL, ActiveX Control, or Property Page.
I did see this Microsoft resource, but I do not want to just tell the client that B
addin needs changing. I want to do something to avoid this from my side.
Here is the steps reported to see the issue:
- When B addin is installed, it does not make any registry entry for the Microsoft
Excel
. - When
MyAddin
is installed, it makes a registry entry for MicrosoftExcel
. - Registry entries here basically tells that the addin should be opened when
Excel
is launched, soB
addin is not launched,Excel
works fine,MyAddIn
works fine. - Now when
B
addin is launched, it gives the 406 error shown above. - We can ignore the error and keep working with the
B
addin; disablingMyAddIn
is the workaround. - When the
B
addin is launched, we see thatMyAddIn
is loaded first before theB
addin and then get the 406 error. - When we uninstall
MyAddIn
, this error is no longer encountered and everything works fine. - To remove this error, we tried changing the registry order to make the
B
addin always open beforeMyAddin
.- This works, but then this a global change for Microsoft
Excel
, which meansB
addin will always open, even when we launch onlyExcel
. This is not desired, asB
addin then can't let users work with the static data as theB
addin keeps on refreshing real-time. That is the reason theB
addin doesn't make an entry in the registry settings. So registry changes are not an option. We can’t always openB
addin wheneverExcel
is open.
- This works, but then this a global change for Microsoft
I don't have an answer, but here are a couple of things you can try.
You can tell what type of Addin you are dealing with by executing File | Options and selecting the Addins Tab.
If the event happens as soon as you load
Addin B
, it probably means you are calling a non-modal dialog box as it states, but there are a few other things that could give you similar errors.Based on your description, it sounds like the error could either be a dialog box in your Addin, or it could be in the other addin, and it gets called as a side effect of some state change your addin made.
To get to the bottom of it, you need to attach a debugger. You can do that by making Excel your Startup Project, or by attaching later. The former is probably easier in this case.
In Visual Studio, Use Project | Properties | Debug, select Start external program and put in the fully qualified pathname to Excel.
Load
Addin B
manually to give yourself the errorBreak into the debugger and examine the call stack.
That will frequently but not always give you good clue as to where the problem is, but it's always the first step. If it doesn't give you useful information (stack info is frequently completely lost in transitions between addins), you may want to put some breakpoints in your projects in any events you handle. Even this doesn't reliably work all the time, but it's worth a shot.
If I had to guess, I would say probably have some event handlers in your add-in that are causing the problem, And you might have to do something like change a
.Show
to a `.ShowDialog', or defer the processing of the form until outside the event handler but that's just a guess.