ISDBApplication::CreateTimer
From MMWiki
CoClass SDBApplication, Interface ISDBApplication
Function CreateTimer(Interval As Long) As SDBTimer
[edit]
Parameters
| Name | Type | Description |
|---|---|---|
| Interval | Long | Interval between calls (in milliseconds). |
[edit]
Method description
Creates new timer.
[edit]
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
