how can i pass values from textbox to crystal report directly
Printable View
how can i pass values from textbox to crystal report directly
In your code where you call the report you can put something like:
Report.ParameterFields.Item(1).AddCurrentValue Textbox.text
Of course, you have to have the parameter defined on the report.