1
vote
Windows Forms: create the main application after login, which form to run?
You can call your authentication form before starting up your main application form inside of Program.cs (default name), such as:
static void Main()
{
Form1 f1 = new …
