simple question

make

Member
Hi,
i have created 3 little Programm with UIB. Programm 1 starts Programm 2 (with a press of a button). When i want to close the window of Programm2, Programm 1 is also closing.
I used the Dialog Widget from Progress UIB.
Is there a possibility to close only Programm 2 and not Programm 1.?

Greets Make
 
Hi Make,

I don't know for sure if I understand you but if you want to close a window you can use:
APPLY "CLOSE":U TO THIS-PROCEDURE.

If you want to close a dialog you can use:
APPLY "GO":U TO FRAME {&FRAME-NAME}.

You can put this code in the choose-trigger of a button.
 
Top