コード例 #1
0
ファイル: EstudianteReport.cs プロジェクト: Steven112/Library
        private void EstudiantescrystalReportViewer1_Load(object sender, EventArgs e)
        {
            EstudentReport reporteEstudiantes = new EstudentReport();

            reporteEstudiantes.SetDataSource(reporte);

            EstudiantescrystalReportViewer1.ReportSource = reporteEstudiantes;
            EstudiantescrystalReportViewer1.Refresh();
        }
コード例 #2
0
ファイル: EstudianteReport.cs プロジェクト: Steven112/Library
        public EstudianteReport(List <Estudiante> estudiantes)
        {
            this.reporte = estudiantes;
            InitializeComponent();
            EstudentReport reporteEstudiantes = new EstudentReport();

            reporteEstudiantes.SetDataSource(reporte);

            EstudiantescrystalReportViewer1.ReportSource = reporteEstudiantes;
            EstudiantescrystalReportViewer1.Refresh();
        }