From what I've seen in the help and forums, in order to use localized strings from a .resx file I have to create my own implementation of IStiGlobalizationManager, which will fetch values from the ResourceManager as needed, something like:
Code: Select all
public string GetString(string name)
{
// use the .resx file
return this.resourceManager.GetString(name, Culture);
}
Now, what I cannot find is: is it possible to "export" all strings from an existing report so that I can create these .resx files?
Or do I have to manually set each Globalized Name in the Stimulsoft designer, and then again manually define it in the Visual Studio resource file?