views:

80

answers:

1

I'm using the application event log to write messages about activity happening in my program. I set the source to the name of my app. I would like to offer the user the ability to clear just the events related to my program. Is this possible? I only see a way to clear the whole log.

I'm using c# in .NET 2.0.

+1  A: 

It is not possible to clear specific events from an Event log. It's clear all events or nothing.

Moose