Even today, there's still a need for Events. Learn about them, and how to use them in your coding.
Latest Events and Delegates Articles
Tray Notify - Part I (Getting Started)
Part one of a series that illustrates using WCF to communicate between a Windows service and client application.
.NET Tip: Writing to the Event Log
Create a class to add Error, Warning, and Information entries in the Windows event log.
Developing with . NET Delegates
Delegates are commonly defined as Type Safe Pointers. In this article, Ramesh Balaji explains Delegates, and shows how they work in the CLR environment.
Using Delegates to Interchange Information Between Siblings of a Parent Form
Discover how to interchange information between sibling forms of a parent form. In many cases, especially in MDI applications, you need to interchange information between child forms that are instantiated by the same parent. In such cases, delegates are a suitable way to exchange information.
Build a Windows Event Log Watcher Service Process to Export Event Log Entries as an RSS Feed
Build a Windows Event Log Watcher Service Process to Export Event Log Entries as an RSS feed using System.Diagnostics.EventLog, EntryWritten, and EnableRaisingEvents.
Latest Developer Videos
More...Latest CodeGuru Developer Columns
Comparing the stdio and iostream C++ Libraries
It's essential to know the differences in these libraries and use them correctly. This brief tutorial will guide you.
A Tipple with a Tuple
Fear not, Tuple lovers. This much-maligned data type is still in use today.

Creating Visual Basic String Enums
With just a few lines of code, you can have a quick way to make an Enum accept String values instead of an ordinary named constant.
The Value of APIs
Application Programming Interfaces (APIs) are where you have to be. It's not a matter of if as much as a matter of which.