R – Ways to feed a report (degined by crystal reports 8.5 in vb6.0) to show a special record

crystal-reportsvb6

I am new to Crystal reports and now I have designed a report via Crystal reports 8.5 in vb6 and wanna to display the report.

I have picked up fields data from a View within my database but as you know Views have several records.

I want to select a special record by a Primary key which is value of a textbox on my form.

Best Answer

Add a parameter to the report and use the parameter in the select expert. Then, call SetParameterValue on the report document before loading.

Related Topic