View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Charles Chickering Charles Chickering is offline
external usenet poster
 
Posts: 272
Default Addin interference

Have you tried using
Application.EnableEvents = False
in your code to prevent his other addin from triggering? Just be sure to
reenable them when you're done.
Application.EnableEvents = True
--
Charles Chickering

"A good example is twice the value of good advice."


"ojv" wrote:

I have an adding which includes adding a new workbook. One of the guys using
my addin gets stuck as the adding of a new workbook causes Excel to launch a
modal dialog via another addin he has installed. How can I trap this, and how
can i talk to this other dialog to close it?

Any help appreciated

regards

ojv