ISDBApplication::CreateTimer

From MediaMonkey Wiki
Revision as of 13:28, 21 March 2007 by Jiri (talk | contribs)
Jump to navigation Jump to search

CoClass SDBApplication, Interface ISDBApplication

Function CreateTimer(Interval As Long) As ISDBTimer


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