Try this:
1. Place a PictureBox on a form.
2. Place an Image, HScrollBar and VScrollBar control INSIDE the PictureBox.
3. Add the following code to your form:
Private Sub Form_Resize()
Picture1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
VScroll1.Height = Picture1.ScaleHeight - HScroll1.Height
VScroll1.Left = Picture1.ScaleWidth - VScroll1.Width
VScroll1.Max = Image1.Height - Picture1.ScaleHeight + HScroll1.Height
HScroll1.Width = Picture1.ScaleWidth - VScroll1.Width
HScroll1.Top = Picture1.ScaleHeight - HScroll1.Height
HScroll1.Max = Image1.Width - Picture1.ScaleWidth + VScroll1.Width
End Sub
Private Sub HScroll1_Change()
Image1.Left = -HScroll1.Value
End Sub
Private Sub VScroll1_Change()
Image1.Top = -VScroll1.Value
End Sub
Private Sub HScroll1_Scroll()
Image1.Left = -HScroll1.Value
End Sub
Private Sub VScroll1_Scroll()
Image1.Top = -VScroll1.Value
End Sub
Cheers. Be good. If you can't, don't get caught!