| .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 Matters: 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 Fast, Compact C# Color Selection Control |
| The Code Project |
| A color selection control that quickly lets the users zero in on the color they want. |
|
| 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. |
|
| Advanced Basics: Building a Progress Bar that Doesn't Progress |
| MSDN |
| Building a Progress Bar that Doesn't Progress |
|
| An All VB.NET Explorer Tree Control with ImageList Management |
| The Code Project |
| Explorer TreeView control with Shell Folder access class and Icon management. |
|
| 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: The icon that represents your form appears as a blank form icon in Visual C# .NET if you set the ShowInTaskBar property to False |
| http://www.kbalertz.com/ |
| (836673) - Explains why the icon that represents your form appears as a blank form icon when you move the control focus from a Windows form to any other program by pressing the ALT+TAB key combination. |
|
| 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 |
|
| BUG: You cannot use the Graphics.DrawXxxx methods to draw on a surface that is created by using the Graphics.FromImage method in the .NET Framework 1.0 or the .NET Framework 1.1 |
| http://www.kbalertz.com/ |
| (834457) - Describes a problem that occurs when you use the Graphics.DrawXxxx methods to draw on top of a loaded bitmap that is created by using the Graphics.FromImage method. The Graphics.DrawXxxx methods do not draw. The bitmap is also reloaded. |
|
| 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. |
|