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