Me.Requery should "blinking" on the form

cheer

Registered User.
Local time
Tomorrow, 02:45
Joined
Oct 30, 2009
Messages
222
I have set Timer.Interval=1000 on a form and for every 1 second , the form need to refresh the a column called TimerSecond for user to see the count down data. To achieve the goal, I have a method "Me.Refresh" under the Form_Timer event.

However, the screen has shown great "blinking" and it is not as seamless as what I am looking for.

Any suggestion to improve that scenario ?
 
Me.Requery should "blinking" on the form
I have a method "Me.Refresh"
refresh or requery?
Its not quite clear what your trying to do. Are you trying to display a countdown timer? to countdown your ontimer event would be something like
Code:
me.TimerSecond = me.TimerSecond - 1
Whats supposed to happen when it hits 0?
More info please.
 

Users who are viewing this thread

Back
Top Bottom