Graphics Demo Page

The hyperlinks on this page contact the VBForm and draw various shapes on it.

Circles

The Visual Basic method for drawing circles on a Form or PictureBox control is called Circle and its syntax is:
Circle (X, Y), R
X and Y are the center's coordinates and R is the circle's radius.
Draw A Circle

Squares

To draw squares use the Line method, whose syntax is:
Line (X1, Y1) - Step (X, Y)
X1 and Y1 are the coordinates of the upper left corner of the square and X and Y are the square's dimensions.
Draw A Square