static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
form1 frm1 = new form1();
Application.Run(frm1);
form2 frm2 = new form2();
Application.Run(frm2);
frm1.Close();
}
Why doesn't form2 show?
Loading
Suthish NairPosted Mar 26, 2011, 4:02 PM
VulpesPosted Mar 26, 2011, 9:51 AM
Sam HobbsPosted Mar 26, 2011, 12:35 AM
Suthish NairPosted Mar 26, 2011, 12:26 AM
Am not sure what you trying for, If want to run the Form2 then, might this a way..
Sam HobbsPosted Mar 25, 2011, 10:56 PM