Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I get some code showing how to draw a bitmap/icon on the right-click context menu?

I have working code already for a DLL for the context menu, but it's just text. Example here: http://www.marcocantu.com/code/md5/TODOSHLL.htm

share|improve this question

1 Answer

up vote 6 down vote accepted

It seems you can simply use the SetMenuItemBitmaps API.

Edit: Here's a Delphi example.

Edit 2: Warning: I just noticed that the Delphi example leaks the bitmap handle and will probably crash the system eventually. The bitmap should be loaded only once in the constructor of the object (and better from its own resource, not from the file system) and released in the destructor.

share|improve this answer
2  
Or you can use InsertMenuItem instead of InsertMenu I guess and do it all in one go. – David Heffernan Jul 11 '12 at 11:20
@DavidHeffernan Yes, that should work, too. – TOndrej Jul 11 '12 at 11:29
Heh, fortunately the comments in code are in English. ;-) – Rudy Velthuis Jul 11 '12 at 11:48
1  
You could override the constructor/destructor in your TToDoMenu class. Or load the bitmap in the initialization and release it in the finalization section of the unit. – TOndrej Jul 11 '12 at 16:15
1  
You can add it in a unit. – TOndrej Jul 11 '12 at 16:36
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.