I'm setting the icon of my picture box to vbCrossHairs when I click on the 'zoom window' button that I have on top of the screen.

However, the damn picture box displays a I-beam after doing this and NOT the crosshair icon.

What the heck is going on?

VB Code:
  1. Private Sub cmdZoomWindow_Click()
  2.     picMap.MousePointer = vbCrossHairs
  3. End Sub