Re: How to display non-blocking messages in Forms 4.5

From: Valery A. Sorokin <vsorokin_at_dd.ru>
Date: Wed, 24 Jun 1998 17:03:15 +0400
Message-ID: <3590F913.E5CAA3D1_at_dd.ru>


You can use the function:

procedure Say(p_msg VARCHAR2) is
begin
  clear_message;
  message(p_Msg);
  synchronize;
end;

for example:

  loop
    ...
    i := i+1;
    say(TO_CHAR(i)||' record processed...');     ...
    IF (...) THEN
      EXIT;
    END IF;
    ...
  end loop;

I hope this help.

Ezio Paglia wrote:
>
> Dear friends,
>
> I'd like to scan a table and to display some information for each
> record considered in real time. I do not want to force the user to
> press the button each time (through message()), I do not want the user
> to watch this info after the execution either (direct assignment to
> multirecord block) had place.
>
> How to do it ? Is it possible with Forms ? Or may only (Pro)C solve
> this problem ?
>
> Thanks. Ezio.

-- 
Valery A. Sorokin
ProSoft, Russia, Moscow
http://www.dd.ru
Received on Wed Jun 24 1998 - 15:03:15 CEST

Original text of this message