I worked for 1 year with XtraReport of DevExpress, but I've only had problems, very unstable, unfriendly, simple things end up being very complicated. The designer has many many many bugs and work with this has been torture. I can write 50 or 60 lines of problems encountered with the XtraReport.
For 5 days I have been testing the Telerik.Reporting and I'm happy, we are seriously evaluating purchase, ease of use is incredible. I really like the ReportViewer is simple but very powerful, I have to write too much code to use.
Let me clarify, I develop applications for Windows Forms.
I have 2 basic questions:
1.- I can use my connection object instead of the connection string?
2.- How I can bind a datable to the report. I've tried in many ways without success
Thanks you.
Wonderful product.!!
David.
For 5 days I have been testing the Telerik.Reporting and I'm happy, we are seriously evaluating purchase, ease of use is incredible. I really like the ReportViewer is simple but very powerful, I have to write too much code to use.
Let me clarify, I develop applications for Windows Forms.
I have 2 basic questions:
1.- I can use my connection object instead of the connection string?
2.- How I can bind a datable to the report. I've tried in many ways without success
Dim
oTabla
As
New
DataTable
oTabla.Columns.Add(
"F1"
)
oTabla.Columns.Add(
"F2"
)
oTabla.Columns.Add(
"F3"
)
oTabla.Columns.Add(
"F4"
)
Dim
objectDataSource3
As
New
Telerik.Reporting.ObjectDataSource()
Dim
oReport3
As
New
ReportNew1
oReport3.DataSource = oTabla
Dim
oFrm
As
New
FrmReportViewer
oFrm.ReportViewer1.Report = oReport3
oFrm.ReportViewer1.RefreshReport()
oFrm.ShowDialog()
Thanks you.
Wonderful product.!!
David.