CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 1999
    Posts
    15

    Mulitple Languages Option in VC++ Program

    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..




  2. #2
    Join Date
    May 1999
    Posts
    44

    Re: Mulitple Languages Option in VC++ Program

    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.


  3. #3
    Join Date
    Jun 1999
    Posts
    15

    Re: Mulitple Languages Option in VC++ Program

    Thanks for the help. I tried a small demo on the same technique and it worked perfect.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured