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

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
 
M

Marshall Barton

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.
 

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