Good evening I'm developing a product registration application, however I need to call form2 first than form1. Could you help me with how to do this?
Good evening I'm developing a product registration application, however I need to call form2 first than form1. Could you help me with how to do this?
Go to the file Program.cs
and there you will find the following line
Application.Run(new Form1());
Switch to the form you want to use. In your case:
Application.Run(new Form2());