Excel Addin, written in C#, using Excel DNA, VS 2008
My addin has a ribbon tab with buttons.
When users select an cell in Excel, based on formula string of the cell, certain buttons will be enabled or disabled.
My implementation is using event handler
XLApp.SheetSelectionChange += ApplicationSheetSelectionChange;
XLApp.SheetDeactivate += SheetDeactivatedEvent;
XLApp.SheetCalculate += ApplicationSheetCalculate;
In the above 3 handlers, I check the formula of current selected cell, and disable/enble some buttons based on that.
This approach seems inefficient.
Esp. it causes slow response of Excel.
E.g.: when users opens a xls in excel 2007, it takes 3-4 minutes to open it even if there is not much data in the xls file.
or when users select a few columns and double click to auto adjust column width, Excel will hang.
When users remove my AddIn and do the same things as auto adjust column width, open up xls in Excel 2007, Excel behaves as quick as usual.
Obviously my addin drags down Excel.
I think the above 3 handlers are the cause, and want to remove the handlers but still want to be able to disable/enable buttons based on selection.
Anyone know a solution?
thanks