Office Add-In problem

  • Thread starter Thread starter Jacques
  • Start date Start date
J

Jacques

Hello,

I created a simple add-in. The add-in displays OK.
But, every now and then I will make a change and
the add-in stops displaying. I would remove the
potential offending code, but the add-in never
displays again, no error messages - nothing.
It's like the add-in no longer exists.

I have to create a new add-in (with the same name)
for the add-in to start displaying again.

Any ideas?

TIA,
Jacques
 
Hi Jacques,

Here's how:

// When run, the Add-in wizard prepared the registry for
// the Add-in. At a later time, if the Add-in becomes
// unavailable for reasons such as:
// 1) You moved this project to a computer
// other than which is was originally created
// on.
// 2) You chose 'Yes' when presented with a
// message asking if you wish to remove the Add-in.
// 3) Registry corruption.
// you will need to re-register the Add-in by
// building the MyAddInSetup project
// by right clicking the project in the Solution
// Explorer, then choosing install.

IHTH,
BC
 
Hi Jacques,

Whne your addin generates any error in the initialization phaze, I know
for sure that Outlook changes the LoadBehaviour setting in the registry
from 3 to 2, which prevents the addin to load. So, check it and after
fixing the rpoblem, just change it back to 3.

Have fun
Cheers
Sunny
 
Back
Top