VB.NET2003 MouseWheel on a panel?

How do I make the mouse wheel scroll a panel that scrolls? I have more control than can fit, and AutoScroll set to true, so scrollbars do appear. But the mouse wheel doesn't scroll the contents up/down or left/right.
[218 byte] By [frumbert] at [2007-12-16]
# 1

For the MouseWheel to scroll the scrollbar in a panel, one of its child controls must have focus.

DavidM.Kean at 2007-9-9 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2
Yes! Works a treat.
However I've seen some apps that after a panel or scrolling box cannot scroll further in the direction of the wheel, the next most likely window that has scrolling capability begins to scroll. Is what I am seeing in these apps (sorry, can't remember a specific example) actually not "correct"?
frumbert at 2007-9-9 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3

I have seen that behavior before in Internet Explorer. If a div contains a scroll bar and you place the mouse wheel over the top and use it to scroll to the bottom of it, the page begins to scroll.

However, I believe that this is custom behaviour.

DavidM.Kean at 2007-9-9 > top of Msdn Tech,Windows Forms,Windows Forms General...