<< Click to Display Table of Contents >>
OnStartRunning |
OnStartRunning()
Occurs as soon as an object starts. In the next example, Months is an Internal Tag and uses this event to initialize an array.
Sub Months_OnStartRunning()
Value = Array("January", "February", "March", "April",_
"May", "June", "July", "August", "September", "October",_
"November", "December")
End Sub
NOTE |
To access this array, users must copy the Value property to a local variable. |