Функция _EventLog__Open

         Описание функции


_EventLog__Open

Opens a handle to the event log

#include <EventLog.au3>
_EventLog__Open($sServerName, $sSourceName)

Параметры

$sServerName The UNC name of the server on where the event log will be opened. If blank, the operation is
    performed on the local computer.
$sSourceName The name of the log

Возвращаемое значение

Успех:The handle to the event log
Ошибка:Возвращает 0

Примечания

To close the handle to the event log, use the _EventLog__Close function

См. также

_EventLog__Close, _EventLog__Clear, _EventLog__Read, _EventLog__Report

Пример

#include <GUIConstantsEx.au3>
#include <EventLog.au3>

Global $iMemo

_Main()

Func _Main()
    Local $hEventLog, $hGUI

    ; Создаёт GUI
    $hGUI = GUICreate("EventLog", 400, 300)
    $iMemo = GUICtrlCreateEdit("", 2, 2, 396, 300, 0)
    GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
    GUISetState()

    $hEventLog = _EventLog__Open ("", "Application")
    MemoWrite("Log full ........: " & _EventLog__Full ($hEventLog))
    MemoWrite("Log record count : " & _EventLog__Count ($hEventLog))
    MemoWrite("Log oldest record: " & _EventLog__Oldest ($hEventLog))
    _EventLog__Close ($hEventLog)

    ; Цикл выполняется, пока окно не будет закрыто
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE

EndFunc   ;==>_Main

; Записывает строку в элемент для заметок
Func MemoWrite($sMessage)
    GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite