Search Forum
(57229 Postings)
Search Site/Articles

Archived Articles
712 Articles

C# Books
C# Consultants
What Is C#?
Download Compiler
Code Archive
Archived Articles
Advertise
Contribute
C# Jobs
Beginners Tutorial
C# Contractors
C# Consulting
Links
C# Manual
Contact Us
Legal

GoDiagram for .NET from Northwoods Software www.nwoods.com


              
Archives: Page 11

Article #330
Masked Edit Control written in C# that uses Regular Expressions  Michael J. Bullard
We programmed a masked textbox control with C# that will convert the mask into a regular expression for each character in the field. [Continued]


Article #329
The Essentials for Using COM in Managed Code  Sams Publishing
This articles covers 1) Referencing a COM Component in Visual Studio .NET 2) Referencing [Continued]


Article #328
.NET Security in C#  Simon Harris
Since my company does a lot of .NET consultancy, one of our recent projects required that file i/o access be denied if the user running the application did not have administrator privileges. [Continued]


Article #327
ASCX Control Parser  Ben van Klinken
Have you ever wanted to turn a .ASCX file into a distributable control? [Continued]


Article #326
Get Current Window Handle and Caption With Windows API In C#  Waheed Khan
In this article I will show you how to use Windows API function GetForegroundWindow, and GetWindowText. [Continued]


Article #325
Windows Control Library (Digital Clock)  Shripad Kulkarni
A windows control library is like an Active X Control that you have been developing using VC++. In the VS .NET IDE environment, controls can be found by clicking the toolbox icon. [Continued]


Article #324
The Common Language Runtime - Overview of the Runtime Environment  Kevin Burton
At a high level, the CLR is simply an engine that takes in IL instructions, translates them into machine instructions, [Continued]


Article #323
C# Calculator Using Delegation  Raheel Kamal
Here is the source code for a C# based calculator that uses delegation. [Continued]


Article #322
Garbage collection in .NET  by Amit Kukreja and Reshmi Nair
In this article we would like to discuss one of the primary advantages of .NET framework - the ease in memory and resource management. [Continued]


Article #321
Ping In C#  by Christopher G. Lewis
Ping program implemented in C# and .NET. [Continued]


Article #320
Singleton Pattern  by Dev Team
The Singleton design pattern's functionality is pretty much what you would expect given its name, 'Singleton'. [Continued]


Article #319
XML String Building  by Damjan Kovac
How to build XML string with only changed rows/columns edit on user form. [Continued]


Article #318
C# Class Wrapping  by Dragan Pesic
Did you ever need to call one function with the same name from more than a one class , or just make an object based on a class name which you got as an function parameter? [Continued]


Article #317
String To A Byte Array  by David Kemp
This simple function converts a string to a byte[] that is in compliant with the visual c++ 6.0 BSTR/WCHAR [Continued]


Article #316
Low Cost Verifying Of Credit Card Numbers in C# - Revisited  by Michael Mumcuoglu
This is an update to the original "Low Cost Verifying Of Credit Card Numbers in C#" article. [Continued]


Article #315
File Finder In C#  by Dillon Agoma
This is my first stab at C#. It is a simple file finder that illustrates some of C# features. [Continued]


Article #314
Function Evaluator In C#  by Emad Barsoum
This Program use the transformation from infix notation to postfix notation to evaluate most Mathematic expression. [Continued]


Article #313
Opening MySQL database with C#  by Pavel Tsekov
NET provides easy access to any type of database through the OLE DB provider (System.Data.OleDb) [Continued]


Article #312
ComboBox With AutoComplete  by James Williams
This control inherits from the ComboBox control and adds AutoComplete functionality. [Continued]


Article #311
Outlook Style Tree View  by Tadas Budvytis
Here is a simple demo of Outlook style treeview. [Continued]


Article #310
Object Pooling with Managed Code  by Scott Sherer
With the advent of the .NET platform, writing code that pools objects and threads has become a simple task. By using the Threading and Collections namespaces, you can create robust object pooling applications. [Continued]


Article #309
A C# Complex Number and FFT Library  by Ben Houston
Some features of this code include: Single and double precision complex number structs, 1D, 2D and 3D complex fast Fourier transform functions [Continued]


Article #308
Creating The Simplest, Shortest Web Service In C#  by Faiza Ajaz
Since trying to work on a web-service seems difficult to new users and inexperienced programmers, this article presents a step-by-step method to form a simplest and shortest web-service in C#. [Continued]


Article #307
OwnerDraw Menu Items in C#  by Shripad Kulkarni
Windows applications, which focuses mainly on its GUI aspects , can make use of the ownerdraw properties of the various forms components. [Continued]


Article #306
Building COM Objects in C#  by Shripad Kulkarni
The topics covered in this article are: 1) Creating a simple COM Object in C# 2) Accessing the COM from a VC++ Client. [Continued]


Article #305
ComboBox With Images  by Rakka Rage
There is no built in support for a ComboBox with images. So i created a simple ComboBoxEx class that [Continued]


Article #304
Adding Any Control To Data Grid Control  by Tushar Ameta
While developing application soft wares, representing data in the GUI In friendly and readable format is one of the most important [Continued]


Article #303
XbWrapper- Interpreter Written In C#  by Vjacheslav Selivanov
XbWrapper is an extremely simple scripting language. Its intended use is as an embedded language in other C# programs, this is Xbase style script language. [Continued]


Article #302
.NET Event Handling using the Template Method Design Pattern  by Kevin McFarlane
Microsoft .NET event handling, in common with typical object-oriented frameworks, is implemented using the well-known Observer design pattern. [Continued]


Article #301
Event Handling in .NET Using C#  by Deepak Dutta
In this article I discuss the event handling model in .NET using C#. [Continued]