View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.office.developer.com.add_ins,microsoft.public.win32.programmer.ole
Peter T Peter T is offline
external usenet poster
 
Posts: 5,600
Default how to detect if an addin is running

Dim cai As COMAddIn

For Each cai In Application.COMAddIns
Debug.Print cai.Connect, cai.Description
Next

Regards,
Peter T

"Gee Weez" wrote in message
...
Hi,

I am trying to write a Com-Addin for MS Excel and I wanted to know if
there was any method I could use to determine if the addin was loaded
and running?

GW.