home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hacker Chronicles 2
/
HACKER2.BIN
/
450.NETHELP.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1989-07-13
|
2KB
|
32 lines
procedure mainhelp;
var savescrn : array[0..3999] of byte;
savex, savey : integer;
begin
savex := wherex;
savey := wherey;
FillPage(@savescrn);
clrscr;
at(05,03,' HOME - Top of List moved to current position');
at(05,04,' END - End of list moved to current position');
at(05,05,' UP ARROW - Current moved up one entry in list');
at(05,06,'DOWN ARROW - Current moved down one entry in list');
at(05,07,' PG UP - Current moved to marker (1)');
at(05,08,' PG DWN - Current moved to marker (2)');
at(05,09,' GREY - - Current marked as (1)');
at(05,10,' GREY + - Current marked as (2)');
at(05,11,' CTL-END - Exit From NET *** this is the only allowable exit ***');
at(05,12,' F5 - Delete the "current" entry from the log-in list');
at(05,13,' NOTE : Record is NOT deleted from external data base');
at(05,14,' F10 - Change status attribute of "current" log-in list entry.');
at(05,15,' : Normal attribute');
at(05,16,' - Logged Out');
at(05,17,' <alt> F1 - Edit the data base for the "current" entry');
at(05,18,' if log-in set is empty, the first record is edited');
at(05,20,' New log-ins are automatically added to the external database');
at(05,21,' Both old and new records may be edited using the <alt> F1 function.');
gotoxy(28,24);
wait('press any key to continue');
DisplayPage(@savescrn);
gotoxy(savex,savey);
end;