CComBSTR::LoadString
Charge une ressource de type chaîne spécifiée par nID et l'enregistre dans cet objet.
bool LoadString(
HINSTANCE hInst,
UINT nID
) throw();
bool LoadString(
UINT nID
) throw();
Paramètres
Consultez LoadString dans Kit de développement logiciel Windows.
Valeur de retour
Retourne true si la chaîne est correctement chargée ; sinon, retourne false.
Notes
La première fonction charge la ressource du module identifié par vous via le paramètre d' hInst . La deuxième fonction charge la ressource du module de la ressource associé à CComModuleobjet dérivé utilisé dans ce projet.
Exemple
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);
Configuration requise
Header: atlbase.h