I have a datagrid on which I want to completely remove the scrollbars. At
present I'm just deriving a DataGridNoScrollBar class...

Public Class DataGridNoScrollBar
Inherits DataGrid
Public Sub New()
Me.HorizScrollBar.Height = 0
Me.VertScrollBar.Width = 0
End Sub
End Class

Am I missing something or is this the best way?