towguy
Programmer
- Jun 22, 2006
- 9
Is there a way to hide Vertical or Horizontal scroll bars or both in DatGrid Control?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
For Each c As Control In MyBase.Controls
If c.GetType() Is GetType(VScrollBar) Or c.GetType() Is GetType(HScrollBar) Then
c.Visible = False
End If
Next c