TRY
Expand Minimize
This topic has not yet been rated - Rate this topic

AfxGetResourceHandle

Use the HINSTANCE handle returned by this function to access the application's resources directly, for example, in calls to the Windows function FindResource.

extern HINSTANCE AfxGetResourceHandle( );

An HINSTANCE handle where the default resources of the application are loaded.

//Load the menu specifying the module handle where resource is to be  
//found & resource ID
HMENU hMenu = ::LoadMenu(AfxGetResourceHandle(), MAKEINTRESOURCE(IDR_MAINFRAME));

Header: afxwin.h

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.