J
Jon
I don't know what's going on...but I have a function within a class that
loads a crystal report. The report fails to load for some reason, but the
odd thing is that when the debugger goes into the catch statement, ex =
Nothing...what could be happening? This is in VS 2005 with crystal XI R2.
Here's the function:
Public Sub LoadReport(ByVal FilePathAndName As String)
Try
rptActive = New ReportDocument
rptActive.Load(FilePathAndName)
Catch ex As Exception
Throw New Exception("Report load failed" + Environment.NewLine +
ex.Message)
End Try
End Sub
loads a crystal report. The report fails to load for some reason, but the
odd thing is that when the debugger goes into the catch statement, ex =
Nothing...what could be happening? This is in VS 2005 with crystal XI R2.
Here's the function:
Public Sub LoadReport(ByVal FilePathAndName As String)
Try
rptActive = New ReportDocument
rptActive.Load(FilePathAndName)
Catch ex As Exception
Throw New Exception("Report load failed" + Environment.NewLine +
ex.Message)
End Try
End Sub