Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!philabs!cmcl2!seismo!caip!daemon From: moorel@uv2.decnet@caip.RUTGERS.EDU Newsgroups: net.micro.amiga Subject: Printer Configuration under Preferences Tool Message-ID: <1344@caip.RUTGERS.EDU> Date: Sat, 22-Feb-86 11:17:04 EST Article-I.D.: caip.1344 Posted: Sat Feb 22 11:17:04 1986 Date-Received: Mon, 24-Feb-86 20:20:26 EST Sender: daemon@caip.RUTGERS.EDU Organization: Rutgers Univ., New Brunswick, N.J. Lines: 47 From: "UV2::MOOREL" In answer to Vasili Alexiades, We also have an Epson printer attached to our Amiga, and needed to print files for our software development effort. We set up our printer using the preferences tool in workbench, but our printer will not respond to the control parameters, such as number of lines per page, and we don't know why. This caused us extreme aggravation, as we needed to print out a number of files for our software development effort, and needed the printer to at least auto-formfeed between files. Does anyone know why the printer configuration tool in preferences would not configure the printer, or am I missing something obvious? Meanwhile, here is my temporary fix for printing files on the Epson: Under CLI, you type: 1>execute print filename.dum where filename.dum is the filename + path of what you want to print. print is an indirect file, located in whatever directory the printing will occur from, or provide it a pathname: -------------------------------------------------- .k filename/a df0:c/copy to prt: . We can formfeed the printer automatically using formfeed.e and redirecting . its output. :c_exe/formfeed.e > prt: echo "Printing of done" --------------------------------------------------- Formfeed.e is a compiled C program (of extreme trivality): ---------------------------------------------------- #include main() { printf ("\f"); } __________________________________________________ This directories indicated in the Amiga-dos file are for the workbench to be in df0:, and the formfeed to be on my C development disk (which is where I was printing from, hence the :c_exe/ path to the file. Thanks, Lynne C. Moore ------