VBA events

M

med111

Hi all

I want to know how simultaneous events are executed (simultaneousely
or sequential)? Is there a way to schedule events?
 
J

Jonathan West

med111 said:
Hi all

I want to know how simultaneous events are executed (simultaneousely
or sequential)? Is there a way to schedule events?

If your code is triggered from events generated elsewhere, then it will run
whenever that event is raised by the other application.

In VBA, you can raise your own events by using the Raise command.
 
Top