LogEntry Structure
Purpose
This structure is used by the GetLog_ functions listed in this section.
Parameters
None
Returns
None
Example
Sample Code
        VB
    
    Public Structure LogEntry
    Public LogTime As Date		' The date and time the log entry was recorded.
    Public LogType As String		' The 'type' string as logged.
    Public LogText As String		' The main message text of the log entry.
    Public LogStyleColor As String	' The color code string associated with this log entry.
    Public LogPriority As Integer	' The priority (0 = None Specified)
    Public LogFrom As String		' Information on the software that generated the log entry.
    Public LogErrorCode As Integer	' An error code as provided by the originator of the log entry.
    Public LogLength As Integer	' The length of the full text of the log entry.
End Structure