too many on current events

M

mcnews

i notice that my form containing a subform executes an on current
event like so:

sub1104
sub1104
main1104
sub1104

i'm displaying via debug.print some text & a record number.

is this normal?
can i make just fire off the sub on current one time.
i am not updating on the subform form the main form.

it is causing an annoying flicker and i am sure this will become more
annoying on slow networks.

tia,
mcnewsxp
 
P

Pieter Wijnen

A workaround is to put

Application.Echo False
' your code
Application.Echo True

-- or --
Me.Painting = False
' your code
Me.Painting = True

in the OnCurrent Event of the sub

HTH

Pieter
 
Top