Learn how to develop a C# application that retrieves the available newsgroups from an NNTP server and then displays the articles from those specific newsgroups.
Splitting and joining files using C#
This tutorial will teach you how to create a basic file splitter and joiner using C#, byte arrays and file streams. It will allow you to split files into as many output files as you want and then reconstruct the file from the splitted output files.
Random number within a range
Generating a random number in C++ is easy, but for generating one within a range you must use a little trick.
Creating a UPS Shipping Calculator
This tutorial will teach you how to calculate the shipping cost based on the weight, height, length and depth of the box, the distance and the UPS service type. A sample form will be created that will post information to a UPS page. The PHP script will then retrieve and display the shipping cost.
Creating and deleting directories
Will show you the basics of creating several directories named 1, 2, 3… or using a prefix like dir1, dir2, dir3. Also shows you how to delete an empty dir.
Capturing screenshots using C#
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.
How to create an AJAX contact form
This tutorial shows users how to create an AJAX contact form. The form method in this tutorial is set to POST.
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.
Accessing the controls and methods of a MasterPage
If you are looking to access the method, property or control of an ASP.NET MasterPage from inside a web form you need to do a little trick to get it to work properly. This tutorial explains how you can do this with only a few lines of code, and it also shows you how to create MasterPages that you can use with web forms.