| .NET Anatomy - Data Concurrency in ADO.NET, Part II |
| DotNetJunkies |
| This is the second article in a series covering the subject of Concurrency in ADO .NET. Concurrency is the method by which many users are able access and change the same data simultaneously without being concerned that they are overwriting each others work. The architects of the .NET Framework made a design decision that the DataSet object assumes that Optimistic Concurrency as the default method of concurrency. |
|
| .NET Anatomy - Data Concurrency in ADO.NET, Part II |
| DotNetJunkies |
| This is the second article in a series covering the subject of Concurrency in ADO .NET. Concurrency is the method by which many users are able access and change the same data simultaneously without being concerned that they are overwriting each others work. |
|
| .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 Data Persistence: SQL Server vs. Matisse vs. FastObjects |
| The Code Project |
| An article with source code examining the development speed and performance capability of .NET, Matisse and FastObjects |
|
| .NET Dot Net Guruers: Const in C#, Exception Filters, IWin32Window, and More |
| MSDN |
| Const in C#, Exception Filters, IWin32Window, and More |
|
| .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. |
|
| A Shaped Windows Form Application with Variable Opacity |
| The Code Project |
| This application demonstrates two simple techniques that beginners might find useful in developing creative new looks for Windows applications - opacity, and shaped forms. |
|
| A Sneak Preview of Visual Basic 2005 |
| MSDN |
| Ken Getz provides on overview of the new features in Visual Basic 2005 including, My Visual Basic, IntelliSense, Edit and Continue, and more. |
|
| A Sneak Preview of Visual C# Whidbey |
| MSDN |
| Learn about new language constructs, compiler features, productivity enhancements, and debugger improvements in the upcoming "Whidbey" release of C#. |
|
| 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 Tray Icons and Context Menus |
| The Code Project |
| Beginner's Tutorial on adding tray icons and setting context menus. |
|
| Animate with Pocket PC |
| C# Corner |
| This article discusses programming for a Pocket PC in general complete with a code sample. |
|
| 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. |
|
| BUG: Focus on a Control That Does Not Support the CausesValidation Property Suppresses Validation of Unvalidated Controls in the User Control |
| http://www.kbalertz.com/ |
| (814350) - The pending validation of the controls in a user control is suppressed if the following conditions are true: There are multiple controls in the user control. -and- In the user control, you move from a control with the CausesValidation property set to... |
|
| BUG: Using the WebBrowser Control on Windows.Forms.Form with the Opacity Set to "< 1" Causes the Computer to Fail (Q306719) |
| http://www.kbalertz.com/ |
| In Visual Basic .NET, developers can use the Form.Opacity property of Windows.Forms.Form to enable the level of transparency for the form and its controls. Using the Microsoft WebBrowser control (Shdocvw.dll) on a Windows.Forms.Form |
|
| Building a CD Player Using VB.NET Part 2 |
| DotNetJunkies |
| In the first part of this article Steve showed how to use the Windows API function in VB.NET and to build a library of CD Audio methods. In part 2, Steve builds a CD player and shows how to build a button array that is attached to a group box. |
|
| Building an N-Tier Application in .NET |
| MSDN |
| After reviewing the types of n-tier applications, you'll learn how to create a typed dataset that can return data from a Web service and consume a Web service from a Windows application. |
|
| 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. |
|
| Call Unmanaged Code Part 2 - Marshal Class |
| C# Help |
|
|
| Call Unmanaged Code. Part 1 - Simple DLLImport |
| C# Help |
|
|
| Christian's Code Project Screensaver |
| The Code Project |
| Well, here it is. I'm sorry that the article is non-existant, it is very late, and I need to go to bed, but I couldn't wait to post the fruit of my labours. I will write a full article in support of my screen saver hopefully tomorrow, but I don't have access to any web space, so I'm going to use Chris's to show you all what I have done so far. The screensaver is written in C#, it simply creates a form that takes up the full screen, and it can only be turned off my pressing a key. This is because when Chris has his XML feed going, I will scroll the latest links from CP in semi transparent text, and moving the mouse will generate a cursor, and clicking on an item will stop the screen saver and launch the URL. |
|
| 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. |
|