CStringT::LoadString

 

Reads a Windows string resource, identified by nID, into an existing CStringT object.

Syntax

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.

Return Value

Nonzero if resource load was successful; otherwise 0.

Remarks

Loads the string resource (nID) from the specified module (hInstance) using the specified language (wLanguage).

Example

// typedef CStringT<TCHAR, StrTraitATL<TCHAR, ChTraitsCRT<TCHAR>>> CAtlString;

CAtlString s;
s.LoadString(IDS_APP_TITLE);   

Requirements

Header: cstringt.h

See Also

CStringT Class