- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- DCPS Printer Queue Page Boundaries
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
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
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
01-02-2008 07:17 PM - last edited on 11-25-2012 07:56 PM by Maiko-I
01-02-2008 07:17 PM - last edited on 11-25-2012 07:56 PM by Maiko-I
I am trying to print a page with 69 lines via VMS operating system on HP 8150 printer. The VMS queue is created via DCPS software and using this queue, the printer prints only 68 lines pp. The printed text contains ANSI escapes for bolding "[1m"...
Can anyone help me solve this problem?
P.S. This thread has been moved from Archived Printing Boards > Black and White to OpenVMS > sysadmin - HP Forums Moderator
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2008 06:56 AM
01-03-2008 06:56 AM
SolutionIs this file being printed in portrait or landscape mode? If landscape, is the orientation selected with an ANSI escape sequence or with the DCPS parameter PAGE_ORIENTATION=LANDSCAPE?
Are you using a form (PRINT /FORM) or setup module (PRINT /SETUP)? If you're using a form, what is the definition of the form (SHOW QUEUE /FORM /FULL).
Without knowing the answers to these questions, it is likely you'll have to use another ANSI escape sequence to select 69 lines per page and/or change your form definition if you have one.
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 01:21 AM
01-04-2008 01:21 AM
Re: DCPS Printer Queue Page Boundaries
and then in menu configure device/printing change setting for WIDE A4 to yes (if it is supported by this printer)
Don't know VMS at all, so I can't suggest if and how to change this in the system - basically you should be able to do the same somehow
good luck
petr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2008 08:25 AM
01-04-2008 08:25 AM
Re: DCPS Printer Queue Page Boundaries
Paul
HP OpenVMS Engineering
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2008 07:35 AM
01-09-2008 07:35 AM
Re: DCPS Printer Queue Page Boundaries
Branko, you said in the other thread:
> I am trying to print a page with 69 lines via VMS operating system on HP 8150 printer. The VMS queue is created via DCPS software and using this queue, the printer prints only 68 lines pp. The printed text contains ANSI escapes for bolding "
There are ANSI escape sequences that could help you. The DECSLPP sequence changes lines per page and the DECVERP sequence changes vertical pitch. You might have to add one or both of those sequences, or others, to get 69 lines per page. These sequences are documented in the "DIGITAL ANSI-Compliant Printing Protocol Level 3 Programming Reference Manual". If you cannot get a copy of this manual, I can send it to you in PDF form.
These sequences might not offer what you want, as they jump from 66 to 88 lines per page, so a 69-line page might have lots of white space at the bottom.
To change to 88 lines per page:
where
> Would anyone know the commands in Postscript language to facilitate 69 lines via "setup postscript module"?
Since you're using ANSI escape sequences, you would probably not use a PostScript setup module to accomplish this.
> I can use the PCL commands that can help me: "
If you want to use PCL escape sequences, then you would have to change the ANSI "bold" sequence you are using to a comparable PCL sequence.
When using DCPS, text files are usually treated as ANSI files and converted to PostScript and then sent to the printer. If you print a PCL file, it is not translated to PostScript, but sent directly to the printer as a PCL file.
The DCPS documentation has more information on this.
But it sounds like you just need the proper ANSI sequences to do this. You may also want to look at the documentation for DEFINE /FORM so that you can use something other than the default DCPS form, which gives you a page length of 66. To see your form definitions, do a SHOW QUEUE /FORM /FULL.
Paul