Click here to Skip to main content
15,886,795 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

How do I clear the contents of CrystalReportViewer. I run a query which populates CrystalReportViewer correctly. If I run again without leaving the form, then the previous contents are still displayed. How do I clear then display?

A sample of my code is as follows.

Dim cryRpt As New ReportDocument

cryRpt.Load(Loads the crystal report form)

cryRpt.SetDataSource(MyDatasource.Tables(1))
Display the results on screen now
CrystalReportViewer1.ReportSource = cryRpt
CrystalReportViewer1.Zoom(75)
CrystalReportViewer1.Refresh()
Posted
Updated 7-Feb-13 5:15am
v2
Comments
Central_IT 7-Feb-13 11:25am    
Thanks for the quick response. Your code works to a point.
I build a new datasource everytime I want a new report. When I run the code, it is still holding onto the old data in the MyDatasource and displaying. I think I want to flush the data in the previous datasource before populating the reportviewer. I hope this makes sense?

1 solution

Found the problem. See my comment.

I was not clearing my datasource everytime I ran a new report.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900