View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Michel Pierron Michel Pierron is offline
external usenet poster
 
Posts: 214
Default Buttonless MsgBox?

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

"Kiloran" a écrit dans le message de
...
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