R
Robert Robichaud
I'm converting an Access 2000 application to run on SQL 2000.
I have the data in MSDE and trying to get my reports to work. My
rptQuotation report is tied to a Stored Procedure that uses a parameter to
retrive records for the specific order. In the main procedure, I call:
DoCmd.OpenReport "rptQuotation", acPreview
and in the report's Report_Open, I set:
Me.InputParameters = "@OrderID=" & str(2153)
I'm using a specific Order number (2153) for debugging purposes. The
InputParameters is assigned in the report's Report_Open procedure but when
the control is returned to the calling procedure, I get the following:
There was a problem accessing a property or method of the OLE object.
Does anyone have any ideas on this or where to look for a solution?
I have the data in MSDE and trying to get my reports to work. My
rptQuotation report is tied to a Stored Procedure that uses a parameter to
retrive records for the specific order. In the main procedure, I call:
DoCmd.OpenReport "rptQuotation", acPreview
and in the report's Report_Open, I set:
Me.InputParameters = "@OrderID=" & str(2153)
I'm using a specific Order number (2153) for debugging purposes. The
InputParameters is assigned in the report's Report_Open procedure but when
the control is returned to the calling procedure, I get the following:
There was a problem accessing a property or method of the OLE object.
Does anyone have any ideas on this or where to look for a solution?