Stop Form from Flickering

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
 
S

Stuart McCall

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
 

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

Top