Hello,
Has anyone got some example code for owner drawn menus?
I need to be able to display: Icons, Mnemonics and Accelerator keys, I have an MSDN Example which seems to use a structure that looks like this:
Code:
// Structure associated with menu items typedef struct tagMYITEM { HFONT hfont; int cchItemText; char szItemText[1]; } MYITEM; #define CCH_MAXITEMTEXT 256
Code:
Type MENUINFO hFont As Long cchItemText As Long szItemText As Asciiz * 256 End Type

Any help on this would be most appreciated,

Regards,
------------------
Kev G Peel
KGP Software, Bridgwater, UK.
www.go.to/kgpsoftware
Comment