PreviousNextIndex

STATUS statement

Specifies the text that appears in the status line of a window. The AVM displays the following default messages on that line:

Syntax

STATUS 
  {   DEFAULT [ expression ] 
    | INPUT [ OFF | expression ] 
  } 
  [ IN WINDOW window ] 

DEFAULT expression
INPUT OFF
INPUT expression
IN WINDOW window
Example

This procedure replaces the default status messages with two other messages:

r-status.p
STATUS DEFAULT "All Around Sports Order Processing System". 
STATUS INPUT "Enter data, or use the " + KBLABEL("END-ERROR") + 
  " key to exit". 
FOR EACH Customer: 
  DISPLAY Customer.Name. 
  FOR EACH Order OF Customer: 
    UPDATE Order.OrderNum Order.PromiseDate Order.OrderDate Order.ShipDate. 
  END. 
  UPDATE Customer.CreditLimit. 
END. 

Notes
See also

MESSAGE statement, PAUSE statement


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex