Round It Code:
Private Sub makeRound(ByVal vObject As Object)
Dim p As New Drawing2D.GraphicsPath()
p.StartFigure()
p.AddArc(New Rectangle(0, 0, 20, 20), 180, 90)
p.AddLine(20, 0, vObject.Width - 20, 0)
p.AddArc(New Rectangle(vObject.Width - 20, 0, 20, 20), -90, 90)
p.AddLine(vObject.Width, 20, vObject.Width, vObject.Height - 20)
p.AddArc(New Rectangle(vObject.Width - 20, vObject.Height - 20, 20, 20), 0, 90)
p.AddLine(vObject.Width - 20, vObject.Height, 20, vObject.Height)
p.AddArc(New Rectangle(0, vObject.Height - 20, 20, 20), 90, 90)
p.CloseFigure()
vObject.Region = New Region(p)
End Sub