How do I code an OBJECT CALL that has an optional parameter? If I place both parameters the specification says that the second parameter will be ignored. I want to use the second parameter only.
From the "inc" file:
My Code:
or
generate "Syntax error"
This code compiles but with the wrong result:
From the "inc" file:
Code:
Member Call Move <1836021349> (Opt In PB_To As Variant<0>, Opt In By As Variant<1>)
Code:
OBJECT CALL myRectangle.move(,vtempby)
Code:
OBJECT CALL myRectangle.move(NOTHING,vtempby)
This code compiles but with the wrong result:
Code:
OBJECT CALL myRectangle.move(vtempto,vtempby)
Comment