home *** CD-ROM | disk | FTP | other *** search
- (* ------------------------------------------------------ *)
- (* GHC_DEMO.PAS *)
- (* Demonstrationsprogramm der Unit GraphHC *)
- (* ------------------------------------------------------ *)
- PROGRAM GHC_DEMO;
-
- USES Crt, Dos, Graph, GraphHC;
-
- VAR GraphMode, GraphDriver : INTEGER;
- ch : CHAR;
-
- BEGIN
- GraphDriver := Detect;
- InitGraph(GraphDriver, GraphMode,'');
- SetTextStyle(1, 0, 4);
- OutTextXY(0, 10, 'Demonstration der');
- OutTextXY(0, 70, 'Hardcopyroutine der');
- OutTextXY(0, 130, 'Unit GraphHC');
- ch := ReadKey;
- GraphHardcopy; (* Routine der Unit GraphHC *)
- ch := ReadKey;
- CloseGraph;
- END.
- (* ------------------------------------------------------ *)
-