Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I need to know how can I get specific record there in report by passing string parameter from vb.net to crystal reports? For example - I have text box, button & crystalreportviewer there in my form. When user will use it he will write specific word there in the text box & click on view report button then it will automaticlly find out the specific record & show it there in report. Please help me.
Posted
Updated 15-Jun-10 2:13am
v2

1 solution

kingcoder0110 wrote:
y find out the specific record & show it there in report


1. Design the UI
2. On button click, store the text of the textbox as a parameter to DB or Report
3. One way - Use the parameter in report to get data. Query would be written such that it takes that parameter as input and the result would be used as a dataset for report
Other way - pass the parameter to database and get the desired result using that parameter from DB, pass this result dataset as an input to Crystal report.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900