Ejemplo n.º 1
0
        private void tsmiInscripcionACurso_Click(object sender, EventArgs e)
        {
            Inscripciones form = new Inscripciones(PersonaActual);

            form.MdiParent = this;
            form.Show();
        }
Ejemplo n.º 2
0
 private void btnInscribir_Click(object sender, EventArgs e)
 {
     try
     {
         int           ID     = ((Persona)this.dgvAlumnos.SelectedRows[0].DataBoundItem).ID;
         Persona       alumno = Logic.GetOne(ID);
         Inscripciones form   = new Inscripciones(alumno, UsuarioAdministrador);
         form.ShowDialog();
         this.Listar();
     }
     catch (Exception ex)
     {
         this.Notificar("Error", ex.Message, MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Ejemplo n.º 3
0
 private void mnuInscripcionCurso_Click(object sender, EventArgs e)
 {
     Inscripciones ins = new Inscripciones(_UsuarioActual);
     ins.MdiParent = this;
     ins.Show();
 }
Ejemplo n.º 4
0
        private void btnInscripciones_Click(object sender, EventArgs e)
        {
            Inscripciones inscripciones = new Inscripciones(UsuarioActual);

            inscripciones.ShowDialog();
        }
Ejemplo n.º 5
0
        public void Ejecutar(Materia materia)
        {
            Inscripciones insForm = new Inscripciones(materia.ID);

            insForm.ShowDialog();
        }
Ejemplo n.º 6
0
 private void cursoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Inscripciones ins = new Inscripciones(UsuarioLogeado);
     ins.MdiParent = this;
     ins.Show();
 }
Ejemplo n.º 7
0
 private void btnInscripcion_Click(object sender, EventArgs e)
 {
     Inscripciones ins = new Inscripciones(_UsuarioActual);
     ins.ShowDialog();
 }
Ejemplo n.º 8
0
        private void tsbInscripciones_Click(object sender, EventArgs e)
        {
            Inscripciones ins = new Inscripciones(PerAct);

            ins.Show();
        }