|
|
How to do Asynchronous Loading of Data Without Threading.
|
Total Hit (3813) |
Sometimes we need to work with long running task but still we dont want to stop responding other events in this type of situation mostly we will think about implementing threading. But here is more easy way without implementing threading.
Today we will discuss about IAsyncResult class found in Sy
....Read More |
Rating
|
|
|
|
Sample Chapter from Visual Basic .NET Threading Handbook
|
Total Hit (3151) |
This book will cover how .NET applications are executed, the life cycle of a thread in .NET, how the .NET Framework uses threads, how threads work in an event-driven environment, how we can avoid race conditions and deadlocks, how the activity of multiple threads can be synchronized, and how to debu
....Read More |
Rating
|
|
|
Multithreaded Programming with Visual Basic .NET
|
Total Hit (1288) |
The .NET Framework provides new classes that make it easy to create multithreaded applications. This article discusses how you can use multithreaded programming techniques with Visual Basic® .NET to develop more efficient and responsive applications.
....Read More |
Rating
|
|
|
Using Threads
|
Total Hit (2467) |
This article explains the different models of threading — single, apartment, and free — and the use of each model. It also introduces a code sample in C# that uses threading to help you write applications that will take advantage of threading. The article also discusses important issues involved in
....Read More |
Rating
|
|
|
Simple Interprocess Communications using WM_COPYDATA
|
Total Hit (2365) |
Whilst the .NET Framework has some very sophisticated techniques for communication between processes on different machines, it doesn't provide so much support for communication between processes on the same machine. The Windows API offers a rich set of inter-process communications features, at vario
....Read More |
Rating
|
|
|
Multithreading in VB.NET
|
Total Hit (1623) |
In past developing multithreaded applications in VB was tedious task. Many times spawning new threads actually spawn errors :-) The picture has changed in VB.NET. VB.NET now has simplicity of Java while dealing with threads. We will see a simple example of running your code in a separate thread in f
....Read More |
Rating
|
|
|
Safe, Simple Multithreading in Windows Forms, Part 1
|
Total Hit (1166) |
It all started innocently enough. I found myself needing to calculate the area of a circle for the first time in .NET. This called, of course, for an accurate representation of pi. System.Math.PI is handy, but since it only provides 20 digits of precision, I was worried about the accuracy of my calc
....Read More |
Rating
|
|
|
Safe, Simple Multithreading in Windows Forms, Part 2
|
Total Hit (1170) |
Explores how to leverage multiple threads to split the user interface (UI) from a long-running operation while communicating further user input to the worker thread to adjust its behavior, thus allowing a message-passing scheme for robust, correct multithreaded processing.
....Read More |
Rating
|
|
|