From: MikeTI on 12 Apr 2010 08:50 April 12, 2010 Hi all I have a requirement to develop an application in VB Net 2008 that should be multilingual. What could be the easiest way to manage the text of labels etc. based on the language selected which could be a code passed on to the form as a parameter. Thanks in advance Mike TI
From: Martin H. on 12 Apr 2010 16:24 Hello Mike, the easiest way would be the use of resource DLLs which contain the texts. The .NET framework would then choose the proper DLL at run-time and use it for showing the proper texts. However, if you want to give your users the option to edit the texts, you might like to use a text (or XML) file with the translations. The resource DLL files do not allow the user to edit them (easily) as they are binary files. Best regards, Martin Am 12.04.2010 14:50, schrieb MikeTI: > April 12, 2010 > > Hi all > > I have a requirement to develop an application in VB Net 2008 that > should be multilingual. > > What could be the easiest way to manage the text of labels etc. based on > the language selected which could be a code passed on to the form as a > parameter. > > Thanks in advance > > Mike TI >
From: Herfried K. Wagner [MVP] on 12 Apr 2010 16:43 Am 12.04.2010 14:50, schrieb MikeTI: > I have a requirement to develop an application in VB Net 2008 that > should be multilingual. Walkthrough: Localizing Windows Forms <URL:http://msdn.microsoft.com/en-us/library/y99d1cd3(VS.80).aspx> -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
|
Pages: 1 Prev: DotNet error message : on which statement ? Next: AutoPostBack is not firing on some clients |