ok, was fairly simple when managed to get my hands on VB

Don't call the PictureBox 'Picture' - it's a reserved word - i renamed it picMain and then changed this part of the Select Case:
VB Code:
  1. Case TypeOf ctl Is PictureBox
  2.             If Not ctl Is picMain Then
  3.                 PictureBoxZoom ctl, MouseKeys, Rotation, Xpos, Ypos
  4.             Else
  5.                 bHandled = False
  6.             End If