Is it possible to log events in the EventLog of Windows using FiveWin?
Thanks,
Byron ...
Thanks,
Byron Hopp
Matrix Computer Services
Byron Hopp
Matrix Computer Services
Is it possible to log events in the EventLog of Windows using FiveWin?
Thanks,
Byron ...
#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