How to run multiple functions in one event

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
 
G

Gary Miller

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
 
J

John Vinson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top