Turn screen updating off

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all.

In Access VBA, what is the equivalent of Excel's VBA statement:
Application.ScreenUpdating = False ?

In Excel, this statement disables the flickering of the screen while the
application is working.

In Access, i'm running some queries via a CommandButton on a Form, and i
would like to lose the flickering of the screen while the queries are being
executed.

Thank you,
Alex
 
In Access:
DoCmd.Echo false

Be sure to turn it back on again (e.g. after the error recovery) or your
working blind.
 
Back
Top