Connect

<< Click to Display Table of Contents >>

 

Connect

Connect()

This method connects a Pen to a server to receive real-time data, linking the XLink and YLink properties. If a Pen is already connected, this method remains inactive. Example:

Sub CommandButton1_Click()
  Set Pen1 = Screen.Item("E3Chart1").Pens.Item("Pen1")
  Pen1.Disconnect()
  Pen1.Connect()
End Sub

Was this page useful?