So this is a bit different to what I've seen:
How to change text in a textbox on another form in Visual C#?
I have a form (Form1) that runs when my C# application runs. A button Form1 opens Form2. On Form2, I have another button to set the text of the textbox on Form1, to the same value as a textbox on Form2.
Using a similar approach to:
Form1 frm1 = new Form1(); frm1.TextBoxValue = "SomeValue";
Doesn't work as it opens a new form completely, but I want to change the form1 that is already open, can someone please assist?