CComBSTR::LoadString
지정한 리소스 문자열을 로드 nID 하 여이 개체에 저장 합니다.
bool LoadString(
HINSTANCE hInst,
UINT nID
) throw();
bool LoadString(
UINT nID
) throw();
매개 변수
참조 LoadString 에 있는 Windows SDK.
반환 값
반환 true 문자열이 로드 되 면. 그렇지 않으면 반환 거짓.
설명
모듈을 통해 식별 되는 리소스를 로드 하는 첫 번째 함수는 hInst 매개 변수.관련 리소스 모듈에서의 리소스를 로드 하는 두 번째 함수는 CComModule-이 프로젝트에 사용 되는 개체를 파생 합니다.
예제
CComBSTR bstrTemp;
// IDS_PROJNAME proj name stored as resource in string table
bstrTemp.LoadString(IDS_PROJNAME);
// the above is equivalent to:
// bstrTemp.LoadString(_Module.m_hInstResource, IDS_PROJNAME);
// display message box w/ proj name as title & text
::MessageBox(NULL, CW2CT(bstrTemp), CW2CT(bstrTemp), MB_OK);
요구 사항
헤더: atlbase.h