- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- VMS Printing a Signature
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
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
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-30-2008 12:42 AM
тАО01-30-2008 12:42 AM
VMS Printing a Signature
i.e. Print/setup=sign
Does anyone know how to do this. Is a postscript enabled printer required?
Thanks in advance
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2008 04:13 AM
тАО01-30-2008 04:13 AM
Re: VMS Printing a Signature
Extracting from HELP:
/SETUP
/SETUP=module[,...]
Extracts the specified modules from the device control library
(containing escape sequence modules for programmable printers)
and copies the modules to the printer before a file is printed.
Now......
The symbiont will look for the included module(s) in SYS$LIBRARY:SYSDEVCTL.TLB as default. If the qualifier /LIBRARY= is set on the queue, that library will be used instead of SYSDEVCTL.
The included module will be sent to the printer before the actual printjob.
You have to write the signature-file in the same language as the file you print.
If we talk about Lasers, text is printed by the PCL-interpreter in the printer and you can write you signaturefile in plain text as well.
This is the short story......
Depending on your needs, it can be longer..... ( how to create and insert modules to a library and so on..... )
regards,
Hakan Zanderau
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2008 04:27 AM
тАО01-30-2008 04:27 AM
Re: VMS Printing a Signature
$ EDIT/EDT signature.txt
***********
* Hakan Z *
***********
$ LIB/CREA/TEXT SYS$LIBRARY:MYLIB.TLB
$ LIB/INS SYS$LIBRARY:MYLIB.TLB signature.txt
$ INIT/QUE-
/START-
/PROC=TCPIP$TELNETSYM-
/ON="10.0.0.1:9100"-
/LIB=MYLIB -
TEST$QUEUE
$ PRINT/QUEUE=TEST$QUEUE/SETUP=signature login.com
This will print a custom made flagpage.
regards,
Hakan Zanderau
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2008 05:50 AM
тАО01-30-2008 05:50 AM
Re: VMS Printing a Signature
Thanks and Regards,
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2008 06:16 AM
тАО01-30-2008 06:16 AM
Re: VMS Printing a Signature
But you can scan your signature.
Print it to file, using a PCL-driver and then
use this file as setup-module......as long as you print PCL or TEXT.
Use a PS driver and make a PS-setup-module as well for PS-jobs.
Hakan Zanderau
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2008 09:36 AM
тАО01-30-2008 09:36 AM
Re: VMS Printing a Signature
You'll need to check the tech and programming manuals appropriate for your printer. Also search the web to see some examples and discussions.
How you build the overlay macro will depend on the tools you have. Editing the image into the macro is the tricky part. I've always just written some code to strip any leading and trailing "garbage" from the bitmap (dump it first to see what's there) and surround it with the proper PCL commands. If you are conversant with an editor that can operate on binary files then you can use that.