XLL+ Class Library (7.0)

::XllLoadString

Loads a string from the resource file, in the user's language

BOOL XllLoadString(
   UINT resid,
   CString& str
);

Parameters

resid

Numeric resource string identifier.

str

If the function succeeds, the string will be loaded into this variable.

Return Value

TRUE if the function succeeds, FALSE if it fails. It will fail if the current resource file handle is invalid, or if the resource cannot be found.

Remarks

The function searches for a string resource in the user's language, as found through GetThreadLocale(). It is equivalent to calling:

XllLoadStringForLanguage(resid, LANGIDFROMLCID(GetThreadLocale()), str);

Requirements

Header: xllres.h

See Also

Global resource functions