Click to See Complete Forum and Search --> : Mulitple Languages Option in VC++ Program


dmerchant
June 16th, 1999, 05:26 AM
I wish to use multi language option in my program. I want to build a program using VC++ 6.0 which allows user to select the language of his choice for Menus, Toolbars, Dialogs, etc..
Please suggest me a technique which I should follow since my project has many dialogs. The languages I wish to support are English, French, Italian, Spanish, etc..

Pallavi
June 16th, 1999, 06:16 AM
First of all, all the text/strings that U use, must be put into a string table. U must always read this from the string table.
U then compile this into a dll.
So U'll be having many dll's based on the language used in the string table.
Depending on what language the user selects, load that particular dll, and use it.
If U want more details, let me know.

dmerchant
June 24th, 1999, 10:46 AM
Thanks for the help. I tried a small demo on the same technique and it worked perfect.