RunObject Method Example

The following example runs all Timer objects in the ScheduleTestSchedule.

TestSchedule.RunObject 1

The following example runs the Timer MyTimer in the Schedule TestSchedule.

TestSchedule. RunObject "MyTimer"

The following example runs the Timer objects TestTimer, TestTimer1, TestTimer2 in the Schedule TestSchedule.

Dim objects(2) As Variant

objects(0) = "TestTimer"

objects(1) = "TestTimer1"

objects(2) = "TestTimer2"

TestSchedule. RunObject objects