C# Application Programming



All articles and source code are under the Visual C# Kicks license agreement

WinForms

Hide Articles

Vista-Style Task Dialog
  • 3.8/5
Integrate the visually-appealing TaskDialog Vista control into your C# applications, which works even on old versions of Windows.

Splash Screens
  • 3.79/5
Add a splash screen to C# applications based on any kind of image, shadows and transparency fully supported.

Aspect Ratio Form
  • 3.79/5
Create C# Windows Form that keeps its aspect ratio as it is being resized without any flickering.

WinForm Resize Animation
  • 3.72/5
Applying concepts of WinForm animation to create a smooth resizing animation effect.

Numbers-Only Textbox
  • 3.71/5
Different ways to allow users to only write numbers in a Windows Form Textbox.

Angle and Altitude User Controls
  • 3.7/5
Two clean user controls written in C# to mimic the Photoshop angle and altitude selectors.

Aero Shake Form
  • 3.65/5
Implement the new Window 7 Aero Shake feature in C# Windows Forms with simple .NET code.

Click-and-Drag Form
  • 3.63/5
By using various Form events and some adding and subtracting, one can create the same effect of a windows titlebar.

Custom Control Properties
  • 3.56/5
Enhance your custom user controls by customizing the way the designer displays the custom properties of the control.

Clipboard Event Textbox
  • 3.55/5
Create a textbox user control that has a cut, copy, and paste event.

Dynamic Controls
  • 3.55/5
Work with dynamic controls in C#, including setting properties and attaching events.

Fading Windows Form
  • 3.48/5
Create a Windows Form that fades in when the mouse hovers over it and fades out when the cursor leaves its bounds.

Custom Shape Form - Transperancy
  • 3.41/5
Create Windows Forms that adapt to the shape of an imagine using a simple Form property. Custom shaped forms can be used to things such as creative splash screens.

Virtual Forms
  • 3.4/5
How to use the TabControl .NET control to create virtual Forms inside WinForms.

Animated Windows Forms
  • 3.39/5
Bring your C# applications to life with smooth consistent animations.

Custom Shape Form - Region
  • 3.36/5
Create custom shaped forms but with the use of Regions. Regions allows for finer tuned behavior and can yield more stable results.

Windows 7 Style Form
  • 3.3/5
Create a Windows Form in C# that docks and snaps to the screen edges like in the upcoming Windows 7.

Bind Window to Screen
  • 3.21/5
Constrain a Windows Form to the bounds of the screen. Useful for preventing users from dragging a window outside of the bounded area.

Align User-Interface Programmatically
  • 3.2/5
Align the controls in your Windows Form programmatically instead of relying on design-time to keep a clean user-interface.

Drop-Down Dialog
  • 3.18/5
Create an advanced dialog in C# to mimic the behavior of a drop-down list. Useful for user controls such as color pickers.

Prevent Form Close
  • 3.15/5
Learn how to prevent the user from closing a Windows Form.

Cross-Thread Operations
  • 3.11/5
Properly and elegantly make cross-thread operations using delegates.

Capture Control Graphics
  • 3.08/5
Capture the graphics of a visible .NET control to a bitmap using GDI.

Passing Data Between Forms
  • 3.06/5
How to pass data between Windows Forms in C# using parameters and properties of .NET classes.

Launch EXE from Memory
  • 3/5
Basics on how to launch a .NET application from memory using Reflection.

Password Textbox
  • 2.99/5
The two simplest ways to implement a C# Password Textbox.

Image Button
  • 2.99/5
Add a great-looking C# image button to your .NET applications.

Single-Instance Applications
  • 2.87/5
Write C# applications that support single-instance run-time behavior. Prevent users from running your program more than once at the same time.

Capture Screen (download now)
Use some more advanced C# programming to capture the screen without the use of the Prnt Scrn key.

Drag-and-Drop (download now)
The drag-and-drop functionality in C# programs is not as simple as it should be. Download this quick example to get a full working piece of source code to work from.

Screen Locker (download now)
In the internet you will find some fancy and expensive programs that can lock down your computer when you are away. In this project we will explore some fun brute-force techniques to create our very own screen locker application in C#.

Math

Hide Articles

Pick Random Elements Based on Probability
  • 3.79/5
Pick a random element in a C# list based on the probability of each element.

Rounding Doubles
  • 3.65/5
An explanation of how to round doubles in C# as well as the advantages of one method over another.

Decimal To Fraction
  • 3.58/5
A C# algorithm for approximating the fraction representation of decimal numbers.

Greatest Common Denominator
  • 3.53/5
Efficiently find the Greatest Common Denominator (GCD) of two numbers in C# by using the Euclidean Algorithm.

Quadratic Formula Solver
  • 3.42/5
.NET implementation of the quadratic formula to solve quadratic equations. Algorithms for working with double and float types.

Simplify Square Roots
  • 3.25/5
Use a C# algorithm to simplify complicated square roots into their simplest, most accurate, terms.

Calculate Slope of Line
  • 3.23/5
Calculate the slope of a line defined by two points with simple C# operations.

Boolean Matrix
  • 3.19/5
A C# implementation of a boolean matrix, complete with basic matrix operations and transformations.

Calculate Distance Formula
  • 3.09/5
Calculate the distance between two points using a C# function to process the distance formula.

Cryptography

Hide Articles

Compute Hash
  • 3.79/5
Compute the hash code of data in C# using .NET Framework classes.

Symmetric Encryption
  • 3.76/5
A description of symmetric encryption in C# to protect sensitive data. Overview of different symmetric encryption algorithms.

True Random Numbers
  • 3.64/5
Enhance your C# applications by giving them to ability to generate truly random numbers as opposed to pseudo-random ones.

SecureString
  • 3.19/5
Using the SecureString .NET class to manage sensitive data in C# applications.

Random String Generator
  • 3.12/5
Write a flexible C# random string generator without complex algorithms. Useful for things such as random password generators.

Xor Encryption
  • 3/5
Explore a simple way to encrypt string using the xor operator.

Self Hashing Application
  • 2.75/5
Find out how to create a C# application that can calculate its own hash value.

Encryption Class (download now)
Use this class of static methods to quickly encrypt and decrypt strings or directly a byte array. Encryption and decryption works based on a password.

Drawing GDI+

Hide Articles

Display GIF Animations
  • 3.86/5
Witness two simple methods to display animated images using only C# functions, accomplishing the task automatically or manually by accessing the animation frames.

Fast Image Processing
  • 3.77/5
How to work with images in .NET using unsafe C# code. Massively increases the speed of image processing algorithms.

Drawing Regular Polygons
  • 3.74/5
How to draw regular polygons in C# by calculating vertex coordinates and using GDI

Box Blur
  • 3.57/5
Implementing a box blur effect in C# via image convolution.

Four-Point Image Distortion
  • 3.57/5
Distort a bitmap into any quadrilateral shape simply by specfiying the distinct locations of each of the corner points. All done in pure C# code.

Get Image Hash Code
  • 3.45/5
Simple approach to get the hash code of an image in C#.

Icon Extractor
  • 3.39/5
Use C# and some API calls to easily extract an application icon and use it within your own program.

Basic 3D Drawing with GDI-Plus
  • 3.39/5
Draw a basic 3D cube using only GDI-Plus without the need for DirectX.

Improved 3D Drawing with GDI-Plus
  • 3.38/5
Witness an improved 3D graphics GDI-Plus application. Built upon the original Euler 3D Rotation article, learn how to get around the Gimbal Lock problem and learn how to shade in 3D shapes in C#.

Image Invert
  • 3.37/5
Invert an image colors in .NET with three different methods. Read the advatanges of each method.

Convert Color and uint
  • 3.25/5
Learn to convert between C# Color and uint variables. Helpful for working with Pointers in fast image processing.

Sorting 2D Points
  • 3.24/5
Sorting points can be an extremely useful algorithm. Image processing algorithms often if not always require points to have a certain order, this class will use the IComparer interface to sort points according to either the X or Y values.

Image Zoom
  • 3.23/5
Create an application to zoom into image in C# by harnessing the power of GDI and C#.NET.

Image Clip
  • 3.21/5
Fast simple image clipping code in C# using GDI to ensure speed and efficiency.

Hex to RGB
  • 3.2/5
Easily convert HTML hex colors to RGB colors in C#.

Image Rotate
  • 3.19/5
Rotate an image in C#.NET with only GDI , no need for complex bitmap rotation algorithms.

Image Flip
  • 3.14/5
Flip an image in C# with GDI and Matrix transformation, a simple yet powerful method for image transformation.

Draw Text Outline
  • 3.13/5
Draw the outline of any text, as opposed to the fill, using only GDI in C#.NET.

Draw Translucent Image
  • 3.1/5
Harness the power of GDI to draw translucent images without needing more complex image processing algorithms.

How to Load Image Files
  • 3.08/5
Learn the basics of opening an image file to a variable in C#.

Dominant Color in Image
  • 2.98/5
Calculate the overall dominant color in an image using a simple C# algorithm.

Image Noise Generator
  • 2.82/5
Generate an image with grayscale noise for a variety of different purposes using a simple C# algorithm.

Files and Data

Hide Articles

Scanning Through a Hard Drive
  • 3.92/5
A recursive approach to scanning through a harddrive in C#.

The C# Data Structures
  • 3.92/5
Explore the various built-in C# data structures and their applications in this three part article.

Uploading a File with FTP
  • 3.86/5
Easily upload a file through FTP using pure C#.

How to Create Strong-Type DataSet
  • 3.79/5
Improve data-handling in your C# applications through the use of strong-typed DataSets, whether your are developing SQL-enabled applications or simpler XML ones.

KeyValuePair
  • 3.63/5
Store pairs of values in with the C# KeyValuePair generic structure.

File Size From Bytes
  • 3.59/5
Learn how to convert a number of bytes into an estimated file size. File size is derived simply from a table of values.

Dictionary
  • 3.58/5
A close look at the C# Dictionary and SortedDictionary data structures.

Binary Searching a List
  • 3.54/5
Using binary search on a sorted .NET List or ArrayList to quickly find elements.

Set DataGridView Selection
  • 3.54/5
How to set the row selected on a DataGridView control programmatically with C#.

Randomize Array List
  • 3.52/5
Discover how to randomize a list of items. Generate a new list where items are placed in random order.

Read Text File
  • 3.5/5
Find out how to read a text file in C# with the System.IO namespace. Read it all at once or by lines, both methods are explained.

String Processing C# Functions Library
  • 3.39/5
Discover the possibilities of string processing in C#.NET. Expand upon the basic string functions provided by the .Net Framework.

Binary Search Tree
  • 3.39/5
C# Binary Search Tree is a simple data structure for fast searching of data.

Working with Relative Paths
  • 3.38/5
How to work with relative paths in C# WinForm applications.

Write a Binary File
  • 3.38/5
How to read and write a binary file in C# and some of its applications.

Partition List
  • 3.32/5
How to split a list in C# into smaller lists (or partitions). The concepts apply to .NET arrays as well.

Temporary Files
  • 3.29/5
Working with temporary files in C# with the IO namespace.

Bucket Sort
  • 3.26/5
Bucket sort is a simple algorithm for sorting data in C#.

Priority Queue
  • 3.25/5
C# Priority Queue is a specialized Queue data structure. Useful in many applications and can be used for sorting data.

Image to Byte
  • 3.24/5
Learn two effective methods to convert an image in C# into a byte array.

HashSet
  • 3.23/5
Overview of the new C# HashSet data structures along with some comparisons and benchmarks.

Palindrome String Function
  • 3.21/5
Use C# to check if a string is a palindrome or not using two different approaches.

AVL Tree
  • 3.17/5
C# AVL Tree is a self-balancing binary tree designed to improve the running time of searching through data.

Faster Bucket Sort
  • 3.17/5
How to efficiently put the bucket sort algorithm in practice in C#.

Iterators
  • 3.14/5
Explore the three C# iteration methods: for loop, foreach loop, and enumerators.

Convert Array to String
  • 3.11/5
Convert any C# array to string with a single function. Supports generic and non-generic lists.

Skip List
  • 3.03/5
C# Skip List is a powerful data structure that allows for fast searching of data.

String to Array
  • 2.94/5
Learn how to convert a string into an array in C#.NET.

Compress Data (download now)
Compress and decompress bytes on-the-fly with C# functions, no need for external libraries.

ASP.NET

Hide Articles

Ajax Control Toolkit
  • 4.04/5
Great place to start in expanding your collection of AJAX-enabled user controls.

ASP.NET MessageBox
  • 3.57/5
How to display a message box in ASP.Net using client-side code.

ASP.NET Web Hosting
  • 3.39/5
Read some points to consider when choosing an ASP.NET web hosting service for your web applications.

Web

Hide Articles

Download File FTP
  • 3.79/5
Enable your C# applications to connect to the internet to download files and webpages from an FTP Server with nothing but pure C#.Net code.

Download File HTTP
  • 3.59/5
Enable your C# applications to connect to the internet to download files and webpages using nothing but .Net Framework classes.

URL Checker
  • 3.45/5
Access a URL address with a simple C# application to determine the validity of a website link.

Extract Links
  • 3.23/5
Extract links from a webpage URL or HTML using some simple, elegant C# code.

Launch C# Hyperlink
  • 3.15/5
Find out how to launch a hyperlink in C# using elements built-in the .Net Framework.

Load Image from URL
  • 3.12/5
Load an image from a URL to memory, no need to save the image to the hard drive.

Encode URL
  • 3.09/5
Encode a URL string in C# easily for both ASP and desktop development.

HTML Emails with Gmail
  • 3.06/5
Send HTML emails in C# with .NET Framework classes, no need for external components.

Javascript Multi-line String Utility
  • 3/5
A tool written in C# to transform multiple lines of text into a javascript-friendly multi-line string.

Extract Images From URL
  • 2.69/5
Fetch all the images displayed on a webpage with C#.NET. Done by parsing the HTML code for image URLs.

Get Server Real-Time (download now)
Use C# to ask a web server for the actual current time. Useful for distribution applications and other time sensitive programs.

Miscellaneous

Hide Articles

Environment Properties
  • 3.96/5
Learn how to access common environment information through C#.NET.

Compilr.com Online IDE
  • 3.8/5
Compilr.com is an online IDE for PHP, C, C++, Ruby and compiler for Java, C# and VB

jQuery Selector for Selenium WebDriver
  • 3.74/5
Add jQuery selectors to Selenium Webdriver in C# without modifying the Selenium server.

Question-Mark ? Operator
  • 3.73/5
Shorten conditionals in C# by using the ? operator.

MS-Queue
  • 3.7/5
Access the MS-Queue Windows component through C# to create some interesting and powerful applications.

Credit Card Verification
  • 3.6/5
Quickly and easily verify credit card numbers in C# with the Luhn Algorithm. Works in desktop applications, ASP.NET, and mobile applications.

Unique Hardware ID
  • 3.57/5
Obtaining a true hardware serial from a user computer can be tricky business. Luckily the .Net Framework provides the means to obtain a reliable ID which can in turn be used in licensing processes.

Application Optimizing Utility
  • 3.54/5
Test C# code segnments against each other to compare their performance speed.

Detect .NET Framework
  • 3.48/5
With the reliance of C#.NET on the .NET Framework, the ability to detect if the .NET Framework is installed on a computer can be quite useful. Check out a simple way to do it.

Assembly Custom Reference Path
  • 3.4/5
Find out how to specify to a C# application on what subfolders to locate C# libraries that contain essential execution code.

Code Region
  • 3.39/5
Format C# and .NET source code in Visual Studio with region code blocks. Combined with keyboard shortcuts and a little common sense, regions can format code to make it more readable.

Representing Graphs in C#
  • 3.38/5
Possible ways to represent a graph data-structure in C# to implement graph algorithms.

Request Google PageRank
  • 3.31/5
How to request the Google PageRank of a website through C#.

C# Extensions for Selenium WebDriver
  • 3.29/5
Short list of useful extension functions written in C# to enhance the functionality of Selenium 2 WebDriver

Create Instance From Type
  • 3.28/5
Create a new instance of an object from a reference to a .NET type.

Save TreeView State
  • 3.25/5
Save the state of a TreeView when it is cleared and repopulated. Very useful when working with dynamic data displayed on a TreeView control.

.NET Stock Images
  • 3.24/5
Discussion on stock images for developers along with some sample royalty-free stock images.

Loop Time
  • 3.2/5
Make your applications run in circles for a specified amount of time without the need for a troublesome Timer control.

Get-Set Method Generator
  • 3.17/5
Automatically generate get-set methods in C# based on existing source code using simple text parsing.

Disk Drive
  • 3.12/5
Easily open and close multiple CD and DVD trays programmatically with C#.

Generate GUID
  • 3.12/5
How to generate a unique identifier, GUID, for use in all types of C# applications.

Action Lists
  • 3.12/5
Add ActionLists to C# controls to make properties and methods more accessible during design-time.

Access Properties by Name
  • 3.06/5
Use reflection to read and write to properties of .NET objects in C#.

Call Functions by Name
  • 3.05/5
Use reflection to call C# functions, including functions with parameters and return values.

C# Test Performance
  • 3.03/5
Test the speed of C# methods and algorithms with this extremely easy to use SpeedTester class, written entirely in C# for fast and simple integration.

C# Read Embedded Resource New
  • 2.79/5
How to read embedded resources in C#.

Enum to Readable String
  • 2.69/5
How to convert C# enums to readable strings and parse them back.

Projo
  • 2.6/5
A look at an online project management tool called Projo.

Transform .NET Config Files Programmatically New
  • 2.57/5
Programmatically transform web.config and app.config files in C#

Time Calculator (download now)
Add and subtract different times by switching between different time-formats used in C#.

Reading

Hide Articles

7 Ways to Optimize C# Code
  • 3.69/5
Discover seven simple ways to improve the readability and performance of C# source code and applications.

C# Programming Language of Choice
  • 3.65/5
Explore the advantages of the C#.Net programming language as a development platform for small and big applications.

Using Professional Icons
  • 3.43/5
Raise the presentation quality of your finished applications by adding icons. Read about tips for designing your own or for purchasing professional application icons.

Upgrading to Visual Studio
  • 3.29/5
Despite the potential of the Visual Studio Express editions, there can be numerous reasons to upgrade to the full version of Visual Studio, even for small-to-medium sized projects.

C# Component Guideline
  • 3.18/5
There are characteristics that a good C# component should have in order to make it worth selling. Here is a quick outline of some of those aspects.

Code Obfuscation
  • 2.95/5
Although C# applictions are vulnerable to code decompilation, there are methods to protect against it, one of which is code obfuscation.

XML Documentation
  • 2.93/5
Use the .NET built-in XML documentation support to quickly add documentation to your C# projects without major hassels.

All C# Articles and source code are under the Visual C# Kicks license agreement