| A Meal Reminder in C# |
| C# Help |
|
|
| A Suite of Cryptographic Objects Part 2: Implementing Key Exchange Over a Network |
| C#Today |
| Throughout the whole history of Cryptography one element has continually created the most difficulty: Key Exchange. In this article, Richard Conway looks at the idea and implementation of Key Exchange over a network, bringing together the elements that we have discussed so far in the previous article (with respect to symmetric key cryptography) and also introduces concepts of public key cryptography. We demonstrate the use of this by creating a secure chat application. |
|
| A System.Security.SecurityException exception occurs when you try to impersonate a user from a secondary thread in an ASP.NET Web application |
| http://www.kbalertz.com/ |
| (842790) - Explains that a SecurityException exception may occur when you try to impersonate a user from a secondary thread in an ASP.NET Web application. Describes three workarounds to solve this problem. |
|
| A System.Security.SecurityException exception occurs when you try to impersonate a user from a secondary thread in an ASP.NET Web application |
| http://www.kbalertz.com/ |
| (842790) - Explains that a SecurityException exception may occur when you try to impersonate a user from a secondary thread in an ASP.NET Web application. Describes three workarounds to solve this problem. |
|
| AnimatedIcon Control |
| The Code Project |
| AnimatedIcon Control plays an animation as a sequence of images stored in the ImageList. The article demonstrates how to show an animated icon on the StatusBar. |
|
| Basic Instincts |
| MSDN |
| Creating and Managing Secondary Threads |
|
| Bi-directional HTTP Connection |
| The Code Project |
| An article about bi-directional communication using a single open connection. |
|
| 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: SQLClient: SQLReader Doesn't Propagate Deadlock Exceptions (Q316667) |
| http://www.kbalertz.com/ |
| When you execute the |
|
| C# 2.0: Create Elegant Code with Anonymous Methods, Iterators, and Partial Classes |
| MSDN |
| Take a sneak peek at the most important new language features in C# 2.0, including anonymous methods, iterators, partial classes, and more. |
|
| C# From a Java Developer's Perspective |
| http://www.25hoursaday.com/ |
| What follows is an overview of similarities and differences between the language features and libraries of the C# and Java programming languages based on my experience using both languages. All code snippets below were tested on Microsoft's .NET Framework Beta 2 for C# snippets and Java™ 2, Standard Edition (J2SE™) version 1.4 Beta 2 for the Java snippets. |
|
| 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#. |
|
| Creating a Processor Aware Algorithm |
| The Code Project |
| Shows how to create a monitoring algorithm that controls another looping algorithm, so the loop will only utilize as much of the CPU as you want it too. Without this control, a large loop will peg the prcessor at 100%, bringing all other applications to a stand still. |
|
| Developing a Generic Thread Pool in C# |
| C#Today |
| One of the C# languages most powerful capabilities is its built-in support for threads. Threads are a powerful abstraction for allowing non-blocking parallel operations. Often there is a need to perform operations asynchronously. In languages like C/C++, you either have to write your own library from scratch, or use a third party solution. If continuous creation of these threads in any program is not controlled, the machine will run out of memory pretty soon. In this article, Tejaswi Redkar looks at the concept of thread pooling, and why it is important to use thread pools in server systems. Along the way, we will also develop a generic thread pool library that will be available for use on a regular basis. |
|
| How to create threads in Visual C++ .NET |
| Microsoft Support |
| (815805) - You can write multi-threaded applications in Microsoft Visual C++ .NET. This article describes how a simple Visual C++ .NET application can create and manage threads. back to the top Requirements The following list outlines the recommended hardware,... |
|
| How to synchronize access to a shared resource in a multithreaded environment by using Visual C++ .NET |
| Microsoft Support |
| (816160) - In applications that you create by using Microsoft Visual C++ .NET, you can perform multiple tasks at the same time by using multithreading. Multithreading permits you to start different threads to complete different tasks at the same time.... |
|
| Inter-Process Communication in .NET Using Named Pipes, Part 2 |
| The Code Project |
| This article explores a way of implementing Named Pipes based Inter-Process Communication between .NET applications |
|
| Introducing "Longhorn" for Developers (Chapter 7: Creating Mobility-Aware "Longhorn" Applications) |
| MSDN |
| In this chapter of Introducing "Longhorn" for Developers, you'll learn about the key "Longhorn" mobility scenarios you will want to be aware of as you design "Longhorn"-compatible software. |
|
| Introduction to Threads in C# |
| The Code Project |
| A Beginers introduction to Threads using C# |
|
| 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. |
|
| Make Multithreaded Programming Easier |
| Visual Studio Magazine |
| I am developing an application, but stuck in one issue. I have to download pictures and at the same time connect to a database to fetch information. I can do these two activities individually, but how do I do them at the same time? |
|
| Many Parties Observing a Long Process |
| DotNetJunkies |
| Sometimes it is required to start some lengthy process and allow all interested parties to observe execution of that process. Filip uses a simple example of a lotto draw to show how to make this possible. |
|
| 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. |
|
| Multithreaded Programming using C# |
| The Code Project |
| Threading is a lightweight process. With the help of threads we can increase the response time of the application. To use multithreading we have to use the Threading namespace which is included in System. The System.Threading namespace includes everything we need for multi threading. Now lets see the first program. |
|
| Multithreading in .NET |
| The Code Project |
| Asynchronous processing and background processing was always a must for serious programs serving complex user needs. The Windows NT platform offers a great way to accomplish this, but the implementation was sometimes tedious and always labor intensive. It is the reason why I first studied multithreading options offered by the .NET framework. |
|