// Show the student details table with the current registered students details private void newRegistrationToolStripMenuItem_Click(object sender, EventArgs e) { StudentDetails sd = new StudentDetails(); sd.Show(); }
public StudentRegistration(StudentDetails stdDetails, int ID) { InitializeComponent(); this.stdDetails = stdDetails; idValueLabel.Text = ID.ToString(); }