home *** CD-ROM | disk | FTP | other *** search
- /*
- demonstrate the "locate" method with and without the "softseek"
- option
- */
- db = new(Dbffile,"patient");
- set("softseek",T);
- top(db);
- locate(db,"lname","lname10");
- ? recno(db);
- set("softseek",F);
- top(db);
- locate(db,"lname","lname10");
- ? recno(db);
-
-