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(); } } } } }
private void informeDeVisitaAlHogarToolStripMenuItem_Click(object sender, EventArgs e) { Instrumentos.FrmInformeVisitaAlHogar entre = new Instrumentos.FrmInformeVisitaAlHogar(); entre.Show(); }
private void visitaAlHogarToolStripMenuItem_Click(object sender, EventArgs e) { Instrumentos.FrmInformeVisitaAlHogar visita = new Instrumentos.FrmInformeVisitaAlHogar(); visita.Show(); }