Пример #1
0
 private void btnAgregarInstrumento_Click(object sender, EventArgs e)
 {
     if (cboInstrumentos.SelectedIndex == 0)
     {
         Instrumentos.FrmEntrevistaConFuncionarioCentroEducativo funcio = new Instrumentos.FrmEntrevistaConFuncionarioCentroEducativo();
         funcio.Show();
     }
     else
     {
         if (cboInstrumentos.SelectedIndex == 1)
         {
             Instrumentos.FrmEntrevistaPadre_Madre_Encargado enc = new Instrumentos.FrmEntrevistaPadre_Madre_Encargado();
             enc.Show();
         }
         else
         {
             if (cboInstrumentos.SelectedIndex == 2)
             {
                 Instrumentos.FrmEntrevistaEstudiante est = new Instrumentos.FrmEntrevistaEstudiante();
                 est.Show();
             }
             else
             {
                 if (cboInstrumentos.SelectedIndex == 3)
                 {
                     Instrumentos.FrmInformeVisitaAlHogar inf = new Instrumentos.FrmInformeVisitaAlHogar();
                     inf.Show();
                 }
                 else
                 {
                     Instrumentos.FrmReferenciaExterna ext = new Instrumentos.FrmReferenciaExterna();
                     ext.Show();
                 }
             }
         }
     }
 }
Пример #2
0
 private void entrevistaConFuncionarioToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Instrumentos.FrmEntrevistaConFuncionarioCentroEducativo entre = new Instrumentos.FrmEntrevistaConFuncionarioCentroEducativo();
     entre.Show();
 }