|
<< Click to Display Table of Contents >>
OnStart and OnStop Events |
When this Driver starts, the script on the OnStart event is executed. When this Driver stops, the script on the OnStop event is executed, according to the next example.
Sub OnStart()
'Executed when this Driver starts
End Sub
Sub OnStop()
'Executed when this Driver stops
End Sub