예제 #1
0
        private void btnLogin_Click(object sender, EventArgs e)
        {
            if (txtUser.Text == "doctor" && txtPass.Text == "doctor1")
            {
                this.Hide();//If username and password match, open dotor form and close login form
                frmDoctor doctor = new frmDoctor();
                doctor.Show();
            }

            else if (txtUser.Text == "manager" && txtPass.Text == "manager1")
            {
                this.Hide();//If username and password match, open manager form and close login form
                frmManager manager = new frmManager();
                manager.Show();
            }

            else if (txtUser.Text == "receptionist" && txtPass.Text == "receptionist1")
            {
                this.Hide();//If username and password match, open receptionist form and close login form
                frmReception reception = new frmReception();
                reception.Show();
            }

            else
            {
                MessageBox.Show("Please enter a valid username and password to login");//Otherwise, show this message
            }
        }
예제 #2
0
        private void btnBack_Click(object sender, EventArgs e)
        {
            this.Hide();
            frmReception rec = new frmReception();//Close this form and open the reception form

            rec.Show();
        }