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