I need to localize preview in Italian (i need to localize toolbar tooltips).
Is "Stimulsoft.Report.StiConfig.LoadLocalization("c:\MyPath\it.xml")" ok?
Is there another way?
Thanks.
Localize preview
- Fabio Pagano
- Posts: 355
- Joined: Mon Apr 16, 2007 12:38 pm
- Location: Bari (Italy)
Localize preview
Please change your code in the following way:
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 = My.Application.Info.DirectoryPath
Stimulsoft.Report.StiConfig.LoadLocalization("it.xml")
Thank you.