home *** CD-ROM | disk | FTP | other *** search
- program test2;
- uses
- Graph,
- Post;
-
- var
- i,j:integer;
-
- begin
- PostMode := ModeCRT OR ModeTOP OR ModeVGA;
- i := PostInstall;
- for j := 1 to 2 do
- begin
- for i := 1 to 13 do
- begin
- PostSetFont(i,10);
- Outtextxy(100,i*20,'this is a test');
- end;
- if j = 1 then PostSwap;
- end;
- CloseGraph;
- end.