I have 2 forms namely: FormA and FormB.
Assume FormA is currently visible and I need to pass data to FormB.
I can do that easily by using constructors ,
FormB PassToThisForm = new FormB(int Data);
PassToThisForm.ShowDialog();
Now, my problem is how to get some data from FormB while FormA is CURRENTLY VISIBLE?
I can't to this :
FormA main = new FormA();
since it will create a new instance of FormA... any idea?
Thanks in advance ^_^