pcl

How to printing duplex sections with Word 2007

I have a Word 2007 document with many sections. Each section enables / disables duplex using a PCL5 escape code in the header on page 1 of the section. PCL5 printers are getting rarer, especially high volume / capacity ones. Is there an equivalent generic code that could be used instead of a printer specific code? Or is there a PCL6 ...

Convert several thousands Word doc into single PCL file

Our customer has tens of thousands of correspondence letters in Word 2007 format. They need to combine all the letters into a single large PCL file, which is then sent to the print vendor for bulk printing. From what i understand PCL content is generated by a specific printer driver. So whether interactively or programmatically with VBA...

Printers common interface

What is a common printer interface today? I've read most of them support PostScript and/or PCL. How should I use PS/PCL from an app code (say, under Win32)? ...

How to print a pcl file in c#?

I have a PCL file that I generated using "print to file". What's the best way to programmatically print this file in C#. (Given of course that the printer I am printing to supports PCL). I know that from prompt I can print by invoking: copy filename.pcl //location/printername So I would imagine that I could also do the same thing...

Printing a pcl file in c# not working, suggestions?

I'm trying to print a pcl file programatically in c#. I'm using the following Microsoft link for reference. (Note it's in VB) http://support.microsoft.com/kb/298141 Unfortunatly, it's not work .. I'm only getting blank pages printed. Note that if I just copy the pcl file to the printer from prompt - i.e. copy filename printer. ...

Undeclared identifiers in C

Hi all I've been trying to compile a program that uses PCL. However, I keep getting this error: test.c:23: error: ‘PCL_CNT_TYPE’ undeclared (first use in this function) test.c:23: error: (Each undeclared identifier is reported only once test.c:23: error: for each function it appears in.) test.c:23: error: expected ‘;’ before ‘i_result_...

Print XML as PDF using PCL

I have an xml file with which i want to print as a PDF using PCL. I am new to PCL. Can i use PCL to get the xml printed in PDF format directly or should i have some intermediate process to create a PDF file and then use PCL to get it printed as PDF? ...