ShowActiveEvents
This method displays all active events of all EventLogger's the TcEventView is connected to. Before it displays the event it deletes all old events.
HRESULT ShowActivedEvents();
Parameters
Return Values
S_OK
Function was successfully called
Visual Basic sample code
Option Explicit
' add the Beckhoff TcEvent View Library to the components
' place a TcEventView on the form, and assign the name TcEventView1
Private Sub Form_Load()
TcEventView1.ShowActiveEvents
End Sub