We want our report can be localized for English, French and German. I want to know how can we make the "Report Viewer Menu" to be localized by those three language.
Thanks.
Report Viewer Localisztion
-
- Posts: 33
- Joined: Sun Jul 02, 2006 6:06 pm
- Location: New Zealand
Report Viewer Localisztion
Please use the following code:
en.xml - English localization file
fr.xml - French localization file
de.xml - German localization file
Also please note that you should do this from the very beginning of your Application, before creating any controls of the Stimulsoft Reports.Net. These are static methods and can be called from any part of your Application.
Thank you.
Code: Select all
Stimulsoft.Report.StiOptions.Configuration.DirectoryLocalization = PathToTheLocalizationFiles;
Stimulsoft.Report.StiConfig.LoadLocalization("en.xml");
fr.xml - French localization file
de.xml - German localization file
Also please note that you should do this from the very beginning of your Application, before creating any controls of the Stimulsoft Reports.Net. These are static methods and can be called from any part of your Application.
Thank you.