home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / DATABASE / DO1BETA.ZIP / DBFTEST.DO < prev    next >
Text File  |  1991-08-25  |  399b  |  14 lines

  1. /*
  2.     create a menu of all the last names within a range
  3.     of records in the dbf file
  4.     NOTE - you must run the CRDEMO.DO file before running this program
  5. */
  6. d = new(Dbffile,"patient");
  7. setFilter(d,#(recno(d) >= 8L) & (recno(d) <= 15L));
  8. a = sort(asCollection(d,#trim(lname)));
  9. m = new(Menu,80,3,3,5,31,3,a," Last Name ");
  10. c = choice(m,1);
  11. remove(m);
  12. ? "your menu choice was ",c;
  13. close(d);
  14.