How can i Flash a MsgBox ?

A

aaron.kempf

you mean you just want it to come up for a minute and then close?

i'd reccomend making you own custom form to do this; it would be easy
to do.

And then, of course-- make your form modal or something and give it a
couple of text boxes; make a function called MsgDisplay that is
similiar to msgbox but doesn't wait for a prompt.

-Aaron
 
K

Ken Snell [MVP]

Create your own form with the message. In the form's Timer event, you run
code that closes the form. Set the TimerInterval property (form's design
view) to the number of milliseconds that you want the form to remain
visible/open.
 
Top