If you don't want to see scrollbars blink and maintaining the focus as well so you can use the arrow keys, try this trick:
Code:
Private Declare Function HideCaret Lib "user32" (ByVal hwnd As Long) As Long

Private Sub VScrollBar_GotFocus()
   HideCaret VScrollBar.hwnd
End Sub