SpecificCulture

  • Thread starter Thread starter Thierry
  • Start date Start date
T

Thierry

Hi all,

I'd like to personalize my Windows app for each of my customers.
Is it possible to create a custom CultureInfo like us-Customer1 and
us-Customer2 ?

Thanks,
Thierry.
 
I think you mean your application will be used by an eng person and Russian
person or another person such as Turkish.

If you want the application interface can dynamically change depending upon
the users language you must the assembly resource files.

You must have an assembly resource file for each language settings.Right
click the project from the solution exp. and select Add new item. Select
Assembly resource file and configure it for your needs.

public class WebForm1 : System.Web.UI.Page
{
private ResourceManager LocRM; // ResourceManager
LocRM = new
ResourceManager("WebApplication1.WebResources",typeof(WebApplication1.WebForm1).Assembly);


}
 
no, it's more like the following :
I have Customer1 and Customer2 using en-EN but Customer1 has specific name
to be displayed.
For example, let's say Customer1 wants to have "Order number" and Customer2
wants to have "Order #" for the same label.
Can I create resource files named "en-Customer1" and "en-Customer2" ?
 
Back
Top