Get windows events

user21

New member
Joined
Nov 23, 2008
Messages
2
Programming Experience
Beginner
Hi

I want to develop an application that gathers event messages of windows and show them on the screen as messages. For example I want to get a message when I receive a new email or when I close an application I want to get a message on the screen that x application is closed.

Is there any way to implement that or no?


Thanks in advance
 
Those are two quite different things. For the second you can use the Process class to get an instance for every running process on your system and handle their Exited event. For the first, you either have to hook into your email client or else monitor your mail server yourself.
 
Back
Top