A Division of Technology Associates International Corporation
Maximo Blog

Oracle Forms alert box

March 01, 2007 in Oracle Forms by Michael Chrisman 0 Comments

When the working with Oracle From in an applet mode, about the only choice you have to display debug data is to use and alert box. Here is the code to do it: set_alert_property(al_id,ALERT_MESSAGE_TEXT,'This is the message.'); set_alert_property(al_id,TITLE,'This is the box Title.'); alert_return:=Show_Alert(al_id);

Read More