|
From: ebferro on 13 Feb 2005 10:57 In vbscript, is there a way to display an informational message, wait for a period of time and then have the message box disappear and the script continue running? TIA Ernie
From: Torgeir Bakken (MVP) on 13 Feb 2005 11:04 ebferro wrote: > In vbscript, is there a way to display an informational message, > wait for a period of time and then have the message box disappear > and the script continue running? Hi E.g. the Popup method, here is an example that will display a message for 3 seconds: Set oShell = CreateObject("WScript.Shell") oShell.Popup "Something here", 3, _ "Some title here", vbInformation + vbSystemModal -- torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway Administration scripting examples and an ONLINE version of the 1328 page Scripting Guide: http://www.microsoft.com/technet/scriptcenter/default.mspx
|
Pages: 1 Prev: How to write this 0xFFFFFFFF to registry Next: Change local Administrator account name? |