Hi Guys,

I have created a CR Report that I use in an app (frontend to an Access DB).

As is well except the data that I used to create the CR Report is showing up in the VB.Net app although I have:
1. saved the Report without data (option within CR)
2. in my app, I specify the data source (see below)

Code:
        Report.Load(Application.StartupPath & "\Dependancies\Blank.rpt")
        Report.SetDataSource(Me.LogbookDataSet.tbl_Logbook)
        CrystalReportViewer.ReportSource = Report
        Me.PanelReport.Controls.Add(CrystalReportViewer)
??