ShowLoggedEvents

ITcEventView

This method displays all logged events of all EventLogger's the TcEventView is connected to. Before it displays the event it deletes all old events.

HRESULT ShowLoggedEvents();

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.ShowLoggedEvents
End Sub