home *** CD-ROM | disk | FTP | other *** search
- /tab {
- currentpoint exch pop
- leftmargin 120 add exch
- moveto
- } def
- /nextline {
- currentpoint leftmargin exch ptsize sub moveto
- currentpoint exch pop bottommargin le {
- /leftmargin leftmargin columnwidth add def
- leftmargin topmargin moveto
- } if
- } def
- /sshow {s cvs show} def
- /tshow {tab sshow nextline} def
- /printerinfo {
- statusdict begin
- /printername where
- {pop (Device name) show 64 string printername tshow} if
- /version where {pop (PostScript version) show version tshow} if
- nextline
- end
- } def
- /memoryinfo {
- vmstatus
- dup
- 3 -1 roll
- sub sshow ( of ) show
- sshow ( bytes available VM) show nextline nextline
- pop
- } def
- gsave
- initgraphics
- clippath
- pathbbox
- /y2 exch def
- /x2 exch def
- /y1 exch def
- /x1 exch def
- grestore
- /s 128 string def
- /ptsize 12 def
- /columnwidth 220 def
- /topmargin y2 ptsize sub 5 sub def
- /leftmargin x1 5 add def
- /bottommargin y1 10 add def
- /Times-Roman findfont 12 scalefont setfont
- leftmargin topmargin moveto
- printerinfo
- memoryinfo
- nextline
- /Times-Bold findfont 14 scalefont setfont
- (The Error Handler is in place) show
- showpage