View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default What events can be captured in a Class Module?

If you are talking about using With Events, you can use the events native to
the MSForms control (Listbox, combobox, textbox, etc). However, events like
Enter, Exit, AfterUpdate and BeforeUpdate belong to the container (the
control object) and aren't available using With Events. Likewise for
GotFocus and LostFocus which belong to the container (oleObject) on the
worksheet.

--
Regards,
Tom Ogilvy


Julian Milano wrote in message
...
Like the subject says.......

Is there a list of which events for which type of controls are available

to
a Classs Module? I'm looking at textboxes at the moment....

--


Julian Milano