I fixed it with the following work around:
Me.Cursor = Cursors.WaitCursor
Me.Show()
myCrystalReportViewer.ReportSource = ReportNameValue
myCrystalReportViewer.RefreshReport()
myCrystalReportViewer.Show()
Me.Cursor = Cursors.Default
I'm using the VBnetPARAMVIEWER sample. I just wanted to add a ****ing hourglass.
I noticed that it wasn't running the report if the viewer was not Shown...
EDIT: This works good if you don't have parameters... if you do and try to use just "Refresh" it doesn't work anymore.
Looks like
Edited by DontRegisterEve - 26 Nov 2007 at 12:57pm