Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to make a pop-up message disappear automatically after few seconds in Oracle Forms.

Hi,

I need to make user wait for a period of 5seconds to do a specific task in oracle Forms. during this 5 seconds wait time I need to show a pop-up message to user. I have sample code below.

--Show the error as popup alert message box
BEGIN IF( Condition )THEN
MESSAGE('This is an error.');
MESSAGE('');
END IF;
END;

But I need to know if there is any way that I can make pop-up message disappear automatically from the form and allow the user to continue with his task?

How to acheive this? Automatically remove pop-up message from the form after few seconds.

Thanks,

Naveen Kumar

I

Comments
Post Details
Added on Oct 12 2023
3 comments
715 views