/* The following SAS program may be used to correct several invalid parameters in the DJ1600C device driver for the HP DeskJet 1600C printer. It is assumed that the driver entry to be modified resides in the SASHELP.DEVICES catalog. You must have update access to this catalog before running the following program. NOTE: THIS CODE IS FOR USE WITH RELEASE 6.11 (TS020) OF SAS/GRAPH SOFTWARE. THE PROBLEM IS CORRECTED AT RELEASE 6.11 (TS040). */ proc gdevice c=sashelp.devices nofs; modify DJ1600C lrows=50 lcols=72 xmax=8.000 ymax=10.000 xpixels=8128 ypixels=10160 gprolog='1B252D31323334355840504A4C20454E544552204C414E'x '47554147453D50434C0A1B451B253142494E3B5452303B'x gepilog='1B2531411B252D313233343558'x ; run; quit;