Exemplo n.º 1
0
 private void frmStudents_FormClosing( object sender, FormClosingEventArgs e )
 {
     frmSearchStudents search = new frmSearchStudents( this._data );
     search.Show();
 }
Exemplo n.º 2
0
 private void btnFichasStudents_Click( object sender, EventArgs e )
 {
     Layouts.Fichas.Students.frmSearchStudents search = new Layouts.Fichas.Students.frmSearchStudents( this._data );
     search.Show();
     this.Close();
 }