I`m working in a program that supports English and Arabic languages and in current days we are developing the program reports.
We choosed to use SSRS with ReportViewer control in WindowsFormsApplication(C#) I searched for a way to change the DirectionLayout property of the tablix according to language(LTR english, RTL arabic) and I tried a lot of solutions but with no success.
I do not want to create two reports or create one report with two tablixes one for each language.
Now I`m trying to do the following:
- Use SSRS web services to get report definition
- Edit the report definition (convert Tablex DirectionLayout to RTL)
- Use SSRS Execution Service to load the definition and render the report
- assign the renderd report to ReportViewr control
I would like to know is that possible? And where can I search to achieve this task?