Triggering two events

  • Thread starter Thread starter Kavvy
  • Start date Start date
K

Kavvy

Hi,

I have a form where I want to trigger two events one after the other.

eg. tbxDateEntry (text box) has focus and the user clicks on mCal
(calendar).

At the moment I have tbxDateEntry_Leave triggering fine, but I also need to
be able to trigger a mCal_DateSelected event right after.

Can anyone advise please?
Thanks
Rich.
 
Have two methods, which can take the same parameters as the event handlers.
Then, have a third method which actually *is* the event handler, and simply
calls the other two methods.
 
Back
Top