Path: utzoo!utgpu!watmath!clyde!mcdchg!ddsw1!andyross From: andyross@ddsw1.MCS.COM ([andrew rossmann]) Newsgroups: comp.sys.ibm.pc Subject: Need Help With Graphics Printing Keywords: Panasonic 1124 Graphics Printers IBM PC Message-ID: <[775.1]andyross@ddsw1.comp.ibmpc;1> Date: 10 Dec 88 01:00:07 GMT References: <838@starfish.Convergent.COM> Lines: 27 Any data sent to the printer via DOS will have any 1Ah (^Z) characters stripped out. Instead, you should use the BIOS. Just make a call to INT 17h with AH=0, AL=character, DX=printer number (0=LPT1...) In Turbo Pascal 5.0: program anything; Uses DOS; procedure pout(data: byte; port: word); var regs: registers; begin with regs do begin AH:=0; AL:=data; DX:=port; Intr($17, regs) end end; {pout} begin {main program} end. {anything} andyross@ddsw1.mcs.com -or- ...!ddsw1!andyross