Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> C# -> Latest articles Adds this page to your personal favorites
 
  Latest articles in this zone

Latest files
Latest links
Latest articles

C# Object-Oriented Programming
A twenty-two part tutorial explaining the basics of object-oriented programming using C# and .NET.
Visits: 54 Updated: 2008-5-5  Rating: (Not Rated)  More info & Ratings
C# Structures
The twenty-second, and final, part of the C# Object-Oriented Programming tutorial reviews the use of structures. Structures provide similar functionality to classes, but when instantiated resultant variables are value types, rather than reference types.
Visits: 41 Updated: 2008-5-5  Rating: (Not Rated)  More info & Ratings
Creating a Battery Power Status Monitor in C#
Sometimes programs need to know the power status of a computer. An example is Windows Update, which often requires a computer to be running on mains power before updates are installed. This article explains how to read the power status and battery life.
Visits: 26 Updated: 2008-4-28  Rating: (Not Rated)  More info & Ratings
C# Interfaces
The twenty-first part of the C# Object-Oriented Programming tutorial completes the investigation of polymorphism in the C# programming language. This instalment describes the use of interfaces to determine required members in classes that implement them.
Visits: 260 Updated: 2008-4-15  Rating: (Not Rated)  More info & Ratings
FTP File Upload
Access an FTP server from C# and upload files into it.
Visits: 266 Updated: 2008-4-12  Rating: (Not Rated)  More info & Ratings
C# Data Structures
C# Net has a lot of different data structures, for example, one of the most common ones is an Array. However C# comes with many more basic data structures. Choosing the correct data structure to use is part of writing a well structured and efficient program.
Visits: 247 Updated: 2008-4-12  Rating: (Not Rated)  More info & Ratings
3D Drawing with GDI+
Using GDI+, it is possible to create simple 3D shapes without the need for DirectX. Rotate and manipulate the shapes and display them on a 2D surface.
Visits: 189 Updated: 2008-4-9  Rating: (Not Rated)  More info & Ratings
C# Abstract Classes
The twentieth part of the C# Object-Oriented Programming tutorial investigates the use of abstract classes. These are special classes that are designed to be used only as base classes for inheritance. They do not permit the instantiation of objects.
Visits: 478 Updated: 2008-4-5  Rating: (Not Rated)  More info & Ratings
C# Inheritance and Constructors
The nineteenth part of the C# Object-Oriented Programming tutorial continues the discussion of inheritance. Constructor and destructor functionality is not inherited by subclasses but these can still use the constructors defined in their base class.
Visits: 229 Updated: 2008-3-29  Rating: (Not Rated)  More info & Ratings
Bit Field Enumerations (.NET)
When you need to store multiple Boolean statuses for a single item, you may elect to place each on/off attribute into a bit field. If you use an enumeration marked with the FlagsAttribute class, the .NET framework will assist with some of the operations.
Visits: 16 Updated: 2008-3-16  Rating: (Not Rated)  More info & Ratings
C# Inheritance
The eighteenth part of the C# Object-Oriented Programming tutorial begins the discussion of the use of inheritance. This is a powerful object-oriented concept that permits the creation of hierarchical groups of classes that share common functionality.
Visits: 21 Updated: 2008-3-15  Rating: (Not Rated)  More info & Ratings
How to create your own poll using .Net technology. (ASP.NET Poll Tutorial - Part 1)
A simple tutorial to show you how to create your own poll using asp.net and c#. For this example, we will use Microsoft Sql Server 2005 to hold the poll details, and Visual Studio 2005 to develop our poll control.
Visits: 13 Updated: 2008-3-9  Rating: (Not Rated)  More info & Ratings
Pinging a Remote Computer (.NET)
When developing networked applications that rely on a remote computer being available, it is important to be able to check that the other system is operable. Using the .NET framework's Ping class, an ICMP echo request can be sent for this purpose.
Visits: 50 Updated: 2008-3-9  Rating: (Not Rated)  More info & Ratings
A Generic Searchable Range Collection (.NET)
A common programming task is to match a value to a group of ranges in order to find a value associated with that range. The .NET framework does not provide a collection class to support this functionality so a new generic collection must be created.
Visits: 22 Updated: 2008-3-8  Rating: (Not Rated)  More info & Ratings
Using the EventHandler Delegate (.NET)
When creating custom events, a delegate is declared to control the parameters that the event passes to the subscriber when the event is raised. For simplistic events with no requirement to pass information, the built-in EventHandler delegate can be used.
Visits: 79 Updated: 2008-3-3  Rating: (Not Rated)  More info & Ratings
How to create your own Auto Suggest textbox without any AJAX frameworks.
We will use basic javascript, and .net to create a feature to allow auto suggests as a user types. This will allow a better feel to your websites.
Visits: 23 Updated: 2008-3-3  Rating: (Not Rated)  More info & Ratings
File Upload control in C# as a friendly web user control. Easy upload, delete, and view options
Web User control written in C# using VS2005 to allow file upload, delete, and view option. Easy property settings, makes it easier for developers to use.
Visits: 13 Updated: 2008-3-3  Rating: (Not Rated)  More info & Ratings
.NET Namespaces
The sixteenth part of the C# Object-Oriented Programming tutorial describes the use of namespaces. Namespaces allow classes, structures and other items to be grouped and organised and remove the possibility of class-naming conflicts.
Visits: 15 Updated: 2008-2-13  Rating: (Not Rated)  More info & Ratings
Capturing the Screen Contents in .NET 2.0
When supporting installed software, descriptions of problems can be enhanced greatly by viewing the contents of the user's screen. In this article we will explore how to perform a screen grab and display the captured image in a Windows Forms application.
Visits: 39 Updated: 2008-2-9  Rating: (Not Rated)  More info & Ratings
C# Events
Numeric codes held in a database as integer values or other numeric types will sometimes need to be represented visually in different formats. A common request is to pad a short number with leading zeroes to achieve a specific string length.
Visits: 39 Updated: 2008-2-6  Rating: (Not Rated)  More info & Ratings
C# Delegates
The fourteenth part of the C# Object-Oriented Programming tutorial explains how to add delegates to classes and programs. Delegates are used to provide references to methods that may be altered at run-time. They are also essential when creating events.
Visits: 136 Updated: 2008-1-27  Rating: (Not Rated)  More info & Ratings
Detecting the Tab Key in Windows Forms
Most keypresses in Windows Forms applications can be detected using a mixture of the KeyDown, KeyUp and KeyPress events. However, as the tab key is used to move between controls, it is not captured by these events and must be handled differently.
Visits: 35 Updated: 2008-1-25  Rating: (Not Rated)  More info & Ratings
Convert Roman Numerals into Numbers (C#)
In an earlier article we converted integer values into Roman numerals, an ancient numbering system that uses letters to represent values. In this article we will reverse the process, allowing Roman numerals to be evaluated as an integer.
Visits: 35 Updated: 2008-1-24  Rating: (Not Rated)  More info & Ratings
C# Indexers
The thirteenth part of the C# Object-Oriented Programming tutorial describes the use of indexers. A class that has an indexer can be used in a similar manner to an array. Objects of the class can use array-style notation to present multiple values.
Visits: 25 Updated: 2008-1-16  Rating: (Not Rated)  More info & Ratings
Getting and Setting a Program's Working Folder (.NET)
When a program is executed a working folder is assigned. This may be the same folder as the program's executable or can be set to a different folder using the properties of a shortcut. The correct working folder can be found using the Environment class.
Visits: 765 Updated: 2008-1-6  Rating: (Not Rated)  More info & Ratings

Did you know that...
You can submit your own files, products, services, links and articles here?
 

Sponsored Links 
Build IT Knowledge with Current & Trusted Content
Helps Employees Develop & Hone New Technical Programming Skills. Sign Up & Get Full Access.
Check Out IT Certification Preparation Materials
Sign Up With SkillSoft & Get Access to Training Materials for Over 50 Professional Certifications.
Villanova University Six Sigma & IT Certificate Programs
100% Online programs in Six Sigma, IS Security, CISSP Prep, Business Analysis, Proj. Mgmt. and more!
SFTP components for .NET
Add complete SSH and SFTP support to your .NET framework application
3 Months Free - ASP.NET Web Hosting
3 Months Free & No Setup Fees on ASP.NET 3.5/2.0 Hosting on Windows 2008/2003 Servers – Click Here!
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
Network Magazine Provides information Technology (IT) and network managers with strategic analysis, views of emerging technologies and product reports....
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by .NET konsult - Synchron Data.