IntelliSense
IntelliSense copied to clipboard
Add in-sheet IntelliSense for Excel UDFs
When I use an intellisense 1.6 Addin with ``` public void AutoOpen() { ExcelIntegration.RegisterUnhandledExceptionHandler(ex => "!!! ERROR: " + ex.ToString()); IntelliSenseServer.Install(); } ``` Excel window become laggy when you move...
For VBA functions, we should have a way to run the `Application.MacroOptions` code to register descriptions etc. that show in the Insert Function dialog. I don't know when this is...
I'm using Excel-DNA Intellisense for VBA functions, which involves providing a worksheet named `_Intellisense_`. All works great, though I find that new line characters (ascii 10) in the "argument help"...
It would be easier for VBA users to create the IntelliSense files if we could skip the file reload steps. We could investigate monitoring the COM events to see when...
However, there is a new weird bug that wasn't there in the previous version. This affects computers with more than one screen. The bug appears in both Excel 2010 and...
Can the VS warning/exception be properly resolved in the code? Like http://www.visualstudioextensibility.com/2013/03/17/the-strange-case-of-quot-loaderlock-was-detected-quot-with-a-com-add-in-written-in-net/ here?
Maybe instead in allowing `XInclude` (see issue #81) you could allow a (sub)folder `_IntelliSense` in which several `.IntelliSense.xml` files can be stored to allow e.g. having one XML file per...
I usually have several modules with functions in my AddIns which could also be used separately. To not make the `.IntelliSense.xml` file big and easier manageable, it would be great...
Suppose a UDF is typed in a cell (e.g. =MyVbaFunction(1,2) ). After that by clicking on function name "MyVbaFunction" doesn't appear the tooltip but by clicking on arguments do it....
Hey, for future reference: A great extension of this project might be to add enum-type parameter tooltip support, similar to what Excel has for its built-in functions, 