| A Calculator using C# |
| The Code Project |
| This is basic Calculator program written in C# which makes use of thevarious Windows Form controls. |
|
| .NET Anatomy - Data Concurrency in ADO.NET, Part III |
| DotNetJunkies |
| In the two previous articles on this subject we have looked at how the ADO.NET DataSet object contains built-in support for concurrency operations. This functionality helps the developer to build applications that keep users from overwriting each other’s data accidentally. The implementation is open and flexible and so what I will be showing you here can be tailored to your own requirements |
|
| .NET Remoting ( A Simple Approach) |
| C# Help |
| .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Java's RMI, but definately more difficult than creating a WebService. In this article, we will create a remote object that will return rows from a database table. For the sake of simplicity i have used the NorthWind database that is packed with the installation of the Microsoft SQL Server. |
|
| .NET Remoting - The Interface Approach |
| C# Help |
| In this article, we will create a remote object, and access this object using an interface. This method is important when creating a physical separation between business tier and consumer code. In traditional Remoting approaches, to access a remote object, you need a copy of that object on the client machine. With this approach, the metadata is split into a separate library that can be copied to the client machine. |
|
| Accessing Oracle Database |
| C# Corner |
| This source code shows you how to connect to an oracle database and do operations such as select, insert, update and delete. |
|
| Adding a Control to a Form Programmatically |
| C# Corner |
| In this article I explain how to Add a control to a form programmatically. This is useful for developer who is not using VS.NET IDE. |
|
| Adding Controls to Windows Forms at Runtime |
| C# Corner |
| The example consists of one class named Form1 and has one Button and one TextBox. When the user clicks on the "Add Button" button, a button will be created and added to the form with MouseEnter, MouseLeave and MouseClick events. When the user hovers over the new button, it's BackColor changes, and when the user clicks the new button, the textbox displays it's name. |
|
| Best Practices for Using DTS for Business Intelligence Solutions |
| MSDN |
| Discover the best practices for using Data Transformation Services (DTS) within the Data Warehousing Framework to capture and present data as Business Intelligence solutions. |
|
| BookStock v2- Samples to Show Simple OleDb.NET Connectivity |
| Master C# |
| The bookstock example I had previously created for .NET SDK beta1 consisted of 3 samples to show how to perform basic ADO.NET connectivity with a Ms Access 2000 Database and how to Add, View , Edit , Delete records from it. It also demonstrates how to DataBind Textboxes to a DataSet object. |
|
| Building ASP.NET Controls in VB .NET and HTML |
| DotNetJunkies |
| It is always nice to be able to drag and drop controls on to your Web Forms, but there are times when you need to control the situation a little better. In this how to, I will show you some tricks on how to build ASP.NET controls using Visual Basic .NET (VB .NET) and HTML. I will talk about four different controls: textbox, label, dropdown list, and button. |
|
| Building Windows Forms on-the-fly with XML and C# |
| C#Today |
| In this article, Ashiwn Kamanna takes the concept of an XML driven Form builder a step further than the basics as he discusses how to eliminate the requirement for Form development, not only in an ASP based web application, but also in any potential client of an application. He discusses how to build a Form dynamically in a C# based windows application, and also discusses some object oriented patterns as he walks us through an example. |
|
| C# Calculator Using Windows Forms |
| C# Help |
| This is a basic calculator program using Windows Forms. You will be able to do mathematical operations like addition,subtraction etc. |
|
| Call Unmanaged Code Part 2 - Marshal Class |
| C# Help |
|
|
| Call Unmanaged Code. Part 1 - Simple DLLImport |
| C# Help |
|
|
| Close a Windows Form |
| Visual Studio Magazine |
| A Close button, which closes a form when the user clicks on it (natch), is one of the most common (and useful) interface controls you add to a Windows form. Unfortunately, the wizard doesn't generate the code for you, so you get to do it manually. Today, I'll be your wizard. Here's how you create a Close button. |
|
| Common .NET Libraries for Developers |
| MSDN |
| Identifies and defines many of common namespaces that you will use when developing .NET applications, and provides examples of the most common classes and methods in those namespaces. |
|
| Console Based Windows Form |
| C# Help |
|
|
| Creating a .NET assembly in C# |
| C#Today |
| In this article, Dinar Dalvi looks at assemblies in detail. He guides us as we learn about writing assemblies, signing them, adding them to the global cache, and how to write applications that use these assemblies. Along the way, he goes into detail about every aspect of assemblies. |
|
| Creating a Simple Color Dialog. |
| The Code Project |
| A simple usage of colordialog. |
|
| Creating a SQL Server Database Programmatically |
| C# Corner |
| SQL provides statements to create new databases and database objects. You can execute these statements from your program to create databases programmatically. In this article, I’ll show you how to create a new SQL Server database and its objects such as table, stored procedures, views and add and view data. I’ll also show you how to change database table schema programmatically. You’ll see how SQL statement ALTER TABLE is useful when you need to change a database table schema programmatically. |
|
| Creating Run-time Menus |
| C# Corner |
| The following example demonstrates how to add menu item and remove menu items at runtime. |
|
| Creating Windows Form User Controls Part -1 |
| Master C# |
| As we all know that the .NET Platform provides us with a Rich Windows Form API to create Windows Applications. Not only this model rich, but its also very extensible! Developers can quickly create their own controls and extend the API as they want! In this article we will see how to create our own Windows Form User Control to help us create a new 'LabledTextBox' control. |
|
| Developing A C# Vector Drawing Application - Part 1 |
| C#Today |
| Computer drawing applications are one of the most popular applications. Examples of such applications are Corel Draw and FreeHand - Windows users even have one in their system: Microsoft Paint. Chances are you too have used it once in your life. How about developing one? That has probably been done by a few people and the thought of it could scare beginners. This series of three articles by Budi Kurniawan show us that it is not hard at all with C# and the .NET Framework Base Class Library to build a vector based drawing application. Read on. |
|
| Dialog Objects in .NET |
| C# Help |
| .NET environment has provided us with various
classes to use the Dialog objects. This paper explains how to create and use the
following dialog boxes in .NET environment: |
|
| Differences Between Visual Basic 6.0 and .NET Controls |
| MSDN |
| This document outlines the standard controls in Microsoft Visual Basic 6.0 and the equivalent Microsoft .NET controls. |
|