http://www.vb-helper.com/HowTo/intl2.zip

	Purpose
Load internationalization data from a resource file with multiple string tables

	Method
To install the resource editor, select the Add-In menu's Add-In Manager command. Click on the VB 6 Resource Editor. Check the Load/Unload and Load on Startup boxes. Then click Ok.

At the bottom of the Project menu, select Add New Resource File command. Now you can use the resource editor to edit the resource file.

This example uses three string tables to store values. For example, the "yes" value is stored as "Yes" in the English table, "Oui" in the French table, and "Ja" in the German table. All three strings have the same identifier.

These tables are identified as English, French, and German in the resource file.

When the program runs, the application automatically selects the right table based on the system's LCID. If the LCID doesn't match a table, the application uses the first table.

The program uses LoadResData, LoadResPicture, and LoadResString to load its data. 

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does no error
handling. You can use the example in any form, but please mention
www.vb-helper.com.
