Hello,
I'm working on a project that once ran (the main window) becomes maximised and then another window (Form2) pops up allowing the user to login OR register.
I have created the main project and added a form (called form2) but when I try to display Form2 when Form1 loads it won't let me...
private void Form1_Load()
{
Form2.Show();
}
I don't know if I'm doing it incredibly wrong or not..
Someone help please? :)