home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / do1beta.zip / HELP.DO < prev    next >
Text File  |  1991-07-18  |  170b  |  9 lines

  1. /*
  2.     create an index for the hypertext help files
  3. */
  4. db = new(Dbffile,"help");
  5. ndx = createIndex(db,"help","topic",0,0);
  6. ? "help index created";
  7. close(ndx);
  8. exit;
  9.