Hi, I'm an ASP.NET developer who has been assigned a small Winforms application task. I'm doing the following:
- I have a form with login fields and button
- After successful login I want to provide the main function of the app.
- At the moment I'm using two forms - one for login (form1) and one for the main function (form2) - making form2 visible and form1 invisible when I swap between them.
I feel sure I should be doing everything on the single form. What is the normal / best approach for doing this?
Thanks, Richard.