Skip to content
Discussion options

You must be logged in to vote
  1. Install the ExcelDna.IntelliSense package.
  2. Add a class that implements IExcelAddIn and calls IntelliSenseServer.Install() in the AutoOpen() implementation.
using ExcelDna.Integration;
using ExcelDna.IntelliSense;

namespace MyAddIn
{
    public class AddIn : IExcelAddIn
    {
        public void AutoOpen()
        {
            IntelliSenseServer.Install();
        }

        public void AutoClose()
        {
            IntelliSenseServer.Uninstall();
        }
    }
}

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by hxhgxy
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants