Home » Developer & Programmer » Forms » Displaying message From Forms 6i
Displaying message From Forms 6i [message #84544] Mon, 29 March 2004 05:54 Go to next message
nigist
Messages: 5
Registered: January 2002
Junior Member
Hi all,

I am running a procedure from form 6i using when button pressed.while it runs I want to display message that the program is running. If I use message(' kkkkkk;); it display at the bottom and it is hard to see. If I use alert, once they click okay, there is nothing telling them that the program is still running. My question is , is there any other way of display message while the program runs and i can use alert to tell them it finised.

Thanks A lot
Re: Displaying message From Forms 6i [message #84547 is a reply to message #84544] Mon, 29 March 2004 09:58 Go to previous message
jan
Messages: 71
Registered: August 2002
Member
one way of taking care of this situation is to
create a text/display item and change the text from the procedure.
.e.g

lets say you created a text item called process_status.
in your procedure you can say

delcare
begin

:process_status :=' Procedure Started';

..
..
..
:process_status := 'Calculating the results...';
..
..
..
:process_status := 'Process Completed Successfully.';

EXCEPTION
when others then
:process_status := 'Errorencountered';

END;

you can even change the font and color so that it attracts the user's attention.

Hope this helps.

Jan
Previous Topic: Urgent! Problem with DDE Execution
Next Topic: Multithreaded app in Forms 4.5
Goto Forum:
  


Current Time: Mon May 06 15:38:12 CDT 2024