View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Is it possible to have a messageBox to display for 2 sec's and thenClose AUTOMATICALLY ?

This seems to work under some versions of windows:

CreateObject("WScript.Shell").Popup "Hello", 2, _
"This closes itself in 2 seconds"

But it doesn't work in all versions of windows.



Corey wrote:

--

Dave Peterson