Can anyone tell me if it is possible to open up a windows form, e.g "Form1", from a user control.
I thought this would be easy but can't figure it out.
Printable View
Can anyone tell me if it is possible to open up a windows form, e.g "Form1", from a user control.
I thought this would be easy but can't figure it out.
You mean this?
Code:Form2 Fr = new Form2();
Fr.Show();