コード例 #1
0
ファイル: FrmPrincipal.cs プロジェクト: ezzee01/Parcial
        private void mnRecaudacionTotal_Click(object sender, EventArgs e)
        {
            FrmReportes reporte = new FrmReportes(EReportes.RecaudacionTotal, this.alumnos, this.docentes, this.noDocentes);

            reporte.ShowDialog();
        }
コード例 #2
0
ファイル: FrmPrincipal.cs プロジェクト: ezzee01/Parcial
        private void mnReportesValoresDePrueba_Click(object sender, EventArgs e)
        {
            FrmReportes reportes = new FrmReportes(EReportes.ValoresDePrueba, alumnos, docentes, noDocentes);

            reportes.ShowDialog();
        }
コード例 #3
0
ファイル: FrmPrincipal.cs プロジェクト: ezzee01/Parcial
        private void mnSueldoNoDocente_Click(object sender, EventArgs e)
        {
            FrmReportes reporte = new FrmReportes(EReportes.SueldoNoDocente, this.alumnos, this.docentes, this.noDocentes);

            reporte.ShowDialog();
        }
コード例 #4
0
ファイル: FrmPrincipal.cs プロジェクト: ezzee01/Parcial
        private void mnInformacionPadres_Click(object sender, EventArgs e)
        {
            FrmReportes reporte = new FrmReportes(EReportes.Padres, this.alumnos, this.docentes, this.noDocentes);

            reporte.ShowDialog();
        }