Signal
The method is used to signal a reset event again. This works only on an alarm that needs a confirmation see ITcEvent::.MustConfirm
HRESULT Signal();
Parameters
Return Values
S_OK
Function was successfully called
Visual Basic sample code
' get the one and only event logger
Dim evtLogger As TCEVENTLOGGERLib.TcEventLog
Set evtLogger = New TCEVENTLOGGERLib.TcEventLog
' get the most recent active event
Dim evt As TcEvent
Set evt = evtLogger.GetLastEvent
' signal the alarm
Call evt.Signal
Remarks
After this method call the Event Logger will raise the event OnSignalEvent on all client that implements the event interface _ITcEventLogEvents (VB: Dim WithEvents).