Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB6 -> Crystal Reports - StoredProcParam(x)

Status
Not open for further replies.

rraney

Programmer
May 18, 2000
11
0
0
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
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top