Pro změnu kultury používám dle příručky VS2008 Pro:
'Jakákoli jiná než "cs-Cz" by měla být default
'protože v projektu není takový resx soubor
System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("eN-Us")
'Lokalizovaná
System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("cs-Cz")
Neutral resource není nastaven, měl by tedy být default, ale pokud to v Projektu změním na jinou culture tak je zase form pouze v default a nezmění se do lokalizace Cz tedy pokud je nastaven na "" (none) automaticky se použije česká lokalizace, i když se ji snažím před voláním inicializace změnit. pokud tento element změním na cokoli jiného použije se default lokalizace, i když lokalizaci změním na cs-Cz
<Assembly: NeutralResourcesLanguageAttribute("")>
AssemblyCulture atribut v souboru není a nevím, kde ho v projektu přidat. Celý AssemblyInfo.vb
Imports System.Resources
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.
' Review the values of the assembly attributes
<Assembly: AssemblyTitle("resx2")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("resx2")>
<Assembly: AssemblyCopyright("Copyright © 2009")>
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(False)>
'The following GUID is for the ID of the typelib if this project is exposed to COM
<Assembly: Guid("04e7d6bf-d176-41b5-8719-9d96426efcdf")>
' Version information for an assembly consists of the following four values:
'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
<Assembly: NeutralResourcesLanguageAttribute("")>
|