View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
josh7 josh7 is offline
external usenet poster
 
Posts: 7
Default object does not source automation events

You are right,I am having a typelib conflict
Thank you,
Joshua



"DM Unseen" wrote:

Then you have a typelib conflict!

pls prefix the Toolbar type definition with the actual typelib name to
distinguish it form the Toolbar object in the XL typelib(look it up in
the object browser)

e.g.

Private withevents ctrToolBar as MyTypelib.Toolbar

Dm Unseen