Windows EventLog의 "Application"노드가 아닌 다른 사용자 정의 EventLog를 만드는 방법 (Delphi에서)은 무엇입니까?Windows EventLog (Delphi)의 응용 프로그램 노드가 아닌 다른 사용자 정의 EventLog 만들기
//The code below write on the Application node only
with TEventLogger.Create('JarvisAgent') do
begin
try
try
LogMessage(Msg, EVENTLOG_INFORMATION_TYPE, 0, 2);
finally
Free;
end;
except
end;
end;