You don't have to do anything...
The system will sort all this out for you!!!!
Just specify what the language of the string table is and that's it.
Say resource id 101 in the English (United Kingdom) was the string 'Hello!" and in the French (Standard) it was "Bonjour!"
Code:
Private Sub Form_Load()
Dim cap As String
cap = LoadResString(101)
Form1.Caption = cap
End Sub
Change your regional settings to French (Standard) and the correct string is loaded automatically!
:cool:
(I can send you an example if you like)!
[Edited by Judd on 05-03-2000 at 09:34 AM]
Multi-langage application
Seeing this thing working with regional settings is great. One more question persists, if the langage on the current computer is english, can the user choose french even if windows is in english. (Without changing the user's settings)