- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Using PCL codes...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2004 05:37 AM
тАО07-14-2004 05:37 AM
Using PCL codes...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2004 07:04 PM
тАО07-14-2004 07:04 PM
Re: Using PCL codes...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2004 08:26 PM
тАО07-14-2004 08:26 PM
Re: Using PCL codes...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2004 10:25 PM
тАО07-14-2004 10:25 PM
Re: Using PCL codes...
PCL standard is evolved since dos application; most common code are still valid but on new printer there are some difference.
Mainly PCL5 and PCL need code sequence introducer before starting print as
If you need PCL standard you can read follow pdf document http://h20000.www2.hp.com/bc/docs/support/SupportManual/bpl13210/bpl13210.pdf
I use PCL code for my application: if you meet some trouble post again I'll answer you.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2004 11:51 PM
тАО07-14-2004 11:51 PM
Re: Using PCL codes...
My problem is as follows. I have a printing application written in FoxPro for Dos which we use for printing Statements. These Statements work fine when printed to a LexMark printer. We have now purchased a Canon printer and some of the codes do not now work. Everytime we send a print job to the printer a bank page is output with an 'E' printed on the top left hand corner. Also we need to print signatures on some of our Statements but when I copy the Signature macro to the Lpt1 port another blank page is output with '&alG' printed on the top left hand corner. The Statements then print offline after this. I have attached the PCL code currently been used if that will help. Idealy we should probably use Visual Basic or another programming language to print the Statements but at the moment our code is written in FoxPro so I am under a bit of pressure to get this working. What programming language do you use? The Statements we print are quite complicated i.e. we have to underline headings, draw boxes, output data using different fonts etc.
Thanks,
Kevin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2004 12:53 AM
тАО07-15-2004 12:53 AM
Re: Using PCL codes...
first I think you wrong forum ... however ...
You have some dos application sending PCL code to printer; your application start with esc E and this is right; I don't known other codes but I suppose they are right.
I guess your trouble is not in dos application but in windows/driver/printer chain; most printer can't yet work in dos emulation but only using windows driver; when your application send introducer code (esc + E) the control code esc is discarded by windows driver and printer recevice only uppercase E and eject page because has not recognize the PCL reset code.
Question are:
1) Can you send simple text (without control code) to printer?
2) Do you find a dos driver in CD of your printer (some printer have 2 drivers, one for windows and 1 for dos)?
3) Your printer in sold only for windows or for unix too (if is not unix compatible, means doesn't accept escape code directly to device)?
H.T.H.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2004 01:13 AM
тАО07-15-2004 01:13 AM
Re: Using PCL codes...
The problem is most of the PCL codes work apart from the two mentioned i.e. a blank page been ejected with 'E' been printed and the signature macro command. Will look into the dos driver situation.
Thanks,
Kevin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2004 05:40 AM
тАО07-15-2004 05:40 AM
Re: Using PCL codes...
if most code works, driver might work fine.
I'm amazed esc E doesn't work.
About macro, I never used them so I'm not sure you code is right for new printer; reading HP documentation seems macro code is supported as you wrote in your foxpro example.
May be a wrong page definition: I guess you are using A4 paper (or legal paper) but you have not defined this page format.
After PclSetup procedure, can you print a simple text?
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-15-2004 08:43 PM
тАО07-15-2004 08:43 PM
Re: Using PCL codes...
Will try this and see how I get on.
Kevin.