Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create a flashing text box in access using vba 3

Status
Not open for further replies.

snipesnab

IS-IT--Management
Oct 24, 2002
171
GB
Does anyone know how to create a flashing text box using vba code?
 
you don't really need vba for this......

on the form in question, set the form's TimerInterval to some number....1000 = 1 sec so I would probably use something like that.

Then in the OnTimer event, simply put:

Me![name of control to flash].Visible = Not Me![name of control to flash].Visible

There you go.... Please remember to give helpful posts the stars they deserve!
This makes the post more visible to others in need! [thumbsup2]

Robert L. Johnson III, A+, Network+, MCP
Access Developer/Programmer
robert.l.johnson.iii@citigroup.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top