1
vote
2answers
48 views

Localizing Windows Forms with .NET 3.5

I have a problem to make a localizable WinForms application with target .NET 3.5 framework. I am following the guide from MSDN: http://msdn.microsoft.com/en-us/library/y99d1cd3%28v=vs.90%29.aspx ...
0
votes
1answer
54 views

Good .NET Localization Utility [duplicate]

I am looking for a good localization utility for my WPF/WinForms .NET application. I would like it to be able to reflect through my Resx/Resource files in my compiled application and give me a grid ...
1
vote
0answers
53 views

Windows Forms: Form not localized

We have successfully localized our windows-forms application. One form refuses to use the localized resources and is always shown with the embedded resources. I checked the following points: The ...
0
votes
1answer
40 views

How to create a button with 'Cancel' text which is language dependant? [duplicate]

I would like to add to the form an universal 'Cancel' button. By universal I mean that on a system with different than English locales it will display localized 'Cancel' string. How to achieve this?
1
vote
1answer
40 views

.resx form icon cascade updates

Suppose that we have a Windows Form, Form1, for which we have set an icon. Visual Studio will store the icon in Form1.resx ($this.Icon). Now we decide to localize the application into N languages, so ...
0
votes
1answer
197 views

.NET WinForms localization - replacing ComponentResourceManager

In my current project (.NET Windows Forms application) I have a requirement that the .NET windows forms should be localized but the localization elements (just the translations, not the images or ...
1
vote
1answer
102 views

.NET Localization not working

I've created a localized winforms application (in VS2008) by setting the Localizable property to true and then editing the texts, etc... of my Mainform in the designer for the relevant language. I ...
0
votes
0answers
28 views

How can I localize CategoryAttribute for Misc category?

There is a custom component used in a project I'm working on. The custom component is from another vendor, and it contains a good old System.Windows.Forms.PropertyGrid field. A metadata object is ...
3
votes
3answers
160 views

Reset control positions after localization

I have a WinForms application with base language English. I localized a form to German. Some words in German are way longer than their English equivalents so I needed to move some controls around on ...
0
votes
0answers
21 views

how to change the language dynamically of a form [duplicate]

Possible Duplicate: How do I change the culture of a WinForms application at runtime I am using an xml file as a language property file with lang_en & lang_de, reading from the 'name' ...
0
votes
1answer
87 views

Winforms stop user from entering other language character than english in textbox

I have some textboxes which are mapped to primary key fields in the database and I don't want the users to write in any language other than english or numbers or undersore even if the use manually ...
0
votes
0answers
337 views

Multilanguage C# forms Application with runtime language switch and customer translation edit

I'm looking for a way to implement localization of a WinForm application containing Forms, UserControls, default Winform Controls and DevExpress controls. There are two important requirements to ...
0
votes
1answer
311 views

Cannot resolve resource Item winform resource file

This is the code for multilanguage: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using ...
0
votes
1answer
338 views

Localizing winforms in visual-studio-2012 express

I have a application previously developed in Visual Studio Express 2010. It uses localized winforms and resx resources used in code. When the project is opened and compiled using Visual Studio ...
1
vote
1answer
104 views

Change label text based upon CurrentUICulture

I've recently been tasked with localizing a small piece of software that my company created. I've been able to create the resx file for the particular culture, and things are well and good. Thing ...
3
votes
2answers
237 views

How can I change all the form's text when I choose a language in combobox?

Like facebook when changing its language, it change all.. need help to rebuild my codes here. I have 3 forms and my combobox where I used to choose the language is in the 1st form. When I choose ...
1
vote
0answers
114 views

extract all localizable strings from a form

We have an existing WinForms application which need to be translated. We want to use a single resource file per solution, so we won't set localizable property of the form. I would like to develop a ...
0
votes
1answer
629 views

Localize Windows Forms and Change the Language at Runtime

I'm following this link http://www.dotnetcurry.com/ShowArticle.aspx?ID=174 to Localize Windows Forms and Change the Language at Runtime. Everything works fine for label/button:textbox but for ...
0
votes
1answer
148 views

winform language localization sample for

I've the following code to convert the controls in static mode i.e by writing the translated string(french,german etc) and saving the resource file and calling it back. How ever if I need to translate ...
1
vote
1answer
299 views

How can I have my C# Form resources in one DLL, whilst the implementing code is in another DLL?

I have a project that contains a number of DLL files that contain Form resources which all go through translation/localisation (l10n). For example, a DLL includes SomeForm.cs, which includes plenty ...
0
votes
1answer
83 views

Localization in windows form, the text will disappear

I wrote a window UI by c++ windows form. I'd like to create a string table to localize the Form. My steps are: 1. I set the form localizable=true. 2. Add a new .resx file named (project ...
2
votes
3answers
2k views

Proper way to change language at runtime

What is the proper way to change Form language at runtime? Setting all controls manually using recursion like this Save language choice to file > Restart Application > Load languge choice before ...
1
vote
0answers
57 views

Is it necessary to have (non-)localized resources in the same folder?

When I don't put localized resources (Resources.culture.resx) in the same folder as neutral resources (i.e. non-localized - Resources.resx), and set current UI culture ...
2
votes
2answers
222 views

.NET WinForms Localization - How to make control position based on length of text

I am working on localizing a WinForms application through satellite assemblies. The problem I am facing is that when I switch to some other language such as Japanese from English, the labels overlap ...
0
votes
1answer
158 views

How to troubleshoot .net WinForm dialog localization

I have created a dialog box under Visual Studio .NET in C#/Winforms that must support multiple languages. I have set the dialog Localizable property to True, then selected the neutral Language - ...
0
votes
0answers
47 views

Switching CodeDomLocalizationModel for Windows Forms designer

I have a project with many localized forms, which suffers from serious performnce issues. I have identified through profiling, that the ResourceManager.ApplyResources() method is the bottleneck. After ...
1
vote
0answers
119 views

How to prevent compiler creating appname.resources.dll for a not more localized application?

I have a winform application written with vb2010. I changed the "Language" property of a winform of my application to german, only for testing purpose. I built the application and in my \bin\debug ...
8
votes
2answers
593 views

.NET Localization - how to set a language?

I've localized my ExportForm into German (de) and Russian (ru) as you can see below: If my CultureInfo is German (Austrian-de-AT) then all is OK, I see the format translated into German: string ...
1
vote
3answers
270 views

Select an approach to localize large .NET applications

I know that Question of Localizing .NET applications asked here many times. But I am doubt about effectiveness of the approach to use Resources and 3-d party resource editing tools to localizing ...
0
votes
4answers
963 views

c# WinForm how to retrieve value from resource file on code behind

In asp.net I use like this: gridView_Desti.Columns["CODE_DEST"].Caption = (string) HttpContext.GetGlobalResourceObject("Client", "Code_Dest"); How can I do the same thing on WinForm ? Client is ...
2
votes
2answers
172 views

Hebrew calendar control

In asp.net there is a build-in option to change the calendar control to Hebrew, is there a easy way of doing it in winForms too?
1
vote
1answer
243 views

Get WinForms app to apply localisation set in user control that exists in another class library

I have a Windows Form Application Project that references a class library containing user controls. The developer of the class library has set localisation in the same way I do (select a culture from ...
0
votes
1answer
592 views

CA1303, DoNotPassLiteralsAsLocalizedParameters, but I'm actually not

My code gets the CA1303 warning from Microsoft.Globalization, "Do not pass literals as localized parameters", but my code is not actually passing a literal: private void MyForm_Load(object sender, ...
1
vote
4answers
89 views

Can I switch between different sets of values for a form's label controls at runtime?

I need to be able to change the text of a label depending on a setting (mostly labels, checkboxes too ... at least anything that has a label of some sort). This is needed because various customers ...
2
votes
2answers
579 views

Set the Localizable property of all my forms

Is there a way to automate the set of this property ? we have hundreds of forms that needs to be localized and it will be a nightmare going through all of them setting this property to true. is there ...
0
votes
1answer
551 views

How to set application wide cultural information in a Winform Application

I trying to set cultural information at the beginning of one of my winform application (VB .net). The code are: Public Sub New() System.Threading.Thread.CurrentThread.CurrentCulture = New ...
4
votes
1answer
468 views

Load all localization resources on startup

I've found a few similar topics, but I didn't get the answer I'm looking for. I'm just trying the internationalization before I commence a "more serious" (WinForms) project. So, currently in my small ...
0
votes
3answers
388 views

Why Satellite Assembly not use in Winform Application

I've got a winform application which uses it's own mechanism for localization. It doesn't use Satellite assemblies and I am not sure why. Are there any reasons that Satellite assemblies not suitable ...
2
votes
4answers
704 views

How can I convert a C# .NET application to support multiple languages?

I have a C# application that I need to convert to support English and Spanish, is there a semi easy way to add that in and be able to add other languages later on?
0
votes
2answers
863 views

localization image resources in winforms

I'm using C# 3.5 and winforms (and telerik if it matters). How can I get a button to use 3 different pictures (one for idle, one for mouse hover and one for while clicked) in three (or N..) different ...
1
vote
2answers
374 views

Partial MonthCalendar localization failure ('Today' label not translated)

I'm about ready to start tearing out what little is left of my hair over this. I am working on a winforms application (.NET 3.5) under windows 7. In this application is a custom datepicker control ...
0
votes
2answers
643 views

C# localization not working

-EDIT 2- Figured it out, check my answer. I should stop asking questions on StackOverflow, I always figure it out a couple of minutes later :) I have the following code (well, roughly, with detection ...
1
vote
2answers
844 views

Windows forms localization using *.resx and Common.resx

Lets say there are bunch of forms: A.cs, B.cs, C.cs... Each form is localized - A.resx, A.NL-nl.resx, etc. These forms contain some specific labels and some common in all forms used labels. So ...
3
votes
3answers
632 views

Using localized enum as DataSource

I've lots of enums in my app. Most of them are used on combos like this: Enum.GetValues(typeof(TipoControlador)) Now I'd like to localize them like this: Localizing enum descriptions attributes ...
0
votes
1answer
69 views

Unable to see the resource files after localization is true

I have localized a Form say BanksForm into two languages by setting the Localizable property to true and setting the Language from Default to French. Visual Studio generated the resource files and ...
4
votes
2answers
2k views

How do I change the culture of a WinForms application at runtime

I have created Windows Form Program in C#. I have some problems with localization. I have resource files in 2 languages(one is for english and another is for french). I want to click each language ...
0
votes
2answers
907 views

Windows Forms local resource file

I am using a number of localised form resource files in order to store translation strings. In addition to the standard component captions and text values, I am storing localised messagebox strings ...
3
votes
3answers
359 views

Is there any way to obtain the localized names of common dialog buttons?

Is there a way to get the localized versions of "Yes", "No", "OK", "Cancel", "Abort", "Retry", and "Fail"? I'm designing a custom dialog and it would be very useful to be able to localize the buttons ...
2
votes
1answer
697 views

Microsoft Sans Serif Font not used in Chinese Localized Windows

Scenario: A UI Interface element appears to use a different font on US English Windows 7 Enterprise compared to "Chinese" Windows 7 Enterprise even with all localization packs and languages set to ...
3
votes
4answers
2k views

Localization at runtime

I have created Windows Form Program in C#. I have some problems with localization. I have resource files in 3 languages. I want to click each language button and change language at runtime. When i am ...

1 2 3