When you create a new Windows Forms application, what’s the easiest way from dropping a button on the page, creating a click event which will open a new form.
My method requires clicking a button which will open up 9 new forms, all together, but I want to be able to position them where I want, I know the code for this, I just can’t seem to open up multiple new forms at the same time?
Button -> Click -> Open 9 new forms which must be open at the same time.
How you would do this would depend on whether the forms are all the same or not but
Using the static method ie: form1.show is not generally a good idea.
Cheers