Reporting with VB.NET

  • Thread starter Thread starter tmWin
  • Start date Start date
T

tmWin

Is there any report engine which comes with the dot net framework?
The crystal report is great but considering about portability, its not
a good idea.

I want applications which only need the dot_net_framework.
If anyone could help me, it would be very thankful.

yours..
TMWin
 
tmWin said:
Is there any report engine which comes with the dot net framework?
The crystal report is great but considering about portability, its not
a good idea.

I want applications which only need the dot_net_framework.
If anyone could help me, it would be very thankful.

Try my little project: http://www.neodatatype.net

;)
 
tmWin said:
Is there any report engine which comes with the dot net framework?
The crystal report is great but considering about portability, its not
a good idea.

Take a look at the ReportViewer control.

It allows you to design a report within the IDE and save the design as an
..rdl or .rdlc file. They at runtime you can load the design into the
ReportViewer control, provide it with one or more DataTables containing your
report data, and then either display the report on screen or save it to disk
in PDF or Excel format.
 
tmWinwrote:

Take a look at the ReportViewer control.

It allows you to design areportwithin the IDE and save the design as an
.rdl or .rdlc file. They at runtime you can load the design into the
ReportViewer control, provide it with one or more DataTables containing yourreportdata, and then either display thereporton screen or save it to disk
in PDF or Excel format.

Thanks for your advise.
I am now learning more about Crystal, both viewer and designer.
Thanks..
 
Back
Top