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