home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 450.NETHELP.PAS < prev    next >
Pascal/Delphi Source File  |  1989-07-13  |  2KB  |  32 lines

  1. procedure mainhelp;
  2. var savescrn : array[0..3999] of byte;
  3.     savex, savey : integer;
  4. begin
  5.   savex := wherex;
  6.   savey := wherey;
  7.   FillPage(@savescrn);
  8.   clrscr;
  9.   at(05,03,'      HOME   -   Top of List moved to current position');
  10.   at(05,04,'       END   -   End of list moved to current position');
  11.   at(05,05,'  UP ARROW   -   Current moved up one entry in list');
  12.   at(05,06,'DOWN ARROW   -   Current moved down one entry in list');
  13.   at(05,07,'     PG UP   -   Current moved to marker (1)');
  14.   at(05,08,'    PG DWN   -   Current moved to marker (2)');
  15.   at(05,09,'    GREY -   -   Current marked as (1)');
  16.   at(05,10,'    GREY +   -   Current marked as (2)');
  17.   at(05,11,'   CTL-END   -   Exit From NET *** this is the only allowable exit ***');
  18.   at(05,12,'        F5   -   Delete the "current" entry from the log-in list');
  19.   at(05,13,'                 NOTE :  Record is NOT deleted from external data base');
  20.   at(05,14,'       F10   -   Change status attribute of "current" log-in list entry.');
  21.   at(05,15,'                      :  Normal attribute');
  22.   at(05,16,'                      -  Logged Out');
  23.   at(05,17,'  <alt> F1   -   Edit the data base for the "current" entry');
  24.   at(05,18,'                   if log-in set is empty, the first record is edited');
  25.   at(05,20,' New log-ins are automatically added to the external database');
  26.   at(05,21,' Both old and new records may be edited using the <alt> F1 function.');
  27.   gotoxy(28,24);
  28.   wait('press any key to continue');
  29.   DisplayPage(@savescrn);
  30.   gotoxy(savex,savey);
  31. end;
  32.