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

    Writing software for different languages/countries?

    How can i switch the UI between different languages, for example german, english or french?
    I think, the stringtable in VC isn´t the best way,
    because i like to change every static text item in
    the application. I don´t want compile the applications for different languages!!

    Please excuse my bad englisch.

    Christoph Matern


  2. #2
    Join Date
    Apr 1999
    Posts
    90

    Re: Writing software for different languages/countries?

    The string table is the way to go. Don't put any strings within your application.

    There is an article within DevStudio help that explains how to create a 'resource only' DLL. By doing it this way, then you'd just need to rebuild this resource DLL for each of the languages.


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