In this post I will teach you about the vb.net form scroll bar from only right side it is very important tool for us because some time we put a lot of data in form and we need to show this data to the user for that you use the below coding .

Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.HorizontalScroll.Maximum = 0 Me.AutoScroll = True End Sub End Class
 
Top