转自:http://blog.csdn.net/tangaowen/archive/2010/01/05/5137112.aspx
GetModuleHandle和AfxGetInstanceHandle和CWinApp->m_hInstance的区别
在工作中遇到一个问题,就是在一个DLL中想改变这个DLL的窗口的ICON,于是写了如下的代码:
HICON hicon=LoadIcon(GetModuleHandle(NULL),MAKEINTRESOURCE(IDI_ICON1));
if (hicon!=NULL)
{
LRESULT result=SendMessage(m_hWnd,WM_SETICON,ICON_SMALL,(LPARAM)hicon);
}
结果发现没有成功,hicon=NULL,调试发现是LastError=1813,说是找不到指定的资源。
后面换成了这样的代码就可以了:
HICON hicon=LoadIcon(AfxGetApp()->m_hInstance,MAKEINTRESOURCE(IDI_ICON1));
if (hicon!=NULL)
{
LRESULT result=SendMessage(m_hWnd,WM_SETICON,ICON_SMALL,(LPARAM)hicon);
}
换成下面这种也可以:
HICON hicon=LoadIcon(AfxGetInstanceHandle(),MAKEINTRESOURCE(IDI_ICON1));
if (hicon!=NULL)
{
LRESULT result=SendMessage(m_hWnd,WM_SETICON,ICON_SMALL,(LPARAM)hicon);
}
百思不得其解,后面查MSDN和网络,了解到是由于DLL的句柄跟Application的句柄混淆不清的原因,这里需要的是DLL的句柄。
1.GetModuleHandle(LPCTSTR lpModuleName)
If this parameter is NULL, GetModuleHandle returns a handle to the file used to create the calling process (.exe file).
如果参数为空,那么获取的就是调用这个DLL 的exe的 句柄,也即application句柄,而不是DLL的句柄
如果要获得当前DLL的句柄,要传入DLL的名称即可。
2.AfxGetInstanceHandle()
An HINSTANCE to the current instance of the application. If called from within a DLL linked with the USRDLL version of MFC, an HINSTANCE to the DLL is returned.
返回的是一个application的句柄,但是如果这个函数是从一个MFC的USRDLL版本DLL的内部被调用,那么返回的就是这个DLL的句柄
3.CWinApp->m_hInstance
The m_hInstance data member is a handle to the current instance of the application running under Windows. This is returned by the global function AfxGetInstanceHandle. m_hInstance is a public variable of type HINSTANCE.
因为它是从 AfxGetInstanceHandle()返回来获得的,所以跟AfxGetInstanceHandle()的返回值一样。