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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T19:03:51+00:00 2026-05-10T19:03:51+00:00

That’s it. It’s a dumb dumb (embarrassing!) question, but I’ve never used C# before,

  • 0

That’s it. It’s a dumb dumb (embarrassing!) question, but I’ve never used C# before, only C++ and I can’t seem to figure out how to access a Label on my main form from a secondary form and change the text. If anybody can let me know real quick what to do I’d be so grateful!

BTW, I should really clarify. Sorry: I’ve got two separate .cs files that each look about like below. I was using the [Designer] in VS2008 to add in the label in Form1. When I type something like Form1.label1 it doesn’t understand. The dropdown shows a list of methods and properties for Form1, but there’s only about 7, like ControlCollection, Equals, MouseButtons, and a couple others… I can publicly define a variable in Form1 and that shows, but I don’t know how to access the label…

namespace AnotherProgram {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }     } } 
  • 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-10T19:03:52+00:00Added an answer on May 10, 2026 at 7:03 pm

    You’ll need a reference to the instance of Form1 – for example, if it’s Form1 which is constructing Form2, you might pass this in as a constructor parameter.

    Then you’ll need to either expose the label of Form1 via a property (or – ick! – a non-private field) or write a method/property which will set the text of the label. For example:

    public class Form1 : Form  {     private Label label;      // Construction etc as normal      public string LabelText     {          get { return label.Text; }          set { label.Text = value; }     }      public Form2 CreateForm2()     {         return new Form2(this);     } }  public class Form2 : Form {     private Form1 form1;      public Form2(Form1 form1)     {         this.form1 = form1;         // Normal construction     }      public void SayHello()     {         form1.LabelText = 'Hello';     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You should be able to import an existing project into… May 12, 2026 at 8:29 am
  • Editorial Team
    Editorial Team added an answer import Queue class IndexableQueue(Queue): def __getitem__(self, index): with self.mutex: return… May 12, 2026 at 8:29 am
  • Editorial Team
    Editorial Team added an answer Imports are just syntactic sugar. All they do is let… May 12, 2026 at 8:29 am

Related Questions

Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
I am currently running into a problem where an element is coming back from
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
That is, I'd like to have a tuple of values. The use case on
That's it. If you want to document a function or a class, you put

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.