when i call a new form using new_form it is not displaying some times [message #175096] |
Wed, 31 May 2006 14:21 |
ramanajv1968
Messages: 168 Registered: December 2005 Location: HYDERABAD
|
Senior Member |
|
|
Hi,
In my login form it contains USERNAME ,PASSWORD fields.
A user had valid username/password and when he press SIGNIN Button it should show a new form.
So , for this purpuse i wrote the following code on WHEN-BUTTON-PRESSED trigger on
SIGNIN Button.
-------when-button-pressed trigger on signin button-----
select 'X' into :global.dummy from sw_login
where swusername = :sw_login.swusername and
swpassword = :sw_login.swpassword;
new_form('c:project\BookInformation',hide,no_replace,no_query_only,'X');
-------------------------------------------------------------------
And my problem is once it showed the new form.But ,some time later i again recompiled the main form.for that moment onwards
it is not displaing the new form .Every thing before first successful attempt and failued attempt remains same.i mean no changes to the code has made.
I am using forms6i and oracle 8.1 ver
Any help in this regards is appriciable,
ramana
|
|
|
|
|
Re: when i call a new form using new_form it is not displaying some times [message #175162 is a reply to message #175107] |
Thu, 01 June 2006 02:36 |
ramanajv1968
Messages: 168 Registered: December 2005 Location: HYDERABAD
|
Senior Member |
|
|
Thanks for u r prompt response.
Assume the user entered a valid user name and password and pressed signin button then.....
I deleted the to_savepoint option from "new_form" and compiled once and then again i used to_savepoint option in the "new_form" and compiled again this time surprisingly i am able to see the new form.
Actually what is going behand?
|
|
|
|