Re: progress bar in forms 4.5???
Date: Wed, 26 Aug 1998 20:04:28 GMT
Message-ID: <35e467ab.1476503_at_news.telekabel.at>
Hi,
create a display item, which has set
background color=blue,
bevel=none,
width=0
use the following code to set the progress bar
procedure set_percent (
p_percent IN NUMBER )
IS
MAX_WIDTH_K CONSTANT NUMBER := 145;
BEGIN
SET_ITEM_PROPERTY (
'TEST.PROGRESS_BAR', WIDTH, (MAX_WIDTH_K / 100 ) * p_percent );
SYNCHRONIZE;
END;
That's all
Patrick
On Wed, 26 Aug 1998 09:09:20 -0800, nha_12_at_hotmail.com (N.hamad) wrote:
> I have a form do some internal calculation and this take time ,I need to implement a progress bar during the calculation so the user can not exit form until the process is finished .
>
>
>any help on how to do it ????
>
>Thanks
>
>
> -**** Posted from Supernews, Discussions Start Here(tm) ****-
>http://www.supernews.com/ - Host to the World's Discussions & Usenet
Patrick Wolf
[Quoted] Working for Scientific Games, Vienna
E-Mails: patrick.wolf_at_telekabel.at (home)
wolf_at_scigames.at (work) Received on Wed Aug 26 1998 - 22:04:28 CEST