Sep 24, 2007 #1 slint Technical User Joined Jul 2, 2006 Messages 48 Location 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 Joined Nov 8, 2002 Messages 53,708 Location 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 Joined May 17, 2000 Messages 167 Location 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 Joined Jul 2, 2006 Messages 48 Location SE I followed your link PHV and it solved my problem. Thanks! Upvote 0 Downvote