HI,
I have two files: *.w and *.p. The first represents window with fill-in fields and buttons. When one of the buttons is selected, it runs something like this:
/*--------*/
DEFINE VAR fill1Handle AS WIDGET-HANDLE NO-UNDO.
ASSING fill1Handle = FILL-IN-1:HANDLE.
RUN externalProcedure.p (INPUT fill1Handle).
/*--------*/
From .w file I'm able to display the value of FILL-IN-1:
MESSAGE FILL-IN-1 ....
I would like to do this also in .p file by using fill1Handle. Now I can only access to SCREEN-VALUE, INPUT-VALUE, ...
Is there any way how to display or change value in FILL-IN-1 in externalProcedure when I use a widget's handle ?
Thanks
I have two files: *.w and *.p. The first represents window with fill-in fields and buttons. When one of the buttons is selected, it runs something like this:
/*--------*/
DEFINE VAR fill1Handle AS WIDGET-HANDLE NO-UNDO.
ASSING fill1Handle = FILL-IN-1:HANDLE.
RUN externalProcedure.p (INPUT fill1Handle).
/*--------*/
From .w file I'm able to display the value of FILL-IN-1:
MESSAGE FILL-IN-1 ....
I would like to do this also in .p file by using fill1Handle. Now I can only access to SCREEN-VALUE, INPUT-VALUE, ...
Is there any way how to display or change value in FILL-IN-1 in externalProcedure when I use a widget's handle ?
Thanks