C# Tutorials, Code Examples & Articles
|
|
|
 |
| General
Java, Applets, J2EE,
J2ME, J2SE,
JavaBeans, JavaScript,
JDBC, Jini,
JSP, Servlets,
Swing |
 |
| General
Linux, Apache, MySQL,
PostgreSQL |
 |
| Active
Server Pages, ActionScript,
ASP.NET, C++,
C#, Perl,
PHP, Python,
Visual Basic, VB.NET |
 |
| |
Let the Education
Guide Network help you accelerate your career:
Learn more about...
Cooking
Schools
Culinary
Arts Schools
Online
MBA Programs
Our Web Sites:
Online
Degree Guide
The Vocational
School Guide
|
| |
| CSS,
DHTML, JavaScript |
 |
| ColdFusion,
Dreamweaver, Flash,
FrontPage, GoLive |
 |
| General
Web Services, .NET, SOAP,
UDDI, WSDL |
 |
| 3G,
802.11, EPOC,
i-mode, J2ME,
Palm, Pocket
PC, WAP, Windows
CE, WML, WiMax |
 |
| XML
(General) , ebXML, RSS,
SAX, XSLT,
VoiceXML, WML,
WSDL, XHTML,
XML Schema |
|
|
Tutorials & Training Courses
on CD-ROM
Over 300 Titles to choose from: from Web Design to
Programming, from
Dababases to Certifications. TRY FOR FREE!
Do you need high quality training at an afforable
price?
Do you need training that is easy to follow,
informative and allows you to master complex applications
fast?
Do you need to learn how to master Programming, Web
Design and Graphics?
Click
here to try a FREE Demo &
view the full range of training CD-ROMs
|
|
There are 700 articles & tutorials regarding "C#".
- 37.) Digital Clock in C#
- By Mahesh Here is a an example of how to make a digital clock using C#. I have included the graphics, source code, and command line string (included as a file - comp.bat) in the zip file. I hope you enjoy!! Download Digital Clock - archive29.zip using System; using System.WinForms; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; public class h2:Form { private Image []image=new Bitmap[10]; private Image colon=null; Timer t=new Timer(); Rectangle...
Found at C# Help
- 38.) Dockable Control In C#
- By Phil Wright Introduction One of the first features of C# that took my interest was the ability to Dock a Control onto the edge of a Form . Now I could attach a Control (or more likely a composite control by deriving from UserControl ) onto a Form edge and quickly construct a useful looking application. But there is one crucial factor missing from this scenario. The user has no discretion over the size or positioning of this docked control. I want the user to be able to drag the...
Found at C# Help
- 39.) C# Mail Reader
- By Shripad Kulkarni A simple SMTP Mail Client to send and recieve email ( including Attachments ) Development Environment : Visual Studio C# .NET 7.0 ( Beta Release ) Features Multiple Account Selection Send and Recieve Attachments Saves Data in XML Format Process UnManaged code ( Use DLLImport to execute C++ Functions) Use Collection Classes Use NetworkStream, StreamReader, TcpClient Classes Download Source Code
Found at C# Help
- 40.) Calculator Program In C#
- By Prasad H. Here is a calculator program written in C#. It will give you the basics of Windows Forms, Arrays, and Controls. To compile it, just type in: prompt>csc Calculator.cs Download Calculator.cs
Found at C# Help
- 41.) A Color Guide in C#
- By Jayant M. This Program will generate all the colors that are supported in C# according to their Name.... If you can come up with a better version of this program, let me know. e.g. You can make a dll file where the whole color array is stored - your coding lines will decrease. I tried to do it that way (in vane!).. The compilation string is included at the bottom of the file ColorGuide.cs which includes all of the source code. Download Colorguide.cs //Colorguide.cs using System;...
Found at C# Help
- 42.) Working with Arrays in C#
- Open your favorite text editor and type the following C# source code: using System; public class ArrayMembers { public static void Main(string[] args) { //Skip 1 line Console.WriteLine(" "); //Iterate through the items of array args using foreach foreach(string s in args) { Console.WriteLine(s); } //Skip 2 lines Console.WriteLine(" "); //Declare array strNames string[] strNames = {"Joe","Mary","Bill","Fred"}; //Iterate through the items of array strNames for(int i = 0;i
Found at C# Help
More articles & tutorials (Index of all articles & tutorials)
|
|