B
BJ Freeman
The customer and I have the Same ADE.
I have the ADP.
Up to this morning everything worked fine.
this gets executed correctly. Shows up in the profiler as Execute
dbo.ADP_BOSWarehouseExport
DoCmd.OutputTo acStoredProcedure, "dbo.ADP_BOSWarehouseExport",
"MicrosoftExcel(*.xls)", "BOSWarehouseExport.xls", True
this has a parm and shows up inthe profiler as SELECT * FROM
"dbo"."ADP_Exprt_OrderRoutingtbl 1"
DoCmd.OutputTo acStoredProcedure, "dbo.ADP_Exprt_OrderRoutingtbl 1",
"MicrosoftExcel(*.xls)", CurrentProject.Path & "\" & "Neworders.xls", True
I get a 2757 error
if I change it to
DoCmd.OutputTo acStoredProcedure, "dbo.ADP_Exprt_OrderRoutingtbl",
"MicrosoftExcel(*.xls)", CurrentProject.Path & "\" & "Neworders.xls", True
it asks for the parm in a dialog box then executes properly.
where should I look so Access will execute this as a Storeprocedure instead
of the Select.
I have the ADP.
Up to this morning everything worked fine.
this gets executed correctly. Shows up in the profiler as Execute
dbo.ADP_BOSWarehouseExport
DoCmd.OutputTo acStoredProcedure, "dbo.ADP_BOSWarehouseExport",
"MicrosoftExcel(*.xls)", "BOSWarehouseExport.xls", True
this has a parm and shows up inthe profiler as SELECT * FROM
"dbo"."ADP_Exprt_OrderRoutingtbl 1"
DoCmd.OutputTo acStoredProcedure, "dbo.ADP_Exprt_OrderRoutingtbl 1",
"MicrosoftExcel(*.xls)", CurrentProject.Path & "\" & "Neworders.xls", True
I get a 2757 error
if I change it to
DoCmd.OutputTo acStoredProcedure, "dbo.ADP_Exprt_OrderRoutingtbl",
"MicrosoftExcel(*.xls)", CurrentProject.Path & "\" & "Neworders.xls", True
it asks for the parm in a dialog box then executes properly.
where should I look so Access will execute this as a Storeprocedure instead
of the Select.