Reads a Windows string resource, identified by nID, into an existing CStringT object.
BOOL LoadString(
HINSTANCE hInstance,
UINT nID,
WORD wLanguageID
);
BOOL LoadString(
HINSTANCE hInstance,
UINT nID
);
BOOL LoadString(
UINT nID
);
Parameters
- hInstance
-
A handle to the instance of the module.
- nID
-
A Windows string resource ID.
- wLanguageID
-
The language of the string resource.
Nonzero if resource load was successful; otherwise 0.
Loads the string resource (nID) from the specified module (hInstance) using the specified language (wLanguage).
#define IDS_FILENOTFOUND 1
//typedef CStringT< TCHAR, StrTraitATL< TCHAR > > CAtlString;
CAtlString s;
s.LoadString( IDS_FILENOTFOUND );
For another example, see ShowLocalized.
Reference
CStringT Class
Other Resources
CStringT Members