Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reporting in VB6 2

Status
Not open for further replies.

browneye

Programmer
Nov 21, 2000
82
US
Hi,
I never had chance to use datareports in VB. Now I am trying to write my own software. Any one have used datareports? what are the limitations using datareports? I am looking for somthing really small and dont have distribution license issues..and not expensive either..

Any comments? I would like to know whatever reporting softwares being used..& plus/minus of using it..

Thank you in advance
 
Datareports are really not so bad when you remember that they give you only the basics. I don't think you need anything to distribute them and the coding is simple. If you need to get fancy, I would recommend finding the money for crystal reports. I used datareports a while ago and the only bad thing I remember is that they would not always display the results just saved, and would have to be requeried to show those results. But then again it could have been just very poor coding on my part. I say give it a try, you'll find out everything you need about them as you work.
-Max
 
Thank you Max for your comments..Just one more question can you add filter conditons? Can you create dynamic data report?
 
As far as I know you can filter and arrange the records you retrieve only via the sql statement that you use. You can't create any kind of filter formulas as you would in crystal reports.
-Max
 
imformation that can be shown on the data report will depend on the records coming from it's datasource...

you can do ur filtering on ur recordset b4 you bind it the datareport..


EG

STEP 1
RS.FILTER = [your filter]
or
RS.OPEN "select * from where [your filter]"

STEP 2
set datareport.datasource = rs


------------------------
Data Report is also capable of showing shaped recordsets...
in other words grouping...

-AKIRA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top