DialogEx.StartTimer

DialogEx.StartTimer ( 

number Interval = 1000,

number ID = 10 )

Example 1

DialogEx.StartTimer(1000);

Starts the dialog timer whose ID is 10, and tells it to trigger the On Timer event once every second.

Example 2

DialogEx.StartTimer(250, 50);

Starts the dialog timer whose ID is 50, and tells it to trigger the On Timer event 4 times per second.

Example 3

DialogEx.StartTimer(2500, 100);

Starts the dialog timer whose ID is 100, and tells it to trigger the On Timer event every 2.5 seconds.

See also:  Related Actions