我程序里有一段代码:
HDC hSkinDC = ::CreateCompatibleDC(hDC);
if(hSkinDC != NULL)
{
    HBITMAP hOldBmp = (HBITMAP)::SelectObject(hSkinDC, m_hBmp);    DrawItemSkin(hSkinDC);    ::SelectObject(hSkinDC, hOldBmp);
    ::DeleteDC(hSkinDC);
}m_hBmp肯定不为NULL。用Error detection build 运行后,devpartner 仍给我下面一段错误提示:Argument 2 in SelectObject (HGDIOBJ__ hgdiobj = 0x0185000F) This resource 
(type= Bitmap) is currently selected in to HDC 0xA5011EF2 and may only be 
selected in to one Device Context at a time.有哪位大虾能告诉我是哪里有问题吗?