howto two datasets for a report documnet(crystal)

  • Thread starter Thread starter khalsaiskingraajkaregakhalsa
  • Start date Start date
K

khalsaiskingraajkaregakhalsa

hello all,
i m using vb.net.i want to make a crytal report which contains a subreport
in the header .the subreport in the header will display class info like
class ,class teacher,class monitor and school name.
the main report will display the list of students in that studying in that
class.list contains info like student name,age and sex.
i am using dataset for the data source of report.
i can bind only one dataset at a time to the report document..how can i
dislay both the datasets(for the subreport and main report) .
regards
khalsa
 
A subreport is a completly separate report, so you can bind that to one
dataset, and your parent report to the other. Then use paramters to link
the two together.

Beware, subreports are slow...
 
Back
Top