When my program runs it closes form1 after a few seconds. Depending on what happened during form1's lifespan I may want to open form2. Normally I would just make a new instance of form2 and use the show() method. But form2 is then a child of form1 and then also closes. Does any body have an idea on how to get this to work? thanks.
|
|
You can open a new form in your application's bootstrapper (main method). You will want to call Application.Run(yourFormHere). You would have two of these in a row in the order you want to show the forms. You could store the results of the first form in some static location and check that before showing the second form. |
||
|
|
For multi-form applications I tend to have one form that is the "main" form, which opens up the sub forms. The main form is the one that gets started with Application.Run(...) In your case you might want to have a blank form that can be the controller, and have Application.Run call that. That form can then start instantiate your Form1 and run it. e.g.
This is just "psudo-C#" code, but hopefully the concept makes sense Then your main function can just run "ControlForm" Its just a concept you might want to try |
||
|
|
|
|
I ended up doing this:
|
||
|
|
|
I don't think that your problem is that the |
||
|
|
