CComBSTR::LoadString
在這個物件載入 nID 指定字串資源並儲存它。
bool LoadString(
HINSTANCE hInst,
UINT nID
) throw();
bool LoadString(
UINT nID
) throw();
參數
請參閱在 Windows SDK的 LoadString 。
傳回值
如果字串載入成功,則傳回 true ;否則,會傳回 false。
備註
第一個函式所決定的模組載入資源是透過 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);
需求
Header: atlbase.h