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

  • Home
  • SEARCH
  • 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 131059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:02:45+00:00 2026-05-11T06:02:45+00:00

Consider: namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() {

  • 0

Consider:

namespace WindowsApplication1 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }          private void button1_Click(object sender, EventArgs e)         {             //int[] val = { 0, 0};             int val;             if (textBox1.Text == '')             {                 MessageBox.Show('Input any no');             }             else             {                 val = Convert.ToInt32(textBox1.Text);                 Thread ot1 = new Thread(new ParameterizedThreadStart(SumData));                 ot1.Start(val);             }         }          private static void ReadData(object state)         {             System.Windows.Forms.Application.Run();         }          void setTextboxText(int result)         {             if (this.InvokeRequired)             {                 this.Invoke(new IntDelegate(SetTextboxTextSafe), new object[] { result });             }             else             {                 SetTextboxTextSafe(result);             }         }          void SetTextboxTextSafe(int result)         {             label1.Text = result.ToString();         }          private static void SumData(object state)         {             int result;             //int[] icount = (int[])state;             int icount = (int)state;              for (int i = icount; i > 0; i--)             {                 result += i;                 System.Threading.Thread.Sleep(1000);             }             setTextboxText(result);         }          delegate void IntDelegate(int result);          private void button2_Click(object sender, EventArgs e)         {             Application.Exit();         }     } } 

Why is this error occurring?

An object reference is required for the nonstatic field, method, or property ‘WindowsApplication1.Form1.setTextboxText(int)

  • 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. 2026-05-11T06:02:45+00:00Added an answer on May 11, 2026 at 6:02 am

    It looks like you are calling a non static member (a property or method, specifically setTextboxText) from a static method (specifically SumData). You will need to either:

    1. If you can, make setTextboxText static:
      static void setTextboxText(int result)

    HOWEVER, in this case, setTextboxText REQUIRES access to instance variables, so cannot be static.
    Instead do:

    1. Call setTextboxText via a static singleton of Form1:
    class Form1 {     public static Form1 It;   // Singleton.      public Form1()     {         It = this;     }      private static void SumData(object state)     {         ...         It.setTextboxText(result);     } } 
    1. Create an instance of Form1 within the calling method:

      private static void SumData(object state) {     int result = 0;     //int[] icount = (int[])state;     int icount = (int)state;      for (int i = icount; i > 0; i--)     {         result += i;         System.Threading.Thread.Sleep(1000);     }     Form1 frm1 = new Form1();     frm1.setTextboxText(result); } 

      BUT that won’t do what you want, if an instance of Form1 already exists.
      Passing in an instance of Form1 would be an option also.

    2. Make the calling method a non-static instance method (of Form1):

       private void SumData(object state)  {      int result = 0;      //int[] icount = (int[])state;      int icount = (int)state;       for (int i = icount; i > 0; i--)      {          result += i;          System.Threading.Thread.Sleep(1000);      }      setTextboxText(result);  } 

    More info about this error can be found on MSDN.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 306k
  • Answers 306k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You could try to access UINavigationController's viewControllers property to get… May 13, 2026 at 9:15 pm
  • Editorial Team
    Editorial Team added an answer Two things: The res folder needs to be a "source… May 13, 2026 at 9:15 pm
  • Editorial Team
    Editorial Team added an answer Does it have to be dynamic? The only way to… May 13, 2026 at 9:15 pm

Related Questions

How do restrict access to a class property to within the same namespace? Consider
Consider the following two statements: namespace foo = bar; and namespace foo { using
consider the following program: namespace NS2 { class base { }; template<typename T> int
Consider the following code: #include <stdio.h> namespace Foo { template <typename T> void foo(T

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.