Buttonless MsgBox?

  • Thread starter Thread starter Kiloran
  • Start date Start date
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
 
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
 

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