You can use the standard VB scroll bar to provide the graphical part of the scroll bar. Actually scrolling the contents of the form might be a bit harder.
Regards
Matt Brown
Hamilton, NZ
VB6 C++ in Visual Studio 6sp4
VB.net Beta 1
Option Explicit
Private Declare Function ShowScrollBar Lib "user32" (ByVal hwnd As Long, ByVal wBar As Long, ByVal bShow As Long) As Long
Private Const SB_BOTH = 3
Private Const SB_HORZ = 0
Private Const SB_VERT = 1
Private Sub Form_Load()
Dim ret&
ret = ShowScrollBar(Me.hwnd, SB_BOTH, True)
End Sub