Does Access HELP have a list of events that are constantly being scanned for on background forms?

Does Access HELP have a list of events that are constantly being scanned for on background forms?

am 03.11.2007 02:08:03 von MLH

I can't find a list of events that are constantly monitored
on background forms in A97. What I'm wondering is if
there are events that are NOT being scanned for on
forms running in the background. Say you have 4 forms
open. Only 1 is the active form. What sort of activity or
event monitoring is going on in the other forms.

Re: Does Access HELP have a list of events that are constantly being scanned for on background forms

am 03.11.2007 05:20:29 von Tom van Stiphout

On Fri, 02 Nov 2007 21:08:03 -0400, MLH wrote:

Not sure you understand how events work. Typically they are generated
upon a user action. Indeed, programmatically writing a value into a
text control will NOT trigger the Change event, while typing in same
text control will trigger that event.
Exceptions include the Timer event.
If you really want to know: put a Debug.Print statement in each event
procedure.

-Tom.


>I can't find a list of events that are constantly monitored
>on background forms in A97. What I'm wondering is if
>there are events that are NOT being scanned for on
>forms running in the background. Say you have 4 forms
>open. Only 1 is the active form. What sort of activity or
>event monitoring is going on in the other forms.