Click or drag to resize

McEventLogEntry Interface

An object used to represent a single log entry.

Namespace:  MediaCy.IQL.Engine
Assembly:  MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
VB
Public Interface McEventLogEntry
	Inherits IMcEventLogEntry
Remarks
This object is currently only used as a parameter type in DMcEventLogEvents.
Examples
VB
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} frmEventLog 
   Caption         =   "Form to Raise EventLog EntryWritten Event"
   ClientHeight    =   3225
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4710
   OleObjectBlob   =   "frmEventLog.frx":0000
   StartUpPosition =   1  'CenterOwner
End





Public WithEvents EventLg As McEventLog
Attribute EventLg.VB_VarHelpID = -1

Private Sub CmdWriteEventLog_Click()
    Set EventLg = EventLog
    WriteAnEntryIntoEventLog EventLg
End Sub

' Entry Written event that is called when the Entry in written to the Log file
Private Sub EventLg_EntryWritten(ByVal Entry As IMcEventLogEntry)
   AccessingEventLogEntry Entry
End Sub
See Also