BackgroundWorker is a helper class in .NET's System.ComponentModel namespace providing a general implementation of the Event-Based Asynchronous Pattern to manage a worker thread, support cooperative cancellation, and report progress.

learn more… | top users | synonyms

0
votes
1answer
25 views

WPF stop click event on MainWindow if backgroundworker on page1 is true

WPF vb.net desktop app. I have a simple layout for testing. A MainWindow, btnMain, frame1, page1 and btnPage1. If btnPage1 click event is busy with a background worker (which is downloading ...
0
votes
1answer
37 views

How to wait for SerialPort DataReceived event handler while in BackgroundWorker

I am working on a C# Windows Forms application that interfaces with a digital multimeter via a serial port. In my BackgroundWorker's DoWork event handler I send several commands to the multimeter, ...
-1
votes
1answer
59 views

Run asynchronous code inside backgroundworker

I found a few examples on the internet but I'm having a hard time trying to run my async call inside a background worker. I'm working in WP8. What's missing? Edit: The purpose of this is to update ...
0
votes
2answers
72 views

Can BackgroundWorker Thread be Killed like other threads..?

I just want to know how we can kill the BackgroundWorker Thread once it finished up with its associated tasks. Is there any method like Kill or Abort or something else which can help?
-1
votes
2answers
52 views

Backgroundworker ReportProgress only triggered once?

What could the reason be that my Processbar1 and ReportProgress respectively, only gets triggered once? First time I click the button everything is working as it was expected. All further Clicks ...
0
votes
1answer
44 views

c# using backgroundworker i want to get the “time process” in saving my database

private void btnUpdate_Click(object sender, EventArgs e) { bgWorker.RunWorkerAsync(); } private void bgWorker_DoWork(object ...
0
votes
0answers
18 views

Cancel “tcplistener” from backgroundworker's CancelAsync()

I have a Windows form from which when a button is clicked an instance of Backgroundworker starts a tcplistener method in another class. I would like to be able to cancel the tcplistener after it's ...
0
votes
3answers
44 views

Passing Parameter to Backgroundworker

Im running a c# code with background worker. Im impelmenting it by having a foreach loop and inside the loop im passing the foreach variable as parameter for the Backgroundworker. But the problem is ...
1
vote
1answer
42 views

How to set text to a TextBlock from a backgroundworker

I want to show in realtime (updating every 1s for example) some temperatures to my program's interface. To do this I believe I'm going to need to run some code in a background worker so the main ...
0
votes
0answers
25 views

windows phone 8 background worker, app lifecycle

I am having a timing issue in windows phone 8, I have a backgroundworker which is making a call to a server, the server responds with a push notification which sends my app to the background, i need ...
1
vote
1answer
42 views

Why can I access only some UI control properties from BackgroundWorker?

I have a simple Windows Forms app that uses a couple BackgroundWorker elements to, well, do things in the background. While developing, I noticed I was able to do things such as get and set the .Text ...
3
votes
3answers
48 views

BackgroundWorker stops running over long period of running

Is there a limit to the amount of time a BackgroundWorker will run without user interaction/change? I left a WPF program threaded with one running over night and it stopped at some point. I could ...
0
votes
1answer
25 views

Generic BackgroundWorker - Populate different DataTables/DataGridViews

I have a form with 2 buttons that populate 2 different datagridviews. There is a generic function that takes in a SQL statement and executes it. Depending on the SQL statement, this can take some ...
3
votes
2answers
53 views

How to redirect all output of a screen background process in Linux? [closed]

Trying to find out why a particular process we run with screen is not starting. For this reason, it would be very useful to be able to redirect the output of a screen to a file (like as if using the ...
1
vote
2answers
37 views

Keep Windows awake when a WPF application is running

Is there any way (short of manually doing so in the Windows settings each time I run it) to make a running WPF application prevent Windows from going to sleep/hibernating/etc. The application is just ...
0
votes
1answer
80 views

SqlDependency using BackgroundWorker

I have a table in a SQL Server database that represents a log file of some actions inserted from a running windows service. Everything is working well. But, I have a Windows application that gets the ...
0
votes
3answers
52 views

Thread/threadpool or backgroundworker

I would like to know what to use for tasks that need alot of performance. Backgroundworker, Thread or ThreadPool? I've been working with Threads so far, but I need to improve speed of my ...
0
votes
1answer
117 views
+50

Background Worker to update multiple items in a listview

I am trying to update multiple values in a list box using this method: What this method does is copy the contents of the specified directory but it outputs the current file name to the background ...
1
vote
1answer
31 views

Convert Console to Winforms. How to implement two progress bars with backgroundworker?

I have very simple WinForms application which uses class that collects countries and regions from some web-service and store collected data into file. This CollectData class worked perfect in console ...
0
votes
2answers
34 views

C# How to stop running backgroundWorker without cancellationPending

is there any way to stop backgroundWorker thread without cancellationPending? I have code like this: DoWorkFunction { if(worker.cancellationPending == true) return; //this works great but ...
0
votes
1answer
40 views

AsyncTask doInBackground odd behavior

ORIGINAL I have an AsyncTask which performs network requests, and it works fine. The environment I'm testing in is against Eclipse with the USB wired to the device to log information to LogCat. When ...
1
vote
1answer
54 views

Background worker not setting `e.result`

Overview: I have several background workers used to import data into an access database and then carry out some calculations. I pass a hashtable of arguments between the background workers using ...
0
votes
1answer
12 views

Windows Form TopMost don't work with BackgroundWorker?

I'm trying to show window when user need to be notify about some work to do. Every think work fine, but i want to show form absolute topmost. I set form property TopMost = true but it does not work, ...
5
votes
1answer
54 views

Tracking Multiple BackgroundWorkers

I have a WPF application, and I'm using a BackgroundWorker component to retrieve some data from the back-end and display it in the UI. The BackgroundWorker has WorkerReportsProgress = true so that ...
0
votes
2answers
46 views

Backgroundworker CancelAsync() wont work

I am trying to cancel my Backgroundworker with WorkerClass.bw.CancelAsync(). But it wont work at all. //edit! I posted the full Code here. May this will help. Okay, i added some Msgboxes to know if ...
0
votes
0answers
65 views

When calling a class using BackgroundWorker nothing happens

This is my first post on this site so I apologize if I am not following protocol :) I have created a form in C#.net and trying to use a BackgroundWorker to call a class. I have a button for calling ...
1
vote
2answers
66 views

SOLVED The BackgroundWorker RunWorkerAsync method does not trigger DoWork();

I've been trying to get the BackGroundWorker to work for hours now. I can't seem to find out why my DoWork() eventhandler isn't getting raised after calling bgw.RunWorkerAsync(); I've cut down the ...
0
votes
1answer
44 views

Is this a threading issue? Binding results of backgroundWorker to WPF DataGrid causes hang

I cannot figure out why this is happening. Binding the DataGrid to a DataTable.DefaultView is causing the application to hang. I want to display the contents of a CSV file that has been parsed and ...
0
votes
1answer
80 views

BackgroundWorker process needs to raise custom events to be handled on the main (UI) thread

I have a parser class for large CSV files. The parse method's work of reading through the large files line by line is done in a backgroundWorker. The percentage complete information is passed to the ...
0
votes
2answers
59 views

Running Class Methods in BackgroundWorker

I have a Class which has about a dozen Methods in it. Most of the Methods execute and complete rather quickly. However two off the Methods can, on occasion, take quite some time to run their course. ...
0
votes
2answers
97 views

BackgroundWorker completes before DoWork

I'm using a background worker to handle the loading of a file to stop my ui from freezing however it seems that the RunWorkerCompleted is finishing before my DoWork event has completed (Causes errors ...
0
votes
1answer
31 views

How to check BackgroundWorker CancelationPending in C++ native DLL

Hi everyone i've created a DLL in c++ and i'm using it in C# like: [DllImport("IMDistortions.dll", CallingConvention = CallingConvention.Cdecl)] public static unsafe extern void ...
2
votes
1answer
36 views

Cancel background worker, update db and mail

I'm working on a program that uses a background worker and I'm trying to get my cancellation to work. When cancelling out of the program, I want it to update my database (put it in a log that the ...
0
votes
1answer
30 views

Run a backgroundworker process every '5' minutes in Winforms

I have a Winforms app in which I want to run a background worker process every 5 minutes. I am using .Net 4.0. Would this be possible with 'BackgoundWorker' component?
0
votes
1answer
39 views

Run IronPython Async while writing to textbox

I want to know how I can run a very long running python script asynchronously so that it does not block my entire application but I also want its stream output to be written to a textbox while it's ...
-1
votes
1answer
46 views

trying to read a continuous serial output with StreamReader in VB

I have a device which continually sends data in via a serial port as a string. I am looking for a way to bring this data in as a string chop it up into sections, convert into a double and then pass ...
4
votes
3answers
45 views

Background Worker ReportProgress method

The ReportProgress method takes in 2 parameters. One's an int and one's a user state. I am passing some string parameters into the method for some processsing purposes and have no need for the int. ...
3
votes
5answers
50 views

Closing the form when backgroundWorker stops working

I'm working on an application that should read the data from Mifare smart card. I have to create a form will check the Mifare reader periodically and when the card is in range, read its serial number ...
0
votes
2answers
99 views

Using threads to calculate values in the background

I am working on a program that queries information from a remote computer. WMI, registry, etc. I have most of that all finished up, but without threading it runs pretty slow. (I assume it is waiting ...
0
votes
1answer
32 views

How to properly cancel a BackgroundWorker

I've got a GUI form which is acting as the main thread, while I've got a different class for the actual work which is needed to be done. Is there a way to properly check the CancellationPending ...
2
votes
1answer
83 views

How to create an auto-upload Android picture app?

I am trying to create an app that automatically uploads a picture to my server. The idea is that a user creates a picture with the native/normal camera and my app gets a notification (catches the ...
1
vote
3answers
87 views

Updating UI with BackgroundWorker in WPF

I am currently writing a simple WPF 3.5 application that utilizes the SharePoint COM to make calls to SharePoint sites and generate Group and User information. Since this process takes awhile I want ...
0
votes
0answers
31 views

Backgrounworker thread which returns WPF UI

I have created an WPF AddIn application, which i am hosting it in a Winform Window. The issue i am facing is that i want to show a splash screen, when i call the method which returns me the WPF UI and ...
0
votes
2answers
67 views

BackgroundWorker with Webclient downloadstring

So basically I want to retrieve the content of a .txt file on the internet and write it into a a label. However though, while it does this Windows Forms freezes. So I thought of putting it into a ...
0
votes
1answer
70 views

System.Windows.pdb not loaded - Windows Phone

I just downloaded the Background worker sample from the website for reference and when i run the application it runs without any problem. The background task is executed normally and toast ...
0
votes
2answers
44 views

run multiple tasks in parallel using C#.net 2.0

I need to perform 2 tasks in parallel. One will load data in the GUI, till then I want to run a progress bar continuously in front of user. I tried BackgroundWorker but it is giving me some Thread ...
0
votes
2answers
64 views

Terminating Background Worker from a different class

This is how I set up my Background Worker The question is: How do I terminate the process midway? I have to create a cancel button that will stop current processing. I thought of use the line ...
0
votes
1answer
51 views

ListBox DataSource assignment

I have here a desktop application with ListBox that will accept records (files inside a directory and its sub-directories) of more than 10,000. When I assign its DataSource with that DataTable of more ...
5
votes
3answers
85 views

Background Worker Updating from a different class (preferably via events)

I have a background worker in my GUI class. private void bw_DoWork(object sender, DoWorkEventArgs e) { ProgressClass obj = new ProgressClass(); Importer tradeImporter = e.Argument as ...
-2
votes
0answers
52 views

BackGround thread is not working

I am using Windows application in C#. A background worker thread for background processing. I use a form and grid to show some data and on a button click I want to run background process, but in my ...

1 2 3 4 5 31