I'm trying to have 2 forms on start up, one is a log in form that can be pushed aside or closed, I just need it to open ontop of my main menu. I've tried this:
public partial class MainMenu : Form
{
public MainMenu()
{
InitializeComponent();
Log_In login = new Log_In();
login.Show();
login.Activate();
}
But that open the Log_In form underneith my main menu. How would I go about making it pop up on top of my main menu as soon as the program starts? Thanks!