private void btnAsignarCalificaciones_Click(object sender, EventArgs e) { frmNotas Notas = new frmNotas((clsAdministrador) usuario,null); this.Visible = false; Notas.ShowDialog(); this.Visible = true; }
private void btnAsignarCalificaciones_Click(object sender, EventArgs e) { frmNotas Notas = new frmNotas(null, (clsProfesor)usuario); this.Visible = false; Notas.ShowDialog(); this.Visible = true; }
private void notasToolStripMenuItem_Click(object sender, EventArgs e) { frmNotas formulario = new frmNotas(); formulario.Show(); }