Thank you, I got the result CBitmap bmp; HBITMAP bmp1; bmp1 =SHLoadDIBitmap(_T("D:\\codeproject\\a.bmp")); bmp.Attach(bmp1); BITMAP bminfo; bmp.GetBitmap(&bminfo); CDC dcMem; HBITMAP hbmpOld; dcMem.CreateCompatibleDC(pDC); hbmpOld =(HBITMAP)dcMem.SelectObject(&bmp); pDC->StretchBlt(0,0,rc.Width(),rc.Height(),&dcMem, 0,0, bminfo.bmWidth, bminfo.bmHeight, SRCCOPY); dcMem.SelectObject(hbmpOld); Still one more problem, When I stretched this bitmap into the entire screen, the controls(Button) which I placed above the bitmap not moved with bitmap, I want that todo, Give your hand on this issue regards DARWIN PAUL RAJ