Changing VC++ Form application to multi-lingual.

Hello all.

I am trying to make my application a multi-lingual one (atleast one more language in addition to English), so that it can accept other language text, translate the text to English and process it further for getting result.

I am using Visual studio 2010, VC++ Windows form application. When I am searching, I am getting examples of C# and MFC applications. How could I do using VC++?
Usually , you will have text(or binary) files in a folder Langages like so eng.lg , fr.lg , ru.lg .

You would have another text(or binary ) file like setup.txt which will contain a line like that

Langage=English

So your program reads that and then load the appropriate file like eng.lg .

You can use serialization/deserialization in XML or JSON so the data structure will be the same for these files , only the values will be different .

If this is not clear enough tell us then.
Thank you @Ericool

As per my knowledge, XML and JSON are used in web development. But my application is 'windows form', code written in VC++.

So please, can you help me with this windows form application in VC++ 2010?

Thanks.
Last edited on
Topic archived. No new replies allowed.