Issue with crystal report
Closed
mikeoe2003
apprabhu
- Posts
- 25
- Registration date
- Thursday November 1, 2012
- Status
- Member
- Last seen
- March 27, 2014
apprabhu
- Posts
- 2
- Registration date
- Sunday February 3, 2013
- Status
- Member
- Last seen
- February 3, 2013
Related:
- Issue with crystal report
- Crystal reports viewer - Download
- Crystal reports 2013 download free full version - Download
- Sap crystal reports 2016 product key ✓ - Forum - Software
- Crystal report 2013 product key ✓ - Forum - Software
- Crystal reports 2011 product key ✓ - Forum - Software
1 reply
apprabhu
Feb 3, 2013 at 07:40 AM
- Posts
- 2
- Registration date
- Sunday February 3, 2013
- Status
- Member
- Last seen
- February 3, 2013
Feb 3, 2013 at 07:40 AM
Change this
to
When you are using single table data just use dataset only.
da = New OleDbDataAdapter("select * from student_info ", con) ds.Tables.Add(dt) da.Fill(ds) Dim crReportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument crReportDocument = New mcrystal crReportDocument.SetDataSource(dt)
to
da = New OleDbDataAdapter("select * from student_info ", con) da.Fill(ds) Dim crReportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument crReportDocument = New mcrystal crReportDocument.SetDataSource(ds)
When you are using single table data just use dataset only.