disable screen updating

  • Thread starter Thread starter Lynn
  • Start date Start date
L

Lynn

I perform a number of operations on a form - and as I do
that, the screen flickers slightly. I would like to freeze
the screen while I do my operations, and then refresh when
I am done.

How is that done?
 
Lynn said:
I perform a number of operations on a form - and as I do
that, the screen flickers slightly. I would like to freeze
the screen while I do my operations, and then refresh when
I am done.

How is that done?

Before you begin your operations, issue the following statement:

Application.Echo False

Then, when you are finished:

Application.Echo True

Also a good idea to issue the "True" statement in an error handler for the
procedure, in case something goes wrong.
 
Good evening

Take a look at the Echo command in Help

Best Regards

Maurice St-Cyr
Micro Systems Consultants, Inc.
 

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