Reducing flicker when requering/refreshing

V

Vagabond

Can anybody help how to reduce screen flicker when requerying? I use a lot
of list boxes that draw information in from queries. The information in the
queries will change due to interaction with the listboxes and the listboxes
themselves are then updated. There is rather too much screen flicker for
comfort. Is there some way of reducing it?
 
J

Jack Leach

I'm not sure how much it will help but you can try turning the echo off
before requerying

DoCmd.Echo False

Just don't forget to turn it back on in your exit/error code.

--
Jack Leach
www.tristatemachine.com

"I haven''t failed, I''ve found ten thousand ways that don''t work."
-Thomas Edison (1847-1931)
 
Top