| .NET |
| MSDN |
| Unexpected Errors in Managed Applications |
|
| .NET Anatomy - Structured Exception Handling in .NET |
| DotNetJunkies |
| This article discusses structured exception handling (SEH), a service built into the core of .NET and available to all languages supported by it. Since the infrastructure for this service is built-in, there is very little code required to take full advantage of these features. |
|
| .NET Anatomy – Structured Exception Handling in .NET |
| DotNetJunkies |
| This article discusses structured exception handling (SEH), a service built into the core of .NET and available to all languages supported by it. Since the infrastructure for this service is built-in, there is very little code required to take full advantage of these features. |
|
| .NET Connector for Microsoft Outlook |
| The Code Project |
| Export Microsoft Outlook data using XML DataSets and the Outlook COM Object Library. |
|
| .NET Interop: Get Ready for Microsoft .NET by Using Wrappers to Interact with COM-based Applications |
| MSDN |
| Very soon, the development of Microsoft .NET applications will require interaction between those apps and existing COM components on both the client and the server. The .NET Framework has made provisions for this interaction by implementing various wrappers for COM objects to allow exposure of their properties and methods to .NET components. These wrappers will make it easy to make the connection between COM and .NET. |
|
| A Database Admin Tool in 20 Lines of C# Code |
| ASP Alliance |
| This example illustrates how to create a one page database administration tool with only 20 lines of C# code. Using this example, you can enter almost any Sql statement into a text box and execute the statement against any tables in your database. You can view the results of a SELECT in a DataGrid or the see the affects of UPDATE, INSERT and DELETE statements. |
|
| 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. |
|
| Accessing Web Services from Windows Client |
| C#Today |
| Over the last several years, we have seen the Internet evolve from delivering static and simple HTML pages, into using dynamic, programmable and reusable web components. Microsoft's .NET framework introduces Web Services and SOAP that take the Internet a step further, by allowing the web applications to be more distributable, reusable and resourceful. In this article, Ravi Venkatarajalu look at how to combine the features of Web Services, SOAP and the .NET framework with Microsoft Excel 2000. We will also see how to serialize a Dataset and send it as part of a HTTP Request to a Web Service. |
|
| Allowing Users to Upload Multiple Files at Once |
| DotNetJunkies |
| This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server. Specifically, this article will demonstrate how to set up a page that has 5 HtmlInputFile controls where a user can choose 5 images to upload. Only .jpg and .gif extensions will be accepted on the server and each one will be saved to a different directory::so any image that has the extension .jpg will be saved to the jpgs direcory and .gif will be saved to the gifs directory and everything else isn't saved at all. |
|
| Allowing Users to Upload Multiple Files at Once |
| DotNetJunkies |
| This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server. |
|
| An Extensive Examination of Data Structures, Part 3: Binary Trees and BSTs |
| MSDN |
| Scott Mitchell delves into binary trees and BSTs, a common data structure not included in the .NET Framework Class Library. |
|
| Asynchronous Command Execution in ADO.NET 2.0 |
| MSDN |
| Get an overview of the new asynchronous execution functionality in ADO.NET 2.0, the scenarios it was developed to enable, plus some of the issues to keep in mind when using this feature. |
|
| 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. |
|
| BUG: JLCA Incorrectly Matches the Automatic Variable of Type BYTE |
| Microsoft Support |
| (819601) - You have a Microsoft Visual J++ project that contains a variable of type byte as an argument for a method. When you use the Java Language Conversion Assistant (JLCA) tool to convert you Visual J++ project to Microsoft Visual C# .NET, JLCA converts... |
|
| Building a Refactoring Plug-in for VS.NET - the Sequel |
| The Code Project |
| Describes how to extend the original refactor add-in with additional features. |
|
| 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. |
|
| Bunnyaruga: GAPI, Hekkus, Basics of Deployment |
| The Code Project |
| This article shows an example of a game that uses the GAPI and Hekkus libraries. It also shows a nice and free way of deploying your games/applications without requiring the .NET Framework installed on the end user machines. |
|
| C#: A Message Queuing Service Application |
| MSDN |
| This article outlines a Windows service solution designed to process several message queues, focusing on the application of the Microsoft .NET Framework and C#. |
|
| CDataService: A Generic Database Access Class |
| C# Corner |
| Using a generic database access component in data-aware applications can simply development and separate data tier from business tier. |
|
| Changing printer setting using C# |
| The Code Project |
| Changing printer setting using C# |
|
| ColdStorage Advertising Service Development |
| MSDN |
| This article describes some of the issues faced and lessons learned in the development of the ColdStorage sample Advertising Service. |
|
| Configuring Exceptions Using Web.config |
| The Code Project |
| An article on handling exceptions using custom handlers, by a custom configuration section, making it independent from using the application. |
|
| Connecting Databases in C# Using ADO.Net Assemblies (Part 1) |
| C# Help |
|
|
| Connections in Web.Config for Multiple Computers |
| ASPFree |
| I typically work on an application using about three different computers. It works great except that I was frequently forgetting to change the Web.Config connection string settings after the transfer. Needless to say, the application would crash, I would change the settings and then everything was fine. To overcome my problem, I started creating a CDb.cs class file in each application where I would place, among other things two static functions. |
|
| Connections in Web.Config for Multiple Computers |
| http://aspalliance.com/ |
| I typically work on an application using about three different computers. It works great except that I was frequently forgetting to change the Web.Config connection string settings after the transfer. Needless to say, the application would crash, I would change the settings and then everything was fine. To overcome my problem, I started creating a CDb.cs class file in each application where I would place, among other things two static functions. |
|