home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-385-Vol-1of3.iso
/
f
/
faq-s.zip
/
FILELIST.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1990-10-20
|
1KB
|
23 lines
Procedure topfileline;
begin;
if asciigraphics in urec.config then begin
writeln (^R'┌───┬──────────────┬────────┬───────────┬────────────────────────────┬────────┐');
writeln (^R'│ '^S'# '^R'│ '^S'Filename Ext '^R'│ '^S'Cost '^R'│ '^S'Size '^R'│ '^S'Program Description '+
^R'│ '^S'Disk '^R'│');
writeln (^R'├───┼──────────────┼────────┼───────────┼────────────────────────────┼────────┤');
end else begin
writeln (^R'+---+--------------+--------+-----------+----------------------------+--------+');
writeln (^R'| '^S'# '^R'| '^S'Filename Ext '^R'| '^S'Cost '^R'| '^S'Size '^R'| '^S'Program Name '+
^R'| '^S'Disk '^R'|');
writeln (^R'|---|--------------|--------|-----------|----------------------------|--------|');
end;
end;
Procedure bottomfileline;
begin
if asciigraphics in urec.config then
writeln (^R'└───┴──────────────┴────────┴───────────┴────────────────────────────┴────────┘')
else
writeln (^R'+---+--------------+--------+-----------+----------------------------+--------+');
end;