Updating informating using multiple forms

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • youngblood0494
    New Member
    • Apr 2010
    • 1

    Updating informating using multiple forms

    Basically, i have two forms.
    On my first form there is a button that opens up the second form.

    Now when i get to the second form, there is another button. I want it so when i click that button, it will change the text in a textbox i have in the first form.

    How can i do this?
  • Monomachus
    Recognized Expert New Member
    • Apr 2008
    • 127

    #2
    You need to study a little bit delegates. Check out this link.
    Using a delegate to pass data between two forms.
    Also pay attention to changing UI data from another thread. For this you'll need to use BeginInvoke.
    Read section 6 from this article or the whole article to understand it in more details. WinForms UI Thread Invokes: An In-Depth Review of Invoke/BeginInvoke/InvokeRequred

    Comment

    • tlhintoq
      Recognized Expert Specialist
      • Mar 2008
      • 3532

      #3
      Originally posted by OriginalPoster
      How do I get my Form2 to react to something on my Form1?
      How do I make my Form1 control something on my Form2?
      Although you can have Form1 directly access items on Form2 it isn't the recommended way to go. It ties the two forms tightly to each other. If a change is made in Form2 such as removing one of the controls, then code in Form1 breaks.
      It is better to Form1 raise an event, and have Form2 contain its own code for how to react to this. This places responsibility for Form2 within Form2, and Form1 within Form1.
      It keeps Form1 blissfully ignorant of Form2 - and a logging component - and a progress component, and a dozen other little black boxes that can be subscribed to events in Form1, all without Form1 being made responsible for directly affecting controls other than itself.
      Events tutorial (including Form to Form which is the same as class to class)
      This tutorial for a cash register does exactly that: It makes a virtual numeric keyboard.
      Bad: Directly accessing controls of one class/form from another.
      Code:
      bool IsOn = Form2.button1.IsChecked;


      Good: Use a property to get such information
      Code:
      //Form1
      bool IsOn = Form2.IsOn;
      Code:
      //Form 2
      public bool IsOn
      {
         get { return button1.Checked; }
         set { button1.Checked = value; }
      }
      It's a subtle but important difference as your applications become more complex. Using properties means your target class/form (Form2) can be changed and updated a thousand different ways yet won't negatively impact the classes that are reading from it. If you change the name of a control for example: No break in all your other classes. If your target form evolves where it needs to do 10 things when it is turned on, then the responsibility stays within Form2, and that burden on not put on Form1 and a dozen other forms that might be using Form2. The goal is to compartimentali ze the work so that Form2 is responsiblity SOLELY for Form2. From1 should only have to say "Turn on" or "Turn Off"

      Form2
      Code:
      public bool IsOn
      {
         get { return btnMeaningfulName.Checked; }
         set {
                  btnMeaningfulName.Checked = value;
                  panelDashboard.Visible = value;
                  labelStatus = value == true ? "On" : "Off";
                  btnRunNow.Enabled = value;
      }
      Now when Form1 tells Form2 to turn on, Form2 will check a box, make an entire panel visible, change its Status label to say 'On' and enable a Run Now button.

      Comment

      Working...