Ejemplo n.º 1
0
        private void btnPayment_Click(object sender, EventArgs e)
        {
            StudentPaymentForm form = new StudentPaymentForm(StaffId, permission);

            form.Show();
            this.Close();
        }
Ejemplo n.º 2
0
 private void btnSubmit_Click(object sender, EventArgs e)
 {
     if (cbStudent.Items[0] != SportRegistrationSystem.lblClearedPayment)
     {
         StudentPaymentForm form = new StudentPaymentForm(staffId, passedPermission, cbStudent.Text);
         form.Show();
         Close();
     }
 }
 private void btnSubmit_Click(object sender, EventArgs e)
 {
     if (cbStudent.Items[0] != SportRegistrationSystem.lblClearedPayment)
     {
         StudentPaymentForm form = new StudentPaymentForm(staffId, passedPermission, cbStudent.Text);
         form.Show();
         Close();
     }
 }
Ejemplo n.º 4
0
 private void btnPayment_Click(object sender, EventArgs e)
 {
     StudentPaymentForm form = new StudentPaymentForm(StaffId, permission);
     form.Show();
     this.Close();
 }