C# Application Programming

VCSKicks Command Link

String Processing Library PRO

OfficeButton

Visual C# Kicks RSS Feed Visual C# Kicks Newsletter



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

WinForms

Hide Articles

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

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

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

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

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

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

Fading Windows Form
  • 3.53/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.5/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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Cryptography

Hide Articles

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

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

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

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

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

Random String Generator
  • 3.05/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.

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
  • 4.25/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.8/5
How to work with images in .NET using unsafe C# code. Massively increases the speed of image processing algorithms.

Improved 3D Drawing with GDI-Plus
  • 3.76/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#.

Four-Point Image Distortion
  • 3.65/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.64/5
Simple approach to get the hash code of an image in C#.

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

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

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

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

Sorting 2D Points
  • 3.38/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 Invert
  • 3.32/5
Invert an image colors in .NET with three different methods. Read the advatanges of each method.

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

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

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

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

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

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

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

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

Image Noise Generator
  • 2.75/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
  • 4.32/5
A recursive approach to scanning through a harddrive in C#.

How to Create Strong-Type DataSet
  • 4.05/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.

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

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

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

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

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

Read Text File
  • 3.63/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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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.05/5
Great place to start in expanding your collection of AJAX-enabled user controls.

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

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

Web

Hide Articles

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

Download File FTP
  • 3.86/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.68/5
Enable your C# applications to connect to the internet to download files and webpages using nothing but .Net Framework classes.

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

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

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

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

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

Extract Images From URL
  • 2.75/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
  • 4.2/5
Learn how to access common environment information through C#.NET.

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

Credit Card Verification
  • 3.66/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.64/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.

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

Save TreeView State
  • 3.54/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.

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

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

Code Region
  • 3.5/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.

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

Detect .NET Framework
  • 3.44/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.

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

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

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

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.

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

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

C# Test Performance
  • 3.08/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.

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

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

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.78/5
Discover seven simple ways to improve the readability and performance of C# source code and applications.

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

C# Component Guideline
  • 3.27/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.

Using Professional Icons
  • 3.21/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.

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

Upgrading to Visual Studio
  • 3/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.

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

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

License Agreement | Privacy Policy
Link to Us | Subscribe to Newsletter | Contact Us