شما باید از رویداد Paint مربوط به Form و متد Region استفاده کنید.این نمونه کد فرم شما رو گرد میکنه با کمی تغییرات میتونید اونی رو که میخواهید بدست بیارید
کد:
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim graphic_path As New System.Drawing.Drawing2D.GraphicsPath()
graphic_path.AddEllipse(3, 2, 295, 295)
Me.Region = New Region(graphic_path)
Dim orgin As Point = Me.PointToScreen(New Point(0, 0))
e.Graphics.TranslateTransform(Me.Left - orgin.X, Me.Top - orgin.Y)
e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
e.Graphics.FillPath(Brushes.Salmon, graphic_path)
e.Graphics.DrawPath(New Pen(Color.Black, 5), graphic_path)
End Sub