I have asked this elsewhere, but have never found anyone knows how to build an add-in for VBA IDE using VB.NET. Is it even possible? Could someone point me to an example?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is possible you need to write a com addin using IDTExtensibility2 interface, select the shared addin project template from new project.
EDIT
Otherwise to create this addin from scratch you will need to do the following:
Heres an implementation to get you started, Firstly replace the “YourAddinName” with your AppName and Create a Guid for “YourGeneratedGuid”.
You will need to register the Addin into the right Registry location, see the registry keys that follow to get an idea, also replace some vars in the registry keys.
Here is the registry .key script to register the Addin, note you will need to change some of the settings in order to register it properly.
NOTE the tokens “YourGeneratedGuid” must have the curly braces {} included and be the same as the Guid in the attrib above, the token “YourAssemblyNameFullTypeName” must be the Assembly full name, the token “YourAddinName.Connect” must be the same ProgId set in the attrib above.
SIDE NOTE
Also found this helpful, might save you couple hours googling.