Tagged Questions
0
votes
2answers
31 views
Update Text Box Properly when Cross-threading in Visual Basic (VS 2012 V11)
Here is my question in short: How do I use the BackGroundWorker (or InvokeRequired method) to make thread-safe calls to append text to a text box?
Here is my question in with much detail and ...
0
votes
3answers
38 views
Removing items from listbox using backgroundworker
I want to delete all the items of a listbox that does NOT contain "mysite" and here's my code that works fine without backgroundworker.
Do Work Event:
Dim relevantSite As Integer = 0
Do Until ...
0
votes
1answer
30 views
Cross threading exception avoided but GUI isn't updating
I have a thread which needs to update a Windows form. Using the code from here:
http://www.dreamincode.net/forums/blog/143/entry-2337-handling-the-dreaded-cross-thread-exception/
to avoid ...
1
vote
1answer
92 views
Can I use backgroundWorker after calling hide method in VB.NET
I have a simple question about Background worker. I have never used it so I have no Idea about how it works.
I am using VB.NET express 2010.
All I want to do a database monitoring in a form's ...
0
votes
0answers
53 views
Using BackgroundWorker with multiple classes
I have a main form that uses functions in 7 different classes to process text files according to user-defined selections.
When the processing takes place, a second form pops up to show the user a ...
0
votes
1answer
122 views
How to use threading for Loading Bar WinForm?
I am wanting to have a an infinite loop progress bar, just to give the user something to stare at during long load times. Currently the user will select a SQL query to execute, and results get ...
0
votes
2answers
199 views
add subitems to a listview
I'm using a backgroundworker to populate a listview, but i want to add subitems also. Can anyone help me out?
Public Class Form1
Private Sub bgw_DoWork(sender As Object, e As ...
0
votes
2answers
371 views
VB.Net - Updating progress bar from background worker
I am trying to build a log parser in VB.Net that will take IIS logs and insert them into a database. Having never really made a full out desktop application, I'm hitting a number of stumbling blocks, ...
1
vote
1answer
150 views
Multiple Forms instance with backgroundworker
I have 2 forms: "main" and "panel".
Main form contains 2 buttons: "bt_panel1" and "bt_panel2".
The each button's function is:
Private Sub bt_panel1_Click(sender As System.Object, e As ...
0
votes
1answer
134 views
Disposing background worker does not work
I have a background worker that calls a form, holding a gif animation. The purpose is to display the animation while process is underway but it should close when the process is done. But it does not ...
0
votes
1answer
562 views
OpenFileDialog Filter Option Not Working
Since I put my OpenFileDialog into a BackgroundWorker, the Filter option no longer works.
I use to have this as a button click and it worked fine, with the exception of what every file I opened it ...
0
votes
2answers
250 views
VB.NET background worker 60 seconds timeout
During the startup of my app I am doing a long database upgrade.
Before that starts, I show a form that has a progressbar so that the user knows that something is going on and he should wait.
To not ...
0
votes
1answer
615 views
This BackgroundWorker is currently busy and cannot run multiple tasks concurrently
I am confused. Yes i understand I can't use the same backgroundworker to do two tasks at the same time. What I do not understand is this. Here is my code (all this thing does is set the ...
-2
votes
1answer
170 views
Form don't wait for thread finish and hangs my app
This is my app, you can see 3 buttons, start button enabled, pause disabled and stop disabled.
The problem is I have a separated thread in my form to make a "process" (and to print the information ...
0
votes
2answers
182 views
how to put this function inside a separated thread
I need a little (or big) help with my form, I need to use all inside the "organize function" region in a separated thread
I press a button in my form "Start button" region to call the first sub of ...
8
votes
6answers
4k views
VB.NET progressbar backgroundworker
When my application starts, and it has just been upgraded, I am doing a local database update (sqlite).
It is like that:
The user starts my app, and then I start the upgrade process.
During this ...
0
votes
1answer
348 views
accessing datatable and variables inside Backgroundworker
in my program i use a Datatable which is filled at loading of form. And i use backgroundworker to do some network operations. Inside doWork() of backgroundworker i need data from datatable and also ...
2
votes
1answer
180 views
Update chart using BackgroundWorker ProgressChanged Event?
I have a form that displays a chart and a progress bar. Some complex calculations are undertaken by a BackgroundWorker component so that the form remains responsive. The result is appended to a list ...
0
votes
0answers
151 views
BSOD when using BackgroundWorker
I posted a very similar question a few weeks ago, but I did not give enough details, and I was pulled away to other tasks and couldn't get to it. I hope to remedy that here.
I have a form with a ...
1
vote
1answer
675 views
Multithreading for a progressbar and code locations (vb.net)?
I am stuck updating a progressbar from a different thread.
I did get it running in the simplest way, but then cleaning the code gets me stuck.
My testing code looks like all the examples on the web ...
4
votes
1answer
1k views
C# / VB.Net Task vs Thread vs BackgroundWorker
I have "Googled" but still confused with Task, Thread, and Background Worker.....
Is "Task is a high level API that running on current thread" correct ?
If 1 is correct, why I need to use invoke to ...
0
votes
0answers
133 views
BackGroundWorker ReportProgress for Symmetric Encryption and Hashing
I'm writing a encryption/decryption application for user input string or simply plain text. I use this class which I found and modified.
Imports System.Security.Cryptography
Imports System.IO
Imports ...
0
votes
0answers
184 views
vb.net - BackgroundWorker, models and reusable controls
I have read .NET API doc and successfully implemented BackgroundWorker in order to fill data for my control (composed by a TreeView with a recommended list based on hints parsed with regex). So far so ...
0
votes
1answer
98 views
How would I implement multithreading in this situation? Is it possible?
I have a form with a listview in it that the user can add tasks too. Then the user can click a button then the application goes through each task in the listview 1 by 1 an executes it.
These tasks ...
0
votes
1answer
848 views
Background Worker thread not ending on cancellation
I am having a little issue, I finally figured out how to add a background worker to my application now my only problem is it does not end the thread, or atleast not fast enough when I am clicking my ...
0
votes
0answers
68 views
listview.items cannot be approach because running in different thread VB.NET
I get an error saying the listview.items cannot be approached because they are running in a different thread. I use the background worker to do multithreading.
I use the backgroundworker.runasync() to ...
0
votes
0answers
90 views
backgroundworker windows app
Im trying to pass a backgroundworker to another class and report back progress to the UI but getting confused with the events. Can someone give a simple example?
My button event:
Private Sub ...
0
votes
1answer
607 views
Updating a Control using a Background Worker (VB.NET)
I have searched the site and found similiar topics, but my problem is that the explanation / solution is a bit beyond my technical understanding at the moment.
I have only just noticed a "Background ...
0
votes
2answers
276 views
Waiting for nested BackgroundWorkers to complete
I have a UI button that spawns a BackgroundWorker. This BackgroundWorker spawns several BackgroundWorkers that perform some operations. Is there a way to wait for all the inner BackgroundWorkers to ...
0
votes
3answers
5k views
VB.net 2010 backgroundworker updating form progressbar
Trying to understand background workers :)
Imports System.Threading
Imports System
Imports System.IO
Imports System.Windows.Forms
Imports System.ComponentModel
Imports System.Text.RegularExpressions
...
1
vote
1answer
267 views
BackgroundWorker – Waiting for it to finish or a timeout elapses
I have a web page which is made up of a form for data entry and a panel for displaying the results. This page is written in VB.Net and the website hosting it is in ASP.Net.
Normal usage of the page ...
0
votes
2answers
339 views
How to cancel a function which is called by a background worker?
I have a background worker which calls a function within a separate class. This process may be required to be canceled at any time via a button click from the front end. I have tried using ...
0
votes
1answer
429 views
Kill a BackgroundWorker in VB.net if thread hangs - using COM object
I have an application that interacts with third party COM objects. A method of the COM object that I call will sometimes stop responding. I created a Backgroundworker thread to call the function and I ...
1
vote
1answer
338 views
BackgroundWorker for YouTube DirectUpload in VB.NET?
I'm trying to implement a direct upload of videos on my server to YouTube. When a user adds a video, it gets copied to YouTube.
The user action of adding the video should begin the upload process, ...
0
votes
1answer
99 views
access more components using a thread
I am trying to access a few component using a thread. My form looks like this:
my source looks like this:
Private Sub btnGO_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) ...
0
votes
3answers
177 views
Why isn't BackgroundWorker.OnDoWork getting called?
I have a job object for long running operations that works like this:
Class LongRunningJob
Inherits BackgroundWorker
Protected Overrides Sub OnDoWork(ByVal e As ...
1
vote
1answer
671 views
VB.NET DataGridView load data from a background worker and SQLDataReader
Ok, I have a DataGridView that I'd like to load with data that I'm retrieving from a SQLDataReader running in a background worker as the data comes in (it's a query that takes a long time).
My goal ...
0
votes
1answer
978 views
VB.Net Properly shutdown an asynchronous socket server running on a background worker
I have a Class called SocketSvr which handles an asynchronous socket server. It is called via the BackgroundWorker from my main form. Basically, I just want it to display my socket data information ...
0
votes
1answer
169 views
Executing same BackgroundWorker several times depending on condition?
I used BackgroundWorker to solve a problem in my winforms application, I wanted to be able to cancel a long-running operation and see results live in ListBox while executing the operation. It works ...
1
vote
1answer
807 views
BackgroundWorker.ReportProgress exception if run in another module
My BackgroundWorker works perfectly in my main form frmMain. But when I run the ReportProgress method in another module, I get exception "This BackgroundWorker states that it doesn't report progress. ...
1
vote
0answers
239 views
How to call multiple subs with a BackgroundWorker
I have not yet used BackgroundWorker but believe I need to use these in my code.
My app does a lot of database work, running many SQL queries in sequence. My problem appears typical, that the main ...
1
vote
0answers
98 views
All COM events blocked after BackgroundWorker completes (within AppDomain)
I have a program that handles multiple instances of a class, each class having its own instance of a DLL COM object. In order to make sure each class uses a separate instance, I create the class with ...
1
vote
2answers
191 views
BackgroundWorker causing error when not Startup project
I have a project in VSTO/VB using a BackgroundWorker that works fine. It is a form that calls for a web page of information. The web page can take a while, so I have the form calling with the ...
0
votes
1answer
723 views
BackGroundWorker RunWorkerCompleted Event Not Called Sometimes
I'm seeing some strange behavior where the RunWorkerCompleted event for one of two threads I start isn't being called depending on how I call them. Check out the code below, and the two methods of ...
0
votes
2answers
801 views
VB.Net Winform Application based on BackgroundWorker Thread concept - UI update issue
Team,
I have build a VB.Net windows application which does uploads data into database and basically updates two controls:
1. A textbox which is constantly updated with one line per database record ...
1
vote
1answer
779 views
VBNet BackGroundWorker passing argument in RunWorkerCompleted Event
my current solution as you can see is by using shared variable within a class in order to pass a value.
on the form load of my application i called: workerSample.RunWorkerAsync
Dim finalList As ...
0
votes
1answer
403 views
Backgroundworker is very slow, how to optimize?
I have the following structure:
OLD:
frmMain (WinForm)
uscStat (UserControl with Grid)
In frmMain I'm able to make some settings and load the result of the settings via LinQ into the Grid of the ...
0
votes
1answer
654 views
VBNet How to know if background worker is already cancelled
currently, i have this code: My_BgWorkerB is the Name of my BackGround Worker
If My_BgWorkerB.IsBusy Then
If My_BgWorkerB.WorkerSupportsCancellation Then
...
0
votes
2answers
910 views
VBNet Error: Collection was modified; enumeration operation may not execute
This is what happened: on the form load of my application i created a background worker to bind collection (records from database filled in the dataset) on my control. but the problem is when the i ...
1
vote
1answer
589 views
How to I search for files recursively while updating a progress bar and returning the file List to the application from BackgroundWorker
Thanks for reading!
I am currently trying to develop an application which will backup large folders to a specified destination. To find all the files in the specified 'backup' directory I am using ...




