Circle Method Not Supported

Visual Basic uses an unusual syntax for the Circle method, which is not supported for Windows CE. The DrawCircle method, which has the normal method call syntax, is provided instead.

Example of statement with this error:

ThisForm.Circle (CX, CY), Radius, Color

Change to:

ThisForm.DrawCircle CX, CY, Radius, Color