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

    Translating VB text strings

    Is there any tool to translate user's text in VB(from german into french f. example)?
    Or is there no other possibility than to include the translated strings in the code itself?


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Translating VB text strings

    VB 6 comes with a Resource Editor Add-In that allows you to store different language versions of a text string.
    The strings are stored in a RES File that is added to your project.
    You can then use the LoadResString function to load a string depending on the current language settings from the Resource.


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