developer2000 [message #79713] |
Thu, 04 July 2002 07:48 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
aditya bhargava
Messages: 1 Registered: July 2002
|
Junior Member |
|
|
how can i suppress(REMOVE) default system message"DO YOU WANT TO SAVE CHANGES YES OR NO OR CANCLE"
THIS MESSAGE POPUP WHEN WE CHANGE FROM NORMAL TO EXECUTE QUERY MODE OR WHEN WE EXIT FROM FORM...I WANT THAT NO MESSAGE SHOULD BE GENERATE AND NO COMMIT(SAVE) SHOULD HAPPEN IN DATA BASE...
|
|
|
Re: developer2000 [message #79720 is a reply to message #79713] |
Thu, 04 July 2002 21:13 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Ravi
Messages: 251 Registered: June 1998
|
Senior Member |
|
|
If you want to exit and don't want any alert then You can do like this :
clear_form(no_validate);
exit_form;
If you want to come into enter-query mode and don't want any alert then You can do like this :
clear_form(no_validate);
enter_query;
let me know if this works
|
|
|