Accessing rdlc elements from code by file

can you give any example code for accessing rdlc items from code by file.

I have a textbox in the rdlc file, I have to set the value for it from code by file. Please help me

thank

PS Marimuthu

+1


source to share


1 answer


You can just load the XML RDLC code using XDocument or XmlDocument or whatever, then request and update the file as you like, then save the RDLC. If you have a value that you want to set programmatically in this way, you can define a hidden report parameter and use the DOM to update this parameter programmatically in the same way.



+1


source







All Articles