Re: can change message's color?

From: A. Goodwin <agoodwin_at_paladindata.com>
Date: Sat, 23 Oct 1999 21:19:05 -0700
Message-ID: <s152ohi485941_at_corp.supernews.com>


[Quoted] Try this:

Create an alert for your message box and define your color requirements in the property palette. Use the set_alert_property built in to change the message before displaying the alert, and the show_alert function to display the alert.

Here is sample code from the help doc:
DECLARE
   alert_id ALERT := Find_Alert('generic_alert');    dummy_var NUMBER;
BEGIN
   Set_Alert_Property(alert_id, ALERT_MESSAGE_TEXT, 'The product      you selected is not in stock');

  • now show the alert dummy_var := Show_Alert(alert_id); END;
HTH! Received on Sun Oct 24 1999 - 06:19:05 CEST

Original text of this message