J. Notes for Users of QUEL : Redisplay (QUEL)
 
Share this page                  
Redisplay (QUEL)
Refreshes frame and displays current values.
QUEL examples are given below. See Redisplay for a description of the redisplay statement.
Example
Display a newly created part number before appending the values displayed in the form to the database table part:
"Add" = 
begin
  editparts := retrieve (partno = 
    max(part.partno) + 1); 
  redisplay; 
  sleep 2; 
  append part (editparts.all); 
end