I am new in .net.I need help.
I have 2 forms one form has logic and second form has login section.I want to run second (login) form first.I am doing it by writing code Application.Run(new Sign_in()); in first form constructor.And my second form is appearing first but when i just closed the Login form after clicking on Closed icon (RED Cross icon) my first logic data form is being load.I don’t want to load my first form without login in any how condition.
what i should to do ?
Thanks
I am new in .net.I need help. I have 2 forms one form has
Share
Instead of calling
LoginForm.Close(), callLogicForm.Show()and thenLoginForm.Hide()