Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems using CLOSE_FORM - Help please 1

Status
Not open for further replies.

iainmc

Programmer
Dec 2, 2002
53
GB
This seems like such a basic problem but i have come across some real problems.

I have a form, 'A', and a menu which has links to forms 'A' and 'B'. If i am on form 'A' and the user selcts form 'B' from the menu I want to open form 'B' and close form 'A' and vice versa. As things stand both forms stay open even though I issue CLOSE_FORM commands on the PL/SQL for the relevent menu items.

The online help has said that if I call form 'B' from 'A' then I can't close 'A' from 'B' is this what is happening even though it is the Menu calling form 'B and not form 'A'.

Hope someone can (a understand my blurb and (b shine a little light on my situation.

Thanks
 
My PL/SQL on the menu is like this:

CALL_FORM('A');
CLOSE_FORM('B');

 
Use NEW_FORM instead of CALL_FORM. You wont need to issue the CLOSE_FORM.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top