You can set a breakpoint at load event of your Form2 if you are opening it from Form1.
If you are not opening Form2 currently you should go to Program.cs and change the line below.
Application.Run(new Form9());
That basicly indicates your application will start with opening Form9, if you change this to Form2 your second form will open when you run the project.