Hi all,
I have:
in my catch block. Does anyone know the location of the event log so I can check it if there is an exception?Code:System.Diagnostics.EventLog.WriteEntry("Application", "Exception: " + ex.Message.ToCharArray)
Thanks,
Strick
Printable View
Hi all,
I have:
in my catch block. Does anyone know the location of the event log so I can check it if there is an exception?Code:System.Diagnostics.EventLog.WriteEntry("Application", "Exception: " + ex.Message.ToCharArray)
Thanks,
Strick
Start -> Control Panel -> Administrative Tools -> Event Viewer
You'll want to select the "Application" node... then look through the source to find your app.
Use the View -> Filter option to whittle it down.
-tg
Great, thanks!
Strick