Writing to EventLog - Shalvin

Shalvin 0 Tallied Votes 116 Views Share

EventViewer can be accessed by Selecting Event Viewer from Administrative Tools of Control Panel. This code snippet will add an Entry called Shalvin inside the Application section.

using System.Diagnostics;

private void Form1_Load(object sender, EventArgs e)
{
EventLog evlog = new EventLog("Application");
evlog.Source  = "Shalvin";
evlog.WriteEntry("Shalvin.com", EventLogEntryType.Information);
}