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

            form.MdiParent = this;
            form.Show();
        }
Ejemplo n.º 2
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            ReportePlanes rpt = new ReportePlanes();

            rpt.Site = this.Site;
            return(rpt);
        }
Ejemplo n.º 3
0
        private void reporteDePlanesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ReportePlanes formreportePlanes = new ReportePlanes();

            formreportePlanes.ShowDialog();
        }
Ejemplo n.º 4
0
 private void btnAceptar_Click(object sender, EventArgs e)
 {
     if (Validar())
     {
         if (Tipo == "Curso")
         {
             Reporte reporte = new Reporte();
             reporte.IDCurso = listcursos[cmbIDCurso.SelectedIndex].ID;
             reporte.IDDocente = listprofesores[cmbIDProfesor.SelectedIndex].ID;
             reporte.IDPlan = listplanes[cmbIDPlan.SelectedIndex].ID;
             reporte.IDEspecialidad = listplanes[cmbIDPlan.SelectedIndex].IDEspecialidad;
             reporte.IDComision = listcursos[cmbIDCurso.SelectedIndex].IDComision;
             reporte.IDMateria = listcursos[cmbIDCurso.SelectedIndex].IDMateria;
             ReporteCursos rep = new ReporteCursos(reporte);
             rep.Show();
         }
         else
         {
             Reporte reporte = new Reporte();
             reporte.IDPlan = listplanes[cmbIDPlan.SelectedIndex].ID;
             reporte.IDEspecialidad = listplanes[cmbIDPlan.SelectedIndex].IDEspecialidad;
             ReportePlanes rep = new ReportePlanes(reporte);
             rep.Show();
         }
     }
 }