Scale Method Not Supported

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

Example of statement with this error:

ThisForm.Scale (0, 110)  (130, 0)

Change to:

ThisForm.SetScale 0, 110, 130, 0