A
Andrew Diabo
I have 2 forms in my C# project (Form1 and Form2). I called Form2
from Form1 using the following:
Form2 newform = new Form2();
Form2.ShowDialog();
How do I change properties of a control (label1) in Form1 from Form2?
Is this possible?
Thanks in advance.
Andrew
from Form1 using the following:
Form2 newform = new Form2();
Form2.ShowDialog();
How do I change properties of a control (label1) in Form1 from Form2?
Is this possible?
Thanks in advance.
Andrew