C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Michael Livshitz(2)
Akshay Teotia(1)
Amr Monjid(1)
Shankar M(1)
Mahesh Chand(1)
hamzi AbuKhalla(1)
Troy (1)
Resources
No resource found
Thread-Safe Calls With BackgroundWorker Class in C#
Jan 03, 2012.
The preferred way to implement multithreading in your application is to use the BackgroundWorker component. The BackgroundWorker component uses an event-driven model for multithreading.
Using the BackgroundWorker component
Mar 12, 2008.
This article discusses the BackgroundWorker component in .NET 2.0, it will show you how to use it to execute tasks in the background of your application. BackgroundWorker
Using the BackgroundWorker Component with Composite User Controls
Sep 28, 2007.
In this article you will learn how to use the BackgroundWorker Component with user controls in C#.BackgroundWorker,
Using the BackgroundWorker Component in .NET 2 Applications
Jul 03, 2007.
In this article I will show (step-by-step) how you can use the BackgroundWorker Component in .NET 2 applications to execute time-consuming operations.
Fetching Records and Displaying in DataGrid Using BackgroundWorker
Feb 21, 2013.
In this article we will discuss how to use a BackgroundWorker Control in C# and Load records from the Database Table.
BackgroundWorker In C#
Aug 20, 2010.
C# BackgroundWorker component executes code in a separate dedicated secondary thread. In this article, I will demonstrate how to use the BackgroundWorker component to execute a time consuming process while main thread is still available to the user interface.
BackgroundWorker and Crystal Reports
Sep 18, 2009.
The code snippet in this article shows how to get reports data from a database and generate reports using Crystal Reports in a background worker thread. BackgroundWorker, Crystal Reports
Responsive UI's for WPF Applications Using Asynchronous Processing
Nov 08, 2012.
Demonstrate how to keep WPF UI’s responsive while running long processes asynchronously.