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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:37:40+00:00 2026-05-24T00:37:40+00:00

I am studying parallelism and would like to know which way do you recommend

  • 0

I am studying parallelism and would like to know which way do you recommend for me to access other thead elements, for example, imagima I’ll fill a combobox with some names, query the database I would do in parallel but I could not do a combobox.add (result) from within the task, which way do you recommend me?

a simple example to understand my question:

 private void button1_Click (object sender, EventArgs e)
         {
             Task task = new Task (new Action (Count));
             task.Start ();
         }


         void Count ()
         {
             for (int i = 0; i <99; i + +)
             {
                 Thread.Sleep (1);
                 progressBar1.Value = i;
             }
         }

time to pass the value for the progressbar result in error

  • 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-24T00:37:41+00:00Added an answer on May 24, 2026 at 12:37 am

    You cannot access controls on another thread directly. You must invoke them first. Read this article: http://msdn.microsoft.com/en-us/library/ms171728.aspx

    This is about what is would look like if you took the article and translated it for your own use: (NOT TESTED)

            delegate void SetProgressBarCallback();
    
            private void SetProgressBar()
            {
                // InvokeRequired required compares the thread ID of the
                // calling thread to the thread ID of the creating thread.
                // If these threads are different, it returns true.
                if (this.progressBar1.InvokeRequired)
                {   
                    SetProgressBarCallback d = new SettProgressBarCallback(SetProgressBar);
                    this.Invoke(d);         
                }
                else
                {
                    for(int i=0; i<99; i++)
                    {
                         Thread.Sleep(1);
                         progressBar1.Value = i;
                     }
                }
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After studying the Perl require docs and other links like this on Stackoverflow I'm
Studying vision, I would like to play with the Microsoft Kinect. Can I use
I'm studying php and now I would learn codeigniter framework. I alread know how
After studying TCP/UDP difference all week, I just can't decide which to use. I
While studying C# in ASP.net I have trouble understanding several classes. In which scenario
I am studying COM so there're some basic questions puzzling me... I know that
I'm studying Python, after a lot of PHP experience, and it would be handy
I'm studying multicore parallelism in F#. I have to admit that immutability really helps
Studying JSR-299, I read section 5.1 of the Weld reference which explains how scopes
I studying NSCharacterset class. NSString and NSCharacterset look like similar class. Who can explain

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.