oracle - close form A when open form B -


i use

open_from('b');  

in when-button-pressed trigger open form b form a.
how close form a when open form b using when-button-pressed in oracle form builder?

try this:

close_form('a'); open_form('b'); 

or

call_form('b'); 

by using call_form hide form , display b , when user exit b active.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -