Hi Ron,
I expect the functionality when typing into the formula box above the sheet does not work under Windows 7.
So I have some updates that have not been pushed to the repo that will make things work better both for Windows 7 and for old Excel versions (back to 2007). I'll have a look over the weekend, and check in the more recent
changes.
I have some design questions outstanding:
* The IntelliSense service will have to be global for all add-ins in the process. So I'd prefer it to become a stand-alone add-in that somehow queries Excel or the other add-ins for the function help information. If you have
the IntelliSense in your add-in, and install another add-in that has the same, it will be a mess (or become very slow).
There is some general support in the latest Excel-DNA for getting hold of registered function information from a separate add-in. But the timing of such calls is tricky. How do we detect that a new add-in has loaded, or that
you've late-registered some extra functions?
* I'd like to have a mechanism (probably an .xml file) that will allow VBA users or other add-ins to register IntelliSense information for their functions. This should be easy.
* Then we'd like to add extensions to the IntelliSense display, for example hyperlinks on parameters, support for enums (like VLOOKUP's last argument) etc.
The UI Automation stuff is a bit fragile, and I remember having some Excel crashes when I tested last. So you should take some care while working on it.
-Govert