Flashing Message box text

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Using Access 2002 is it possible to have the text in a message box to
flash?

Tom
 
Tom said:
Using Access 2002 is it possible to have the text in a message box to
flash?

Tom

Set the TimerInterval to 500 (or whatever) and in the Timer event have
code...

Me.TextBoxName.Visible = Not Me.TextBoxName.Visible

(use with caution as flashing graphics are generally frowned upon)
 
Rick Brandt said:
Set the TimerInterval to 500 (or whatever) and in the Timer event have
code...

Me.TextBoxName.Visible = Not Me.TextBoxName.Visible

(use with caution as flashing graphics are generally frowned upon)

I believe Tom was asking about a message box.

While it's probably possible to do this with a message box, it would take a
lot of API calls. It's simpler to create your own form that simulates the
message box, and then use the technique shown above.
 

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

Back
Top