Add a VScrollBar control to your form then in its scroll event put
Code:
Private Sub VScrollBar1_Scroll(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles VScrollBar1.Scroll
Panel1.VerticalScroll.Value = e.NewValue
End Sub
Assuming you want vertial scrolling. If you want Horizontal then add a HScrollBar control.
If this helps please use the thank me button.