Jul 18, 2002 #1 0kioyp Programmer Jun 15, 2002 13 US form A is main form a call form b form a call form c then close form a then form b and form c is active how to close all form?
form A is main form a call form b form a call form c then close form a then form b and form c is active how to close all form?
Jul 22, 2002 #2 jhoann Programmer Apr 18, 2002 81 PH use - hide_view('form a'); use - hide_view('form b'); or if you are closing the form to exit please use - exit_form; Hope this can help Jhoann Upvote 0 Downvote
use - hide_view('form a'); use - hide_view('form b'); or if you are closing the form to exit please use - exit_form; Hope this can help Jhoann
Jul 24, 2002 #3 sem Programmer Jun 3, 2000 4,709 UA You may set some global variable and check its value in when-window-activated trigger of each form: procedure exit_all is :global.closing_all:='Y'; exit_form; end; w-w-a trigger: if :global.closing_all='Y' then exit_form; end if; Upvote 0 Downvote
You may set some global variable and check its value in when-window-activated trigger of each form: procedure exit_all is :global.closing_all:='Y'; exit_form; end; w-w-a trigger: if :global.closing_all='Y' then exit_form; end if;
Jul 25, 2002 Thread starter #4 0kioyp Programmer Jun 15, 2002 13 US I'm used function 'open_form' Main Form (form A) --> open_form('form B') Main Form (form A) --> open_form('form C') But when I'm close form A then form B and form C are Active How to closing all form ? Thank you. Upvote 0 Downvote
I'm used function 'open_form' Main Form (form A) --> open_form('form B') Main Form (form A) --> open_form('form C') But when I'm close form A then form B and form C are Active How to closing all form ? Thank you.