Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3279378
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:35:08+00:00 2026-05-17T19:35:08+00:00

I am using background threads to run intense search processes in order to allow

  • 0

I am using background threads to run intense search processes in order to allow the UI to be fully accessible. After creating each bgw I update a datagridview which shows the different threads and current status. however once they complete, I have no way or at least I dont know of a way to update the status on the datagridview specific to each backgroundworker.

 Try
        bgw.RunWorkerAsync()
        queuelist.Enqueue(bgw)
        If Not Thread.CurrentThread.Name = "Main Thread" Then
            Dim record As String() = {jobNum, clientProj & jobNum, jobStartTime,   bgw.IsBusy.ToString}
            DataGridView1.Rows.Add(record)
        End If

    Catch ex As Exception
        MessageBox.Show("An Error Occured:" & vbNewLine & ex.Message)
    End Try

this sets the datagridviewer once the threads begin, but once it ends I dont know how to update or know which thread ended. I tried putting them into a queue but I cannot identify a specific worker when i dequeue.

any ideas

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T19:35:09+00:00Added an answer on May 17, 2026 at 7:35 pm

    I really don’t understand why you’d make implementation details like background workers visible on the user interface. Well, some code. It doesn’t make sense to use a Queue, threads do not end in any predictable order. Let’s do a list:

    Dim workerList As New List(Of BackgroundWorker)
    

    You want to take advantage of the RunWorkerCompleted event raised by BGW to know when the job is done. So use AddHandler:

        Dim bgw As New BackgroundWorker
        AddHandler bgw, AddressOf DoSomeWork
        AddHandler bgw, AddressOf WorkDone
        workerList.Add(bgw)
        '' Do something with the grid
        ''...
        bgw.RunWorkerAsync()
    

    And the event handler can look like this:

    Private Sub WorkDone(ByVal sender As Object, ByVal e As RunWorkerCompletedEventArgs)
        If e.Error IsNot Nothing Then Throw e.Error
        Dim bgw = DirectCast(sender, BackgroundWorker)
        workerList.Remove(bgw)
        '' Do something with the grid
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've a legacy application using Asp.Net WebSite (winforms...) and I need run a background
I'm trying to work out how to run a process in a background thread
I am building up a multi-threaded application where I spawn three threads when application
I want to run a simple Apache Camel example that copies files from one
I have a GUI app which connects to a sensor, gathers data and processes
My C# application is such that a background worker is being used to wait
My app takes a loooong list of urls, and split it in X (where
Our scenario is a network scanner. It connects to a set of hosts and
I have a custom object that implements INotifyPropertyChanged. I have a collection of these
I am trying to get around a Cross Thread Exception, Invalid Object Exception. Here

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.