Tagged Questions

0
votes
3answers
37 views

How to directly access the UI thread from the BackgroundWorker thread in WPF?

I'm creating a backup utility in WPF and have a general question about threading: In the method backgroundWorker.DoWork(), the statement Message2.Text = "..." gives the error "The …
0
votes
2answers
61 views

How to advance a progress bar from a recursive method while avoiding threading issues?

I made this code example which successfully uses a BackgroundWorker to advance a progress bar in a for loop. Now I'm trying to adapt it to work with the following recursive file c …
5
votes
5answers
98 views

C#: Do I need to dispose a BackgroundWorker created at runtime?

I typically have code like this on a form: private void PerformLongRunningOperation() { BackgroundWorker worker = new BackgroundWorker(); worker.DoWork += …
0
votes
2answers
30 views

Rendering and loading fonts into the FontCache on a background thread?

I am trying to show a Font picker list similar to the one in Blend: Like Blend, I am seeing performance issues when the FontFamilies are not loaded in the FontCache. It seems …
1
vote
1answer
35 views

Winforms using BackgroundWorker to cycle through Datatable

Hi! Please could you give me your thoughts on the following (especially if its advisable or not to do so)... Basically, I can successfully import CSV data into a datatable and th …
2
votes
5answers
85 views

How to stop BackgroundWorker on Form’s Closing event?

I have a form that spawns a BackgroundWorker, that should update form's own textbox (on main thread), hence Invoke((Action) (...)); call. If in HandleClosingEvent I just do bgWorke …
0
votes
5answers
2k views

C# Can I add values to a listbox with a backgroundwork thread?

Hi I want my backgroundworker to add items to a list box, it appears to do so when debugging but the listbox doesn't show the values. I suspect this is something to do with adding …
0
votes
2answers
49 views

Throwing exceptions in callback method for Timers

I was unable to find an answer to this question anywhere... What happens with the exceptions thrown in the callback method for System.Threading.Timer, (or in the event handler for …
0
votes
3answers
82 views

Background Worker Updates a ProgressBar partially or not all Then Bombs Out !!!

Hi guys, A while ago I asked for some help about setting up a progress bar to show to the user how much progress has been made on the given set of files and folders. See here: F …
0
votes
0answers
9 views

Fail to insert DataGridViewCol in DGV from another thread

Here's my problem. I have 2 DataGridViews each on its own Tab. DGV2 (has at this moment no columns) is to be filled acc. to SelectedRow (ID) of the DGV1. I use tab_selectedindexcha …
0
votes
2answers
44 views

background worker class cancellation, sets cancellation pending flag but doesn’t quit

I call obackgroundworker.CancelAsync(); on a background worker currently doing some work in another thread and then using while (obackgroundworker.IsBusy == true) to wai …
2
votes
2answers
58 views

Changing the property of a control from a BackgroundWorker C#

I'm trying to load a bunch of files from a directory, and while it's loading, display a progress bar status, as well as a label that displays which file is being processed. privat …
4
votes
8answers
101 views

Does closing the application stops all active BackgroundWorkers?

Simple question, to repeat the title: Does closing the WinForms application stops all active BackgroundWorkers? (I know that many StackOverflow's threads talk about BackgroundWor …
1
vote
4answers
75 views

BackgroundWorker dies unexpectedly

Hi I have the following code: public Mainform() { ... // scheduler scheduler.DoWork += new System.ComponentModel.DoWorkEventHandler(scheduler_DoWork); sch …
4
votes
3answers
193 views

WinForms UI responsiveness when dealing with “heavy” data.

I'm modifying a windows form to allow data to be loaded in the background while the UI remains responsive. The data takes noticeable time to both retrieve and bind. Ideally, I wo …

1 2 3 4 5 10 next
15 30 50 per page