too many on current events

  • Thread starter Thread starter mcnews
  • Start date Start date
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
 
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
 

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

Back
Top