Thread: Class Module?
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Steve Steve is offline
external usenet poster
 
Posts: 1,814
Default Class Module?

so my only option is to place an event for each control?

"Bob Phillips" wrote:

Unfortunately you don't get an AfterUpdate event with application events in
this manner, not even an Exit event

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"steve" wrote in message
...
I have a userform that takes the user input, passes it to a worksheet

where
the calculations are performed, then presents the results back to the
userform. To do this, I have two Sub Routines placed in a Module. They

are
"UpdateCalculationsSheet" & "UpdateUserform".

For each control on the userform, I have placed an "AfterUpdate" Event.

In
each "AfterUpdate" routine, I write:

Call UpdateCalculationsSheet
Call UpdateUserform

Instead of doing this for every single control on the userform, is there a
way I can write a SINGLE event for all controls on a userform? I'm not
familiar with class modules. I thought that might be the solution.

Ideally, I just want a Routine that is, Sub Userform_AfterUpdate(), but

I
know this doesn't exist.

Thanks!
Steve