Reputation: 1717
I have created a Word Addin for MS Word 2010. I want to debug the code. When I press Debug, a new instance of word is opened but no Addin seem to be loaded.
I can see my addin after installing via setup(.msi).
My addin is loaded as a COM object in word in mscoree.dll not as vsto.
Upvotes: 0
Views: 613
Reputation: 3230
It is possible your setup program is putting in necessary registry keys for the add-in down: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\Word\Addins (or alternately down this path but in HKCU). Or, if this key is already there, ensure the HKCU entry, if exists, has LoadBehavior set to 3
Upvotes: 0