How do I format a field in Access to blink (Event Procedure)?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like the values in an Access field to flash or blink based on a
condition? Examples in Vb would be helpful. Thanks
 
hdfixitup said:
I would like the values in an Access field to flash or blink based on a
condition? Examples in Vb would be helpful. Thanks


You can not use a format for that. You would have to code
the condition in some appropriate event and set the form's
timerinterval. The form's Timer event will then fire at the
specified interval and you can use that to change the
control's color properties.

In general, this is not a good practice because flasing
screens dirve a lot of people nuts. Besides, you must
disable the timer event to prevent it from interfering
whenever you are editing any VBA procedure.
 
Back
Top