我正在嘗試寫一個Windows日誌事件。我如何寫事件源的Windows日誌事件
我讀到這answer,並試圖使用它,但有同樣的問題reported here "The description for Event ID 1 from source PLCHIDSrv cannot be found..."
我想this solution但不知道如何實現這種代碼在Delphi
var data = new EventSourceCreationData("yourApp", "Application");
data.MessageResourceFile = pathToYourMessageFile;
EventLog.CreateEventSource(data);
您可以使用Google查找大量匹配。例如:http://rosettacode.org/wiki/Write_to_Windows_event_log#Delphi http://texhex.blogspot.co.uk/2004/09/creating-event-message-file-for-event.html http:// www .kehm.de/henrik/blog/files/0246b791a5cc7befdf178875d4e318c8-2.html,當然你也可以閱讀MSDN上的MS文檔 – 2014-10-29 20:55:20
這個問題的答案應該可以解決你的問題http://stackoverflow.com/questions/10537267/delphi -windows-service-design - 具體來說,第5點有創建註冊表項的代碼。 – Graymatter 2014-10-29 21:48:27