1 year ago
#257438

BIBIN LOUIS
How to make multiple forms to run after each action? The predecesor form is closed and new form is reached out to perform different actions?
I have form 1 as the initial form in Application.Run()
. What should I do to run multiple forms, each closing after the double_click()
action?
This Function is used in Main() method please refer. When the frm1 closes the execution also closes.
Application.Run(new frm1());
then
// frm1 closes
Application.Run(new frm2());
after that
//form 2 also closes
Application.Run(new frm3());
How to make this functionality work?
c#
winforms
datagridview
form-control
.net-4.8
0 Answers
Your Answer