Tänkte starta ett nytt projekt som ska skrivas i VB-net. Jag tänkte för första gången införa stöd för flera språk i programmet. Till frågan. Hur anpassar jag på smidigaste sett mitt program för flera språk. Gör man på liknande sätt som man gör i VB6? Standarduttryck för datum/månad/veckodag finns att tillgå genom namespacet system.Globalization. Herregud vad enkelt det var. Jag bifogar texten från hjälpen.stöd för flera språk. [Löst]
Med vänlig hälsning
indurainSv: stöd för flera språk.
Kör detta t ex:
dim ciDE as new CultreInfo("de-DE")
dim dtfi as DateTimeFormatInfo = ciDe.DateTimeFormat
Console.WriteLine ("Söndag heter " & dtfi.GetDayName(DayOfWeek.Sunday) & " på tyska")
Under CultureInfoClass hittar du alla definitioner för alla mäjliga språk.
När det sedan gäller hanteringen av ledtexter så finns det i huvudsak en sak att göra och det är att hämta ledtextrna från databasen och identifiera dig med förkortningen av den "Culture" du vill hantera.
T ex. lblNameHeader.Text = Langs.GetNameHeader("de-DE")
Då gäller det ju förståss att kunna språket :-)
Ska du dessutom göra applikationen i Win32 (alltså inte webb) kan du ju alltid hämta upp alla ledtexter och lägga i en global variabel deklarerad som ett DataSet vid inloggning eller dyligt.
//Mikael.NETSv: stöd för flera språk.
To have Visual Studio generate resource files for you
1. Create a new Windows Application named "WindowsApplication1". For details see Creating a Windows Application Project.
2. In the Properties window, set the form's Localizable property to true.
The Language property already is set to (Default).
3. Drag a Button control from the Windows Forms tab of the Toolbox to the form, and set its Text property to "Hello World".
4. Set the form's Language property to "German (Germany)".
5. Set the button's Text property to "Hallo Welt".
6. Set the form's Language property to "French (France)".
7. Set the button's Text property to "Bonjour le Monde". You can resize the button to accommodate the longer string, if necessary.
8. Save and build the solution.
9. Click the "Show All Files" button in Solution Explorer.
The resource files appear underneath Form1.vb or Form1.cs. Form1.resx is the resource file for the fallback culture, which will be built into the main assembly. Form1.de-DE.resx is the resource file for German as spoken in Germany. Form1.fr-FR.resx is the resource file for French as spoken in France.
In addition, you will see files appear named Form1.de.resx and Form1.fr.resx. Visual Studio automatically creates these files in order to work around a limitation in Visual SourceSafe having to do with adding new files to a project during a save operation. The .resx files are empty and contain no resources.
10. Press the F5 key or choose Start from the Debug menu.