Visual Basic 6.0 uses a unique syntax for the Circle method, which the toolkit does not support. Instead, the toolkit provides the DrawCircle method, which has a standard method call syntax.
The following code example shows a statement that generates a Circle Method Not Supported error.
ThisForm.Circle (CX, CY), Radius, Color
The following code example shows how to revise the statement to avoid the error.
ThisForm.DrawCircle CX, CY, Radius, Color