How to run multiple functions in one event

  • Thread starter Thread starter Lucas G.
  • Start date Start date
L

Lucas G.

Hi,

I would like to know if it is possible to run more than
one function at once in one event?
Otherwise, is it possible to call functions within an
Event Procedure?

Thanks
 
You can't really call two or more at the same time, although Access may
still be processing one as it calls the next one. You can call as many as
you like from any event which is what I think that you mean.

Yes to the second question too.

Gary Miller
 
Hi,

I would like to know if it is possible to run more than
one function at once in one event?

Not on the events tab of the control property, no...
Otherwise, is it possible to call functions within an
Event Procedure?

Certainly, as many as you like. The Event Procedure is a full-featured
programming language, VBA, which lets you call subroutines, invoke
functions, loop, branch, and everything any programming language can
do.
 
Back
Top