Image on top of another Image...
Currently now I have displayed my main menu image using the code as below.
HBITMAP hBmp = (HBITMAP)::LoadImage(NULL,file,IMAGE_BITMAP,
0,0,LR_LOADFROMFILE|LR_CREATEDIBSECTION);
CBitmap bmp;
bmp.Attach(hBmp);
CClientDC dc(this);
CDC bmDC;
bmDC.CreateCompatibleDC(&dc);
CBitmap *pOldbmp = bmDC.SelectObject(&bmp);
BITMAP bi;
bmp.GetBitmap(&bi);
dc.BitBlt(0,0,bi.bmWidth,bi.bmHeight,&bmDC,0,0,SRCCOPY);
bmDC.SelectObject(pOldbmp);
But now due to I want to have mouseover effect over the places i want to click, and yet i don't want to redraw the whole screen, is it possible to just state a CRect region over the places i want to click and paste the mouseover effect image?? If yes, how to code it?? :ehh:
Regards,

