ISDBApplication::CreateTimer
Jump to navigation
Jump to search
CoClass SDBApplication, Interface ISDBApplication
Function CreateTimer(Interval As Long) As SDBTimer
Parameters
Name | Type | Description |
---|---|---|
Interval | Long | Interval between calls (in milliseconds). |
Method description
Creates new timer.
Example code
Set Tmr = SDB.CreateTimer( 10000) ' Pop up a message in 10 seconds
Script.RegisterEvent Tmr, "OnTimer", "TestTimer"
Sub TestTimer( Timer)
SDB.MessageBox "10 seconds elapsed!", mtInformation, Array(mbOk)
Script.UnregisterEvents Timer ' Terminate usage of this timer
End Sub