ScreenUpdating

  • Thread starter Thread starter Damien McBain
  • Start date Start date
D

Damien McBain

in excel I go...
Application.ScreenUpdating = False
....before running an "ugly" subroutine (one that makes the screen change a
lot).

How do I do this in Access?

TIA

Damo
 
DoCmd.Echo False
or
Application.Echo False

Remember to include turning it back on in your error handler as well as the
normal location in your code in case you wind up there instead of where you
should be.
 
Wayne said:
DoCmd.Echo False
or
Application.Echo False

Remember to include turning it back on in your error handler as well
as the normal location in your code in case you wind up there instead
of where you should be.

Thanks Wayne, it would have taken me a week to guess that!

Shame VBA is so different across MS apps.
 

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