How can I use timers in vbscript?
Thanks In Advance!
Printable View
How can I use timers in vbscript?
Thanks In Advance!
If you are using VBScript in a web page then this will work:
Code:Sub Test()
msgbox Time
Window.SetTimeOut "Test()", 1000
End Sub
Sub Window_OnLoad()
Test
End Sub