--
You received this message because you are subscribed to the Google Groups "Excel-DNA" group.
To unsubscribe from this group and stop receiving emails from it, send an email to exceldna+unsubscribe@googlegroups.com.
To post to this group, send email to exce...@googlegroups.com.
Visit this group at https://groups.google.com/group/exceldna.
For more options, visit https://groups.google.com/d/optout.
Hi Marco,
I don’t think SharpDevelop, the .NET version or NetOffice are likely to be affecting this.
You might want to enable the Excel feature to display UI errors:
File -> Options -> Advanced -> Show add-in user interface errors
This will let Excel pop up a proper message if there is any issue with the xml.
Next you can check whether the Excel versions differ between cases that work OK and cases that don’t. For example, the ribbon xml markup might have the Excel 2010+ version in the namespace, and then won’t load under Excel 2007.
Finally, it’s a good idea to wrap the ribbon callback methods in exception handlers, and do some basic logging if you have exceptions there. Excel seems to not like it when the ribbon callbacks leak unhandled exceptions.
-Govert
--