Example #1
0
        //when remove button is pressed we would like to remove selected student therefore the Remove Student form is shown
        private void btnRemoveSelected_Click(object sender, EventArgs e)
        {
            Form3Remove RemoveStudent = new Form3Remove();

            RemoveStudent.ShowDialog();
            updateDdlist();
        }
 //when remove button is pressed we would like to remove selected student therefore the Remove Student form is shown
 private void btnRemoveSelected_Click(object sender, EventArgs e)
 {
     Form3Remove RemoveStudent = new Form3Remove();
     RemoveStudent.ShowDialog();
     updateDdlist();
 }