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
Dec 15, 2000 #2 moki Programmer Dec 5, 2000 37 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) = "" Upvote 0 Downvote
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) = ""