Sep 24, 2007 #1 slint Technical User Jul 2, 2006 48 SE How do i display a message, like the msgBox, that closes after 10 sec if thers no user interaction so that the rest of the script is processed. A vb/batch combo that maybe explain my needs Call MsgBox ("Hello world!") -timeout /T 10
How do i display a message, like the msgBox, that closes after 10 sec if thers no user interaction so that the rest of the script is processed. A vb/batch combo that maybe explain my needs Call MsgBox ("Hello world!") -timeout /T 10
Sep 24, 2007 1 #2 PHV MIS Nov 8, 2002 53,708 FR Have a look here: http://msdn2.microsoft.com/en-us/library/x83z1d9f.aspx Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
Have a look here: http://msdn2.microsoft.com/en-us/library/x83z1d9f.aspx Hope This Helps, PH. FAQ219-2884 FAQ181-2886
Sep 25, 2007 #3 TheKidd IS-IT--Management May 17, 2000 167 US Here's an example using a popup: shell.popup "Registry key has been changed to " & Network.ComputerName & " Please Reboot.", 60, "INFO", 0+64 Upvote 0 Downvote
Here's an example using a popup: shell.popup "Registry key has been changed to " & Network.ComputerName & " Please Reboot.", 60, "INFO", 0+64
Sep 25, 2007 Thread starter #4 slint Technical User Jul 2, 2006 48 SE I followed your link PHV and it solved my problem. Thanks! Upvote 0 Downvote