String table is a very useful resource for localization. The usage is simple:
Add a string to the string table:
// ID VALUE Caption
IDS_STRING 58624(auto) String Table Test
In the file, CString::LoadString() function can help you load the string from string table
CString str;
str.LoadString(IDS_STRING);
Add a string to the string table:
// ID VALUE Caption
IDS_STRING 58624(auto) String Table Test
In the file, CString::LoadString() function can help you load the string from string table
CString str;
str.LoadString(IDS_STRING);
Comments