AfterStart

<< Click to Display Table of Contents >>

 

AfterStart

AfterStart()

Occurs after the I/O Driver started to communicate. It is common to create a script for this event using the Write method to perform device configurations. Example:

Sub Driver1_AfterStart()
  ' After started, communication writes values
  ' to the equipment or device
  Write 0, 2, 55, 2, 33.4
  Write 0, 3, 55, 20, "Metal"
End Sub

Was this page useful?