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
 
Raney,

Try passing information via a formula on Crystal Reports.

1) Create a blank formula on the report, sample fun_Title.
2) Pass the infomation you want on the report, see below.

CrystalReport1.Formulas(0) = "fun_Title = '" & strReport_Title & "'"

3) Execute the report.

CrystalReport1.Action = 1

4) Clear the formula.

CrystalReport1.Formulas(0) = ""

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top