I can add bitmaps to a menu easily using the example on this website, but as soon as I make the menu a popup menu, I can't get the bitmaps to show.

'// Retrieve the menu handle
lngMenuHwnd = GetMenu(Me.hwnd)

'// Get the handle of the first submenu item
lngSubHwnd = GetSubMenu(lngMenuHwnd, 0)

'// Get the menu id of the first bitmpa
lngMenuID = GetMenuItemID(lngSubHwnd, 0)

The first line works... the second line is unable to get the submenu handle, however.

Help?!?