<< Click to Display Table of Contents >>
OnStart and OnStop Events |
When this Driver starts, the OnStart script is executed. When this Driver stops, the OnStop script 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