Was this helpful?
Next (QUEL)
Displays the next row of retrieved data on the form.
QUEL examples are given below. See Next for a description of the next statement.
Example (QUEL Only)
Retrieve employee information one row at a time into the simple fields of empform (this is an example of an attached query with a submenu):
empform := retrieve (employee.lname, employee.fname,
  employee.empnum)
  where employee.empnum <=100 
  begin
    submenu statements here including:
    "NextRow" = 
    begin 
      next; 
    end 
  end;
Last modified date: 11/28/2023