Set oShell = CreateObject("Wscript.Shell")
Set WSHShell = WScript.CreateObject("WScript.Shell")
Message = "Set time till beep in miliseconds - 60000 miliseconds = 1
minute"
result = InputBox(Message, "Beep", 100, 100)
Script.wait = result
Sub Beep (n, wait)
For i = 1 To n
oShell.Run "%comspec% /c echo " & Chr(7), 0, False
Next
End Sub
..
Thats how far I got, don't really know where to go from here.
How do I get the script to wait for the amount of set by the Input
box.
Help is greatly appreciated!