[Message Deleted]
-
[Message Deleted]
-
[Message Deleted]
hi this is a broad topic which canot be answered here, do a search for localization on codeproject or google.com or MSDN. signature ;P
-
[Message Deleted]
make an resx file for each language in the name filed u fill it with the word that refers ur controls "myEmployee" for example and in the value field u fill the word that u want to appear "Employee" for example In a seperate module u do the following: import the system.resources and u define a variable for each language Public rm As ResourceManager define a language variable and durection variable Public cur_lang As String Public cur_dir As String = "ltr" Public Sub lang1() If cur_lang = "English" Then rm = New ResourceManager("projectName.English", System.Reflection.Assembly.GetExecutingAssembly()) Else rm = New ResourceManager("projectName.otherLanguage", System.Reflection.Assembly.GetExecutingAssembly()) End If and lang2 sub for the other language in the aspx.vb all u need is the following u specify the language in the form load lblEmployee.Text = rm.GetString("myEmployee") hope this would help
Best Regards 3ala2 :)