Application.Run(new Form1());
Application.Run(new Form2());
When you write like this.
Then Till Form1, is open, it will not execute second line,
that’s why you can see that Form2 Is taking too much time to Load.
Once Form1 is closed, then it will start to run Form2.