This tutorial will show you a very simple method of capturing screenshots using C# and .NET 2.0 and saving them as files with different formats, such as PNG, all thanks to the CopyFromScreen() method.
C# Chat: Part 2 – Building the Chat Server
In this two part tutorial you will learn how to create a chat client that connects to a chat server and exchanges messages with all the other connected clients. This second part covers the development of the chat server.
Tabbed Web Browser
In this tutorial we will be making a tabbed web browser. I will explain every thing as we go, so I will get the same experience as you all do. I will be making the program as I make the tutorial. I hope that this helps you out and that you like this! It is going to take about one hour if you are typing it in and about 10 minutes if you are copying and pasting.
Emptying the Recycle Bin using C#
This programming tutorial will teach you how to empty the recycle bin programatically using the SHEmptyRecycleBin() API call from Shell32.dll.
Extracting Icons from Files
In this C# tutorial you will learn how to extract the graphic icon from a file by using a Shell32.dll API call to the unmanaged method SHGetFileInfo().
Getting the hex value of a color using ColorPicker
With the .NET Framework you can use the Windows Color Picker control in your application thanks to the ColorPicker object. However, the ColorPicker object doesn’t have a method or property to get the color in hex format. In this tutorial we’re going to build a color picker application and we will be getting the hex value of the selected color.
Word counter in C#
This simple tutorial will show you how to create an application that counts the words in a string and also strips HTML tags if necessary.
Getting Disk Drive Information using WMI and C#
The C# application in this tutorial will retrieve disk drive information such as the model, serial number, capacity, interface, cylinders, heads, sectors and tracks from WMI.
Encrypting and Decrypting Files with C#
In this C# programming tutorial we’re going to learn how to encrypt and decrypt text files using the cryptographic services of .NET Framework 2.0.
Listing Services with C#
In this tutorial we’ll be retrieving a list of the available Windows services and get some details about each service, all using the ManagementObject of ManagementClass.