Thanks, but my problem is, how should i define the input/putput params !

make

Member
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 ?

Make
 

cybvek

New Member
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 ?

Make
 
Top