Buttonless MsgBox?

K

Kiloran

I want to create something like a MsgBox (system modal, ideally), but which
only displays for a few seconds.

It seems to me that the standard MsgBox always has buttons (OK, Cancel,
etc), which require user action to permit the macro to continue

Any way to do what I need?

--Kiloran
 
M

Michel Pierron

Hi Kiloran;
May be:
Sub Test()
With CreateObject("Wscript.Shell")
.Popup "This message will be displayed for 3 seconds" _
, 3, "Self Closing MsgBox", 64
End With
End Sub

MP
 
Top