Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
7answers
401 views

Accessing resource strings with CultureInfo in .NET

Another simple questions. I have website with different languages. If I want to access a string from the resource file I would use it like this Resources.MyResourceFile.MyStringIdentifier Very ...
2
votes
3answers
202 views

FxCop CA1305: CurrentCulture vs. CurrentUICulture

So, I have a few resource files for localization. They're strings that can be formatted. For example: MyResource.resx Title: "MyApp - Ver: {0}" I then return it by doing like so: public String ...
2
votes
2answers
514 views

Where can I set the initial value of CurrentUICulture in Windows XP?

I'm trying to make my application support multiple languages. I've made some satellite assemblies and now I want to test what the app will look like when run on a French machine, for example. In ...
1
vote
1answer
90 views

How do I set the UI language for a multi-threaded .NET process, independent of the OS language?

Problem: I have a C# .NET 2.0 application developed on Windows 7 that has translated resources for multiple languages (ex. zh-CHS for Chinese, es for Spanish, etc.). I have a customer who wants to ...
1
vote
1answer
328 views

Default string format in Silverlight

I've got a double, for example double d = 4.323d; And I want to display it in a TextBlock on a Silverlight 4 application, but the display should be this: 4.32 And I cannot change the StringFormat ...
1
vote
2answers
364 views

.NET Globalization: Set Culture/UICulture on a Page or a Thread? What's the difference?

Question title is basically the entire question. In ASP.NET you can set the Culture/UICulture properties of a page by overriding the InitializeCulture method, or you can set the properties of the ...
1
vote
2answers
497 views

Why is my language switching automatically in ASP.NET 2.0?

I am working on an ASP.NET 2.0 web solution which currently runs en-GB and zh-HK languages as the 2 current languages for the site. Others will be added at a later date. One of the requirements is ...
1
vote
2answers
677 views

Override CurrentCulture for WinForms control

Is it possible to override the CurrentCulture and the CurrentUICulture for a specific control in WinForms? So that this one specific control uses a different culture?
0
votes
1answer
79 views

ASP.NET Web Page Globalization & Localization in Master Page C# 3.0

I cant use the following code in Master page for Globalization & Localization. It gives the error as commented in the code part "does not contain a defination for InitializeCulture" protected ...
0
votes
1answer
66 views

WCF service gets wrong culture

I have a service method that accepts CultureInfo object as a parameter. I want to use it to get correct strings from Resources by the language that was specified. So I have a method on the service ...
0
votes
2answers
38 views

Localized website, 1 bug: postback event doesn't work

I've almost finished localizing a major website in ASP.NET. I'm using the CurrentUICulture to influence my localization. All goes well, except for the situation where I have a postback event. If I ...
0
votes
2answers
302 views

Setting Culture (en-IN) Globally in WPF App

I have an App, which is based for India, and I'm setting Culture as: Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-IN"); The above code is being set before the Window - ...
0
votes
2answers
48 views

ASP.net Maintaining CurrentUICulture for bookmarks and linked urls

So I have a website that is in two different languages and I've set it up to pull text from a resources file based on CurrentUICulture. I have two link buttons that a user can click to switch between ...
0
votes
0answers
205 views

Localizable WPF Application - UICulture settings lead to Resource problems

I want to create aa localizable WPF Application. I've followed the instructions in the comments of the AssemblyInfo.cs file: //In order to begin building localizable applications, set ...
0
votes
1answer
237 views

resourcemanager uses wrong UICulture to serve content! Always returns neutral culture [closed]

Possible Duplicate: CurrentThread.CurrentUICulture is set correctly but seems to be ignored by asp.net I've asked on many forums, but no one seems to be able to help me! default.aspx: ...
0
votes
2answers
698 views

Specify thousands separator in CurrentUICulture

I am trying to set the culture information for my Thread Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("de-DE"); Thread.CurrentThread.CurrentUICulture = new ...
0
votes
4answers
2k views

Thread.CurrentThread.CurrentUICulture not working consistently

I've been working on a pet project on the weekends to learn more about C# and have encountered an odd problem when working with localization. To be more specific, the problem I have is with ...
0
votes
2answers
659 views

Silverlight 3 localization configuration

I would like to know how I can configure my Silverlight application to be able to change the UICulture of the current thread without having to recompile the application. If I set the current thread ...