Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HI,

I have two forms one is form1.cs and another one is form2.cs.

My doubts are,

i just want to run the form2.cs in start up page but it was working fine for the below code if i suppossed to i mentioned the main method,

the code is:
C#
static void Main()
{
  Application.EnableVisualStyles();
  Application.SetCompatibleTextRenderingDefault(false);
  //Application.Run(new Form1());
  Application.Run(new Form2());
}

and other thing is when i give the below code, the form comes two times that is form1.cs and form2.cs,

the code is:
C#
static void Main()
{
  Application.EnableVisualStyles();
  Application.SetCompatibleTextRenderingDefault(false);
  Application.Run(new Form1());
  Application.Run(new Form2());
}

so finally my question is how can i set start up page in the properties option(solution explorer)

i need to set start up page only in the windows application properties page.

please give me a drop of solution for this question.

thanks in advance
Posted
Updated 30-Jan-13 0:47am
v2

Ideally you should have a MDI form as Entry point of your application.
Please refer link: Link
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900