Is it possible to log events in the EventLog of Windows using FiveWin?
Thanks,
Byron ...
Adding Events to the EventLog in Windows
-
- Posts: 388
- Joined: Sun Nov 06, 2005 3:55 pm
- Location: Southern California, USA
- Contact:
Re: Adding Events to the EventLog in Windows
hi,
there is a Sample under \HARBOUR\contrib\hbwin\tests\eventlog.prg in HMG using win_ReportEvent() from HbWin
i have not found any other Sample using win_ReportEvent()
there is a Sample under \HARBOUR\contrib\hbwin\tests\eventlog.prg in HMG using win_ReportEvent() from HbWin
Code: Select all | Expand
#require "hbwin"
PROCEDURE Main()
? win_ReportEvent( NIL, "Application", WIN_EVENTLOG_SUCCESS, 0, 0, "hello" )
? win_ReportEvent( NIL, "Application", WIN_EVENTLOG_SUCCESS, 0, 0, { "hello", "world" } )
RETURN
i have not found any other Sample using win_ReportEvent()
greeting,
Jimmy
Jimmy