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

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