Hi I just create app with EIP feature. And my clarion is 6.3 version. I try to follow the app from EIPorig.app example but found an error " unknown Procedure " my script are
UPDATE(SELF.FEQ)
Prod:ID = SELF.UseVar
GET(Product, Prod:PK_Product_1)
IF ERRORCODE() OR pForce
GlobalRequest = SelectRecord
SelectProduct
IF GlobalResponse = RequestCompleted
SELF.UseVar = Prod:ID
ReturnValue = EditAction:Ignore
ELSE
ReturnValue = EditAction:None
END
ELSE
ReturnValue = EditAction:Ignore
END
RETURN ReturnValue
The error shows at the selectproduct syntax. I have create the procedure but still the same.
And there’re 2 EIP example app on the Clarion 6.3 example one is EIPOrig.app and EIPnew.app I found the difference on column specific menu. Does anyone know how to make the eiporig same as eipnew.app ? what is the steps?
Thanks
Joe