CrystalReport and Subreport ?
-
I have a situation where i need to create a Crystalreport with a subreport. I don't know is possible on vb.net.? the situation is : Have 3 tables : Students Finance Score Each student have sone registration on table1 and some registration on table2. (the tables are related) I want to display on the report : Name of student1 All the registration for this student on Finance All the registration for this student on Score ------- Name of Student2 All the registration for this student on Finance All the registration for this student on Score ---------- ....... for all the students i think to do this with report-subreport? Any idea ?
-
I have a situation where i need to create a Crystalreport with a subreport. I don't know is possible on vb.net.? the situation is : Have 3 tables : Students Finance Score Each student have sone registration on table1 and some registration on table2. (the tables are related) I want to display on the report : Name of student1 All the registration for this student on Finance All the registration for this student on Score ------- Name of Student2 All the registration for this student on Finance All the registration for this student on Score ---------- ....... for all the students i think to do this with report-subreport? Any idea ?
Imports CrystalDecisions.CrystalReports.Engine Imports CrystalDecisions.Shared Public SubReport As ReportDocument SubReport = New ReportDocument SubReport = Report.OpenSubreport(SubReportName) SubReport.SetDataSource(datasource) Now use this SubReport object to solve the problem