Have a program using cr2008 & vs2008. Everything works except that the report is not viewable within vs2008. And I don't have a clue. This is the code that calls the report:
Code:
    Private Sub mnuReportsWater_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuReportsWater.Click
        With frmWater
            .StartPosition = FormStartPosition.CenterScreen
            .Width = 875
            .Height = 1000
            .Top = 25
            .Text = "Water Usage"
            '.Hide()
            .Show()
        End With

    End Sub
the only thing in frmWater is a line to suppress the CR logo:
Code:
Public Class frmWater

    Private Sub CrystalReportViewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CrystalReportViewer1.Load
        CrystalReportViewer1.ShowLogo = False
    End Sub
End Class
When crWater is clicked/double clicked a message 'There are no items to show for the selected document.' Frustraing as all heck since the report was developed in cr 2008 (v12)or cr2008 basic (v10) in vs 2008.

That was before a couple of re-installs of the OS over a period of several months. Now, nothing.

Any ideas would be great. Thanks.