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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:09:25+00:00 2026-05-28T07:09:25+00:00

I am trying to write a simple multithreaded program in C#. It has a

  • 0

I am trying to write a simple multithreaded program in C#. It has a button pressing which creates a new label on form, and then a for loop runs displaying loop value in label. So if you press button 3 times, it will create 3 threads with 3 labels on form with loop.

When I press the button once, it works fine. But when I press it more than once to create more labels, it runs into following problems:

  1. As soon as button is pressed more than once, it stops the loop in previous thread and runs loop of new thread. If it is multithreaded then it should not stop first loop.

  2. When loop of second label is finished, it gives following error

Object reference not set to an instance of an object

Here is my complete code. The line which throws error is at the end “mylabel[tcount].Text = i.ToString();”.

Screenshot of program: https://i.stack.imgur.com/4MHOP.png

Screenshot of code https://i.stack.imgur.com/S0tQ0.png

namespace WindowsFormsApplication2{
    public partial class Form1 : Form{
        public Form1(){
            InitializeComponent();
        }

        private int tcount = 0;
        private int y_point = 0;

        Thread[] threads = new Thread[5];
        Label[] mylabel = new Label[5];

        private void button1_Click(object sender, EventArgs e){
            threads[tcount] = new Thread(new ThreadStart(work));
            threads[tcount].Start();
        }

        private void work(){
            if (this.InvokeRequired){
                this.Invoke(new MethodInvoker(delegate{
                    mylabel[tcount] = new Label();
                    mylabel[tcount].Text = "label" + tcount;
                    mylabel[tcount].Location = new System.Drawing.Point(0, y_point + 15);
                    y_point += 25;

                    this.Controls.Add(mylabel[tcount]);
                    for (int i = 0; i < 10000; i++){
                        mylabel[tcount].Text = i.ToString();
                        Application.DoEvents();
                    }
                }));
            }
            tcount++;
        }
        }
    }
  • 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-28T07:09:25+00:00Added an answer on May 28, 2026 at 7:09 am

    The problem is the scope of tcount, as all threads acces the same instance of it, so as soon as the second thread starts the first thread also wirtes into the second label.

    Also you invoke your whole worker method which will let it run in the UI-Thread again -> not actually multithreaded…

    Your worker method should look something like this:

    private void work()
    {
        int tIndex = tCount; //store the index of this thread
        tcount++;
        mylabel[tIndex] = new Label();
        mylabel[tIndex].Text = "label" + tcount;
        mylabel[tIndex].Location = new System.Drawing.Point(0, y_point + 15);
        y_point += 25;
    
        Invoke((MethodInvoker)delegate() { this.Controls.Add(mylabel[tIndex]); });
    
        for (int i = 0; i < 10000; i++)
        {
            //doWork
            Invoke((MethodInvoker)delegate() { mylabel[tIndex].Text = i.ToString(); });
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to write simple program using ONLY for loop ( if then
Im trying to write a simple sample program which checks for any new mail
I'm trying to write a simple program in VC++ which will just initialize the
i was trying to write a simple multithreaded program. It is dumping the core.
I'm trying to write a simple WPF app that has two ellipses, joined by
I am trying to write a simple program to open a socket channel to
I am trying to write a simple for in JS which uses an element
I am trying to write a simple program that lets me overlay a dot
I'm trying to write a simple script around Lame to customize the program for
I'm trying to write a simple server-client program, but I have a problem: I

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.