I\'m writing a WindowsForms application in MS Visual C#, and I need two forms to be able to reference each other. As I test, I created two buttons on Form1 -- one button tha
You're creating a new instance of each form as you create the other form.
Instead, you should make one of the forms take an instance its parent form as a parameter.