Stop Form from Flickering

  • Thread starter Thread starter Steve Haack
  • Start date Start date
S

Steve Haack

I have a form with a fair amount of controls on them. 3 of them are clocks
which get updated each second via the form's OnTimer event.

Frequently, but not always, most of the form will flicker during the update
of the controls.

I have tried this on 3 different computers and they all do it.

Has anyone seen this? Is there something that I can do to prevent it?

Thanks,
Steve
 
Steve Haack said:
I have a form with a fair amount of controls on them. 3 of them are clocks
which get updated each second via the form's OnTimer event.

Frequently, but not always, most of the form will flicker during the
update
of the controls.

I have tried this on 3 different computers and they all do it.

Has anyone seen this? Is there something that I can do to prevent it?

Thanks,
Steve

You could try:

Application.Echo False
'Update your controls
Application.Echo True
 
Back
Top