How can I set SSRS Report Viewer Localization language the same as CultureInfo.CurrentUICulture?
How to Set NumberFormat in SSRS Report Viewer as Localization current cultureinfo
Example:
The Decimal Number Was en-US Format "18.96" ,This Number Will be "18,20" Using Localization in WPF ?
Manoj BhoirPosted May 6, 2019, 5:00 AM
-
-
-
Reference :Setup a report parameter that represents the culture code you want to display. Let's call it pReportCulture. I set a static value as a default for "en-US"
Set the Language of your report to the value of the parm : Language =Parameters!pReportCulture.Value. This should setup the culture of all textboxes etc in the report.
Make sure to put a date or currency format on fields that you localize. Use the .toString("c") or other valid formats. If you do any custom text parsing you will lose the auto localization from the culture setting.
Dinesh KumarPosted May 7, 2019, 11:46 PM
Dinesh KumarPosted May 7, 2019, 11:41 PM
Amit GuptaPosted May 6, 2019, 2:51 AM
Dinesh KumarPosted May 5, 2019, 10:38 PM
Amit GuptaPosted May 2, 2019, 11:44 AM