Question

I was wondering if there is a possibility to add an input field in the RDLC Report definition, so the user can type something before saving the the report.

Is it possible? If so, how?

Was it helpful?

Solution 2

Short answer, NO

RDLC is a file that is designed to be the last part of the report cycle.


BUT, you CAN create a visual-like the report itself, with the Input that you desire, after that, the user can finish it and generate the RDLC

Breed Crumb: Create a page that looks like your report => Add the editable input where you need => Create a button in this "report" (page) => Generate your REAL report.

OTHER TIPS

As @Michel pointed out, RDLC reports are read-only, once generated.

Another Workaround:

Have an input field in your page, plus embed your Report in a Report Viewer control, with a parameter that takes the value of the input field.

Each time the user changes the value of the input field (or presses the some refresh button) then you regenerate the Report and show it again in the Report Viewer.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top