hi
I've come up with this method, just need some help...
In Sub ReplaceString() I no somehow I need to replace control strings and in Sub ApplyLang() I need to call ReplaceString().....
Any help, thx
I've come up with this method, just need some help...
Code:
#Region "Localization"
Sub LoadLang(ByVal LangFile As String) ' This sub will load the language file.
Try
If My.Computer.FileSystem.FileExists(LangFile) Then
Dim txt As String = My.Computer.FileSystem.ReadAllText(LangFile)
ApplyLang(True)
End If
Catch ex As Exception
End Try
End Sub
Sub ApplyLang(ByVal Load As Boolean)
If Load = True Then
End If
End Sub
Sub ReplaceString()
End Sub
#End RegionAny help, thx