The Following code
demonstrates How to Change the Shape of the Form to Circle using the Region property of the Form
Add the following in the Load Event of the Form
Dim a As New Drawing2D.GraphicsPath()
a.AddEllipse(0, 0, 400, 400)
Me.Region
= New Region(a)
To Reset The Shape use the Following Code
Me.Region = New Region()
Regards Hefin Dsouza
[Faculty & Coporate Trainner]