Say I have a bog-standard Win32 popup menu, and it's taller than the screen. It sprouts an up arrow at the top and a down arrow at the bottom, so the user can scroll through its items.
It's it possible at all for such a menu to response to Mouse Wheel scrolling? Scroll wheel events are sent to the focused control, which is not the menu, so what typically happens is that a text editor behind the menu scrolls instead.
Update: That is, is there a way for me to route the scroll wheel events, or some message I can send to a popped-open menu to programmatically scroll it up or down a notch?