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 7015221
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:37:25+00:00 2026-05-27T22:37:25+00:00

I am quite new when it comes to threading but I am getting an

  • 0

I am quite new when it comes to threading but I am getting an InvalidOperationException when using the following code. I understand that it is trying to access importFileGridView but this was created by the UI thread which creates the exception. My question is, how do I resolve this? Is it possible for GetAllImports to have a return type? How do I access temp from my UI thread?

ThreadPool.QueueUserWorkItem(new WaitCallback(GetAllImports), null);

private void GetAllImports(object x)
    {
        DataSet temp = EngineBllUtility.GetAllImportFiles(connectionString);
        if (temp != null)
            importFileGridView.DataSource = temp.Tables[0];
        else
            MessageBox.Show("There were no results. Please try a different search", "Unsuccessful", MessageBoxButtons.OK, MessageBoxIcon.Information);
    }
  • 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-27T22:37:26+00:00Added an answer on May 27, 2026 at 10:37 pm

    You can’t change a user interface component on a background thread. In this case, setting the DataSource must be done on the UI thread.

    You can handle this via Control.Invoke or Control.BeginInvoke, like so:

    private void GetAllImports(object x)
    {
        DataSet temp = EngineBllUtility.GetAllImportFiles(connectionString);
        if (temp != null)
        {
            // Use Control.Invoke to push this onto the UI thread
            importFileGridView.Invoke((Action) 
                () => 
                {
                    importFileGridView.DataSource = temp.Tables[0];
                });
        }
        else
            MessageBox.Show("There were no results. Please try a different search", "Unsuccessful", MessageBoxButtons.OK, MessageBoxIcon.Information);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use MVVM in Silverlight, but I am quite new to
I'm quite new to vim. I'm trying tuning vim up by following a book
How do I prevent SQL injection when it comes to ColdFusion? I'm quite new
Quite new to maven here so let me explain first what I am trying
I am quite new to C++ and am trying to work out how to
I'm quite new with PHP/Jquery and I am trying to do an update password
I'm quite new to Android programming but familiar with C/C++ and Linux enough to
I'm fairly proficient in HTML/CSS, but very new when it comes to the likes
I'm still quite new to NHibernate and most of it I'm getting to grips
This has to be trivial, but being quite new to TDD, I can't figure

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.