Form keeps on Flickering

Dina01

Registered User.
Local time
Today, 21:34
Joined
Apr 24, 2002
Messages
87
I have a continuous form and I have the timer set at every 1sec to refresh the screen...

But the problem is that my screen keeps on flickering.
This is the code I put in my form timer event..

*****************

Private Sub Form_Timer()

DoCmd.Echo = False
Forms!PCV_Dispatch_form.Requery 'Requery the form
DoCmd.Echo = True

End Sub

and I also tried this one

**************
Private Sub Form_Timer()

Application.Echo = False 'turn off screen updating
Forms!PCV_Dispatch_form.Requery 'Requery the form
Application.Echo = True 'turn screen updating back on

End Sub

Can anyone please help...
 
The screen will flicker when it requeries. The only way to change it from nonstop flicker is to only requery every 15 seconds or so. Then it isn't so hazardous on your eyes.
 

Users who are viewing this thread

Back
Top Bottom