Search Forum
(53671 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 22

Article #660
Sending email with c# using SMTP Servers  By Levent Yildiz
In this article i'll try to explain how we can send emails using SMTP servers. First of all, what is SMTP what is MTA,MUA, protocol? Let's start talking about these subjects. [Continued]


Article #659
Accessing the CD-ROM  By Mina Fawzi
In this article i will explain how to get informations about the CD-ROM, how to know which drive is the CD-ROM and whether there is a CD inside or not , and also how to open and close the CD-ROM, this is achived by using the win32 api functions which are all declared in a class named api in the following code. [Continued]


Article #658
Creating a Joystick Control  By Serge Arbuzov
This project is a joystick control used with a mouse that I had to create as one of my assignments from school. Basically, this is a control that works like a joystick, except with a mouse. [Continued]


Article #657
Your Free Search Engine - Microsoft Indexing Server  By Klaus Salchner
Many web applications provide a search capability, which allows users to search all the content of a web application. This seems at first glance to be a difficult task. [Continued]


Article #656
.Net DataGrid combobox Simple Sample  By Russ Sabitov
This article explains how to add the Combobox DataGrid Column Style into a DataGrid on your .NET Windows form. [Continued]


Article #655
.NET Interop  By Gerald Sylvester
In this article (modified from my last posted article!) I will give an example on how to access a web service from a C project using a C# Library. Moreover, the webservice's URL could also be dynamically read from an initialization file (.ini) in the C project.[Continued]


Article #654
Personal Address Program in C#  By Huseyin Altindag
This is a simple Personal Address Program that returns results from a database table, writes the output to textboxes, and uses buttons (First, Previous, Next, Last) to navigate through the records. [Continued]


Article #653
Custom Dial Control  By Serge Arbuzov
I made this dial as one of my assignemts in school, and I have to write an article. This is a custom control dial that changes the arrow position when the left or right arrow keys are pressed. [Continued]


Article #652
Type Converters, your Friendly Helpers!  By Klaus Salchner
You may not have written yet your own type converter. But any time you developed a web form or windows form using the Visual Studio .NET designer or used the view state architecture of ASP.NET you have relied on the help of a type converter. [Continued]


Article #651
.NET Color ListBox  By Alex
Yet another color list box? There are many articles about coloring the of ListBox control and code samples. Well, the difference between this article and the rest is that all those articles and the code supplied with them are just demos. [Continued]


Article #650
Biology Inspired Computing Work  By Nick Hardman
By selecting attractive parents, more attractive children are born. So, if you cross bread better solutions to a given problem, you can find a better solution. Using this, i decided to demonstrate this principal visually using c#.net. [Continued]


Article #649
Updated Ping in C#  By Markus Zijerveld
It was a little bit frustrating to see, how complicated people try to solve such easy things like a ping command in their program and how much money some vendors are asking for working solutions. [Continued]


Article #648
Multithreading Made Easier in C#  By Anand Kumar
Source code that demonstrates multithreading in C# [Continued]


Article #647
Floating-Point in .NET Part I: Concepts and Formats  By Jeffrey Sax
The first in a three part series, this article introduces the basic concepts of floating-point arithmetic: number formats, accuracy and precision, and round-off error. It includes an in-depth discussion of the .NET floating-point types. [Continued]


Article #646
The Microsoft Office Web Components  By Alvin Bruney
Have you ever wanted to incorporate Microsoft Office Technology into your web and windows applications? The Microsoft Office Web Components are a suite of controls released by Microsoft that make this possible. [Continued]


Article #645
SOS From Your Production Environment  By Klaus Salchner
Developing large enterprise applications is a complex and difficult undertaking. Writing the code is just one of many tasks we have to do. [Continued]


Article #644
How to Protect Your Application Against Parameter Injection  By Gal Ratner
Securing your web application against the hackers of the world is a difficult task. Authentication mechanisms, sessionIds, and user accounts are a few of the options that are available to you for your efforts. [Continued]


Article #643
How to Access MDI Parent Forms From MDI Child Form  By RL Smith
This code shows how to access objects contained in an MDI parent form, from an MDI Child form. Simply using MDIParent will not work, you have to cast MDIParent to your MDI Parent forms. [Continued]


Article #642
Adding Verbs to a Controls Design Time Abilities   By Peter Morris
This short example shows how to implement design-time verbs in C# [Continued]


Article #641
How to Call Private Methods from External Classes  By Michael Chroman
Often times during testing, you may need to test the value of a privte method. The following code shows how to do this for both methods and vars by getting the methods or vars from an external class and then placing them into a text file. [Continued]


Article #640
Sorting Data Tables  By Keith Oliver Rull
Here is the simplest way to sort and filter data in a DataTable. Use DataView. [Continued]


Article #639
Left, Right and Mid functions in C#  By Keith Oliver Rull
started as a VB programmer and I must say that i miss using Left, Right and Mid methods since it is not included in C#. But then again, there is always a suitable replacement. [Continued]


Article #638
Class Inheritance  By Joshua Abens Kayiwa
This Console-based C# code calculates the Area, perimeter, surface area and volume of the following polygons [Continued]


Article #637
C#: Array Items In .NET  By Syed Irtaza Ali
This sample code shows you how to use arrays and access array items by using foreach loop. [Continued]


Article #636
What does .NET really mean? - Understanding .NET  By Saradha Gnanvel
New to .NET, wondering what this buzz word .NET is today's happening in the development of enterprise applications and Web Services on Windows platforms! Here is a precise introduction for you. [Continued]


Article #635
Custom ShortDate type (struct: Icomparable)  By Stefan Prodan
Here it is a custom C#.NET Date type (struct) that will help you deal with converting to and from strings. The struct implements the IComparable interface and overrides the ToString, Equals and GetHashCode() functions. [Continued]


Article #634
Modifying Oracle Records Using C#  By Jeya Raman
The following source code connects to the Oracle Emp table. It allows you to delete, edit, add and save records to the table. [Continued]


Article #633
SharpChess Code  By Peter Hughes
SharpChess is a computer application that enables you to play chess against the computer. It plays a challenging, tactical and, I'm told, "fun" game of chess [Continued]


Article #632
File Copier - WinForms Demonstration Program  By Liberty Associates
Here is source for a file copier program that uses WinForms. [Continued]


Article #631
Performance Improvement in ASP.NET using Caching  By Harikishan and Gireesh
The challenge in building high-performance, scalable Web applications is the ability to store items, whether data objects, pages, or parts of a page, in memory the initial time they are requested. [Continued]