Nov 22, 2000 #1 rraney Programmer May 18, 2000 11 US Hello, How can I access (print) the StoredProcParams that I pass from VB6. CReport.StoredProcParam(0) = "Zero" I would like to be able to print this value on the report. Thanks, Raney
Hello, How can I access (print) the StoredProcParams that I pass from VB6. CReport.StoredProcParam(0) = "Zero" I would like to be able to print this value on the report. Thanks, Raney
Nov 22, 2000 #2 avn Programmer Apr 4, 2002 5 US rraney, try storing the parameter value to a variable then use that variable in passing it through a formula. dim x x=Stored_proc_param_value crystal1.storedprodparam(0) = x crystal1.formula(0)={x} ---> check parameters of this property avn Upvote 0 Downvote
rraney, try storing the parameter value to a variable then use that variable in passing it through a formula. dim x x=Stored_proc_param_value crystal1.storedprodparam(0) = x crystal1.formula(0)={x} ---> check parameters of this property avn