home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.barnyard.co.uk
/
2015.02.ftp.barnyard.co.uk.tar
/
ftp.barnyard.co.uk
/
cpm
/
walnut-creek-CDROM
/
MBUG
/
MBUG013.ARC
/
TESTPCG.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1979-12-31
|
1KB
|
42 lines
program TestPCG;
{$I lores.pro }
{$I inverse.pro }
{$I big.pro }
{$I uline.pro }
{$I bold.pro }
{$I boldulin.pro }
type
string13 = string[13];
procedure PrintPCG(Message : string13);
var
i : integer;
begin { PrintPCG }
ClrScr;
GotoXY(1,10);
writeln('Current font is ', Message);
for i := 0 to 127 do
write(chr(128+i));
writeln;writeln;
write('<Press any key to continue>');
repeat until keypressed
end; { PrintPCG }
begin { TestPCG }
PrintPCG('INVERSE ');
Lores; PrintPCG('LORES ');
Underline; PrintPCG('UNDERLINE ');
Bold; PrintPCG('BOLD ');
BoldUnderline; PrintPCG('BOLDUNDERLINE');
Big; PrintPCG('BIG ');
Inverse; PrintPCG('INVERSE ')
end. { TestPCG }