A parameter can be:
INPUT PARAMETER, OUTPUT PARAMETER or INPUT-OUTPUT PARAMETER.
example:
ON CHOOSE OF btnGo
DO:
RUN brw.w(INPUT iQry,OUTPUT iRow).
/* Here the "INPUT" is not necessery, default all parameter is input, but it's better to use*/
END.
brw.p:
--------
DEFINE INPUT PARAMETER piQry AS INTERGER NO-UNDO.
DEFINE OUTPUT PARAMETER piRow AS INTEGER NO-UNDO.
piRow = .......
Regards,
Viktor
Originally posted by make Thanks for you post. But my problem, that i dont know how i should define the input/output params. And how do i call them.
With the run statement ?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.