find form instance from other class
You can get a reference to any of the application's currently open forms by using the Application.OpenForms
property. Forms
in this FormCollection
can be accessed by index like so:
var form1 = Application.OpenForms[0];
or by the form's Name
property like so:
Form form1 = Application.OpenForms["Form1"];
Hope this helps.