Hi,
I have develop a program in C# windows Application & now The problem is My Login form is designed on form4 I want to run form4 first after that i want to run the other forms but when i run the program form1 is run automatically. acually in coding I have run the form1 after form4
I use the code for
In form4
form1 fr1 = new form1();
fr1.show();
Why it happends what is the solution for this problem
tahnk u
virusisfound