Hello,
One option is to not catch the error in the DLL code. The error would then be displayed in the ASP page. Another is to return an error code value byref as one of the parameters to the method. This value would then be known and could be checked in the ASP page.
In the error handler, set:
Set GetReportSummary = ??????????????
to
Set GetReportSummary = Nothing
You could then test for the nothing solution when the recordset was returned.
Hope this helps,
Brian
|