How one method to open two forms at the same time?
void ShowDoubleForm() {form1.Show(); form2.Show()}
It is enough to create both forms and open them:
private void button1_Click(object sender, EventArgs e) { Form2 f2 = new Form2(); Form3 f3 = new Form3(); f2.Show(); f3.Show(); }
Source: https://ru.stackoverflow.com/questions/608491/More articles:Streams. Waiting for execution of c ++ threadsHow to open a form if the form is in another folderHow to display system.pagenavigation over the directory?Error in Checkio or in code?Java Properties problem with reading Russian lettersIf a file is opened in the class constructor, is it necessary to close it?What is the most effective way to implement anchoring an article in a php + mysqli bundleCode-review program for working with notesHow to write js script in servletthreads_report what can these errors mean?All Articles
void ShowDoubleForm() {form1.Show(); form2.Show()}void ShowDoubleForm() {form1.Show(); form2.Show()}- Sublihim