How to Create a Circle in the Form Using VB.Net

This time, I will teach you how to create a circle in the form using vb.net. This method has the ability to draw a circle in the form. This circle will automatically appear when the form is already loaded. This program is simple and you can make it as an activity in the school in programming subject. Let's begin.

Creating Application

Step 1

Open Microsoft Visual Studio 2015 and create a new windows form application. figure 1

Step 2

Click the form and go to properties. In the properties, click the event just like a lightning volt and double click the paint event. figure 2

Step 3

In the code editor, write the following code for creating a circle.
  1.    
  2.     Private Sub Form1_Paint(sender As Object, e As PaintEventArgs) Handles MyBase.Paint
  3.         Dim grapics As Graphics = Me.CreateGraphics()
  4.      
  5.         grapics.FillEllipse(System.Drawing.Brushes.Blue, 0, 0,
  6.             Me.ClientSize.Width - 5,
  7.             Me.ClientSize.Height - 5
  8.             )
  9.     End Subs
The complete source code is included. You can download it and run it on your computer. For any questions about this article. You can contact me @ Email – [email protected] Mobile No. – 09305235027 – TNT Or feel free to comment below.

Add new comment