Функция _EventLog__Oldest

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


_EventLog__Oldest

Retrieves the absolute record number of the oldest record in the event log

#include <EventLog.au3>
_EventLog__Oldest($hEventLog)

Параметры

$hEventLog A handle to the event log

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

Успех:Absolute record number of the oldest record in the event log
Ошибка:Возвращает 0

Примечания

The oldest record in an event log is not necessarily record number 1

См. также

_EventLog__Count, _EventLog__Full

Пример

#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