| AppDomains and Assemblies |
| MSDN |
| I've been writing some code recently to deal with AppDomains. AppDomains provide a way to isolate part of an application from another part. In short, it lets you run in two separate environments. In some cases, the two environments may be on different machines and the communication between AppDomains is handled through remoting, and in other cases, they may be in the same process. |
|
| ASP.NET 2.0's Client Callback Feature |
| DotNetJunkies |
| One of the most overlooked features of ASP.NET 2.0, part of Visual Studio 2005 or "Whidbey", is the Client Callback feature. This feature allows you to programmatically call server-side methods through client-side JavaScript code without the need for posting back the page. This article describes how to use the Client Callback feature to implement your own callback scenario and introduces the new TreeView control that has this feature built in. |
|
| Build a Versatile .NET Code Execution Timer / Logger |
| Egg Head Cafe |
| When you build ASP.NET applications that have multiple assemblies and a lot of business logic going on, it becomes extremely valuable to be able to trace and log the execution times of various operations within the application, and log them to a file or database where items can be grouped by function, calling assembly, time, elapsed time, method name and so on. |
|
| Building a real-life web-experience : Don´t trip over the threads. |
| DotNetJunkies |
| In my previous contribution I took a look at calling web-services. There I
showed how to asynchronously invoke a web-service from a Windows form. Behind
the scenes the project involved a lot of threading issues. The .NET framework is
very good at handling these but there is one thing I overlooked. In this paper I
will dive deeper into the matter and build build a more complicated service
which serves jpeg pictures. A windows form consumer will make asynchronous invocations
of the web-service to |
|
| Choosing Among File I/O Options in Visual Basic .NET |
| MSDN |
| This article is aimed at the Visual Basic programmer who may be confused by the multiplicity of ways to approach file I/O in Visual Basic .NET. Available alternatives include the methods provided in the Visual Basic .NET runtime, the FileSystemObject, and the methods furnished in the common language runtime. Upon completion, the experienced developer will be familiar with all three and will be equipped to make choices among them. |
|
| Creating a custom DataGridColumnStyle in C# |
| C#Today |
| The .NET framework provides many unique controls like the DataGrid, which is a data bound list control that displays the items from a data source in a table. The DataGrid is the most powerful and flexible control in the .NET toolbox. In this article, Chad DePue takes a look at one aspect of the DataGrids flexibility, by creating a custom column. The DataGrid provides two types of columns for free, the DataGridTextBoxColumn and the DataGridBoolColumn, but there are many types of data that wont fit into either of these two column types. In the example given, we want to search a directory for icon (.ICO) files and display each icon as a row in the DataGrid. Neither of the existing column styles will do this for us, so we create our own. |
|
| Creating a Smart Base Factory Pattern |
| DotNetJunkies |
| Factory design patterns are a common approach used to help decouple object creation and instantiation from the client. In this tutorial, we will implement a slight twist on a standard factory pattern, devising a project dynamically capable of instantiating and providing information on new or removed concrete objects. |
|
| Enumerate and Host Control Panel Applets using C#. |
| The Code Project |
| Demonstrates how to enumerate and host Windows Control Panel Applets using C# and unmanaged C++. |
|
| FileSystemInfo Class in C# and VB.NET for beginners |
| devCity.NET |
| One of the rich experiences in working with .NET is a huge collection of Base Class Libraries. The .NET Framework class library is a library of classes, interfaces, and value types that are included in the Microsoft .NET Framework SDK. This library provides access to system functionality and is designed to be the foundation on which .NET Framework applications, components, and controls are built. |
|
| FolderSync class for .NET |
| The Code Project |
| A set of classes which can get differences between two folders and which can synchronize them according to basic rules |
|
| Get a File ContentType from a WindowsForms App |
| The Code Project |
| How to determine the ContentType (MIMEType) of a file from a Windows Form App |
|
| hello, world - a primitive view of the state of the art |
| The Code Project |
| A revival of the CLI for .NET Development |
|
| HOW TO: Do Basic File I/O in Visual Basic .NET (Q304427) |
| http://www.kbalertz.com/ |
| The step-by-step procedure that is outlined in this article demonstrates how to do six basic file input/output (I/O) operations in Visual Basic .NET. If you are new to .NET, you will find that the object model for file operations in .NET is |
|
| Icon Extractor in VB.NET |
| The Code Project |
| An Icon Extractor coded in VB.NET |
|
| Internal Site Search Engine |
| The Code Project |
| Site Search Engine searches an entire page for matching keyword(s) or a phrase and will count how many times the keyword(s) or phrase are found on the page, and displays the results with the highest matches first. |
|
| Line Count Utility |
| C# Corner |
| This utility is for counting number of code lines in a Visual Studio Project. it returns the number of code lines and file names which are in the project folders. Actually, you can use this utility for any kind of text file to count the number of lines. This is C# Class file, so you can easily call it in any Web or Windows application. I programmed a simple web application, which shows the number of code line and file names in a web datagrid. |
|
| List, Create and Delete Files and Directories |
| Edward's Web Developer Site |
| This code shows the basic I/O functions for files and directories. |
|
| Loading XML Files in a TreeView Control using Multithreading |
| C# Corner |
| There are many occasions when programmers need to develop multithreading applications, which can load big files in the background and let the user do data entry or other jobs without any interruption. In this article, I'll show you how to create multiple threads to load multiple files. |
|
| Managing a Music Collection Using Visual Basic Express and SQL Server Express |
| MSDN |
| Build a music collection management application using Visual Basic 2005 Express and SQL Server 2005 Express. |
|
| Managing Directories in .NET |
| http://aspalliance.com/ |
| Using the System.IO namespace you can accomplish many actions such as deleting and copying files and directories. This article covers a few methods for managing file system directories in .NET. |
|
| Microsoft Visual C++ .NET 2003 Kick Start Chapter 3: The .NET Base Class Libraries |
| The Code Project |
| An introduction to the .NET base class libraries. |
|
| Notepad Like Editor In C# |
| C# Help |
|
|
| Opening and Viewing Text and Image Files |
| C# Corner |
| We will start this article with a simple application where we will learn how to open and view text and image files using the OpenFileDialog class. |
|
| Plug-ins in C# |
| The Code Project |
| Give your application Plug-in functionlity! |
|
| Recording and Playing Sound with the Waveform Audio Interface |
| MSDN |
| Learn how to use the Waveform Audio Interface to record and play ".wav" files. |
|