private void btnGo_Click(object sender, EventArgs e)
        {
            if (validInput())
            {
                this.Hide();
                if (cbLoginAs.SelectedIndex == 0)
                {
                    frmMain = new FormMain(this);

                    frmMain.Show();
                }
                else
                {
                    frmAdmin = new FormAdmin(this);
                    frmAdmin.Show();
                }
            }
        }
        private void btnGo_Click(object sender, EventArgs e)
        {

            if (validInput()) {
                this.Hide();
                if (cbLoginAs.SelectedIndex == 0)
                {
                    frmMain = new FormMain(this);

                    frmMain.Show();
                }
                else
                {
                    frmAdmin = new FormAdmin(this);
                    frmAdmin.Show();
                }
                
                
            }
        }