Exemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            this.Hide();
            Coach_Attendance_List coachAttenList = new Coach_Attendance_List();

            coachAttenList.Show();
        }
Exemplo n.º 2
0
 private void pictureBox2_Click(object sender, EventArgs e)
 {
     if (labelUser.Text == "Admin")
     {
         this.Hide();
         Coach_Attendance_List coachAttenList = new Coach_Attendance_List();
         coachAttenList.Show();
     }
     else if (labelUser.Text == "Sailfish Team Leader")
     {
         this.Hide();
         Sailfish_CoachAtten sailfishCoachAtten = new Sailfish_CoachAtten();
         sailfishCoachAtten.Show();
     }
 }