A quick guide to C pointers for people having trouble with the concepts involved.
Using OpenFileDialog to open files
Use the classic Windows dialog box to choose a file for opening, also tells you how to open multiple files.
How to get IP address of client
This tutorial shows how ASP can be used to retreive the IP address of the remote host by using the ServerVariable Object.
Asynchronous Ping using C#
In this C# tutorial we’re going to learn how to ping a host over a network or the Internet using C#. Furthermore the ping is going to be executed asynchronously so that our application doesn’t have to wait for the ping.
iFrame Basics
A short and easy tutorial on how to use iFrames. What Are iFrames? iFrames allow you to basically put a table on your site and within that table it will load another page. This is very useful if you are running an HTML site and you don’t feel like adding an affiliate button to like […]
Smart Pointers – Part 1
Programming tutorial for understanding “Smart Pointers”.
Zipping files using GZipStream
In this tutorial we’re going to use the new namespace of .NET 2.0, System.IO.Compression, which will give us access to the GZipStream class which will then allow us to compress and decompress ZIP files.
Starting a JavaScript
How do you tell the browser that a script is starting? Moreover, how does he know what kind of script is starting? What if the browser doesn’t support JavaScript?
Making a Context Menu
Shows you how to make a context menu (right click / shortcut menu) in C# using Visual C# .NET and how to attach it to a control. You can hardly find an application that doesn’t use any context menu. Adding a context menu to your application isn’t hard at all, thanks to Visual C# .NET. […]
Learning Clipboard Skills: Clipboard Copy and Paste with C#
Learn how to copy and paste text and images from and to the Windows clipboard using the Clipboard class in C# and .NET 2.0. You will also see how to clear the content of the clipboard.