As mentioned in Part III, any events an add-in hooks into
should be unhooked in the add-in, presumably in the Shutdown method. Unfortunately, if the add-in does not unhook
from an event this can cause problems- namely that the host application will
continue to attempt to reach the add-in code when the event is raised.
To prevent ...