Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site ucbvax.BERKELEY.EDU Path: utzoo!watmath!clyde!cbosgd!ucbvax!info-vax From: {ATE.R/CHESTNUT}ONTYME@OFFICE-1 Newsgroups: mod.computers.vax Subject: Reply to "Labelling of printed output" (lou@aero2.arpa) Message-ID: Date: Thu, 6-Mar-86 20:44:58 EST Article-I.D.: OFFICE-1.ONT-ONTYME-J13669 Posted: Thu Mar 6 20:44:58 1986 Date-Received: Sat, 8-Mar-86 03:44:28 EST Sender: daemon@ucbvax.BERKELEY.EDU Reply-To: rc.tym@office-1.arpa Organization: The ARPA Internet Lines: 27 Approved: info-vax@sri-kl.arpa ---------------------------------------------------- I am looking for software which would place sensitivity labels on printed output. These labels could include things such as 'COMPANY-PRIVATE', 'PUBLIC', 'DESTROY BEFORE READING', etc. They should be placed at the top and bottom of every printed page of output including the flag and trailer pages. I don't care whether the labels are stored with the data or are generated when a job goes to the print queue. However, I do care that the software runs under VMS 4.0 or later. Please send mail if you have such software or know where to get it. Thank you. Jerzy Rub, rub@aerospace.arpa, {trwrb,rand-vax,sdc-rdcf}!aero!rub ------------------------------------------------------ A simple partial solution is to use the DEFINE/FORM command with the PAGE_SETUP option to point at an entry in SYS$LIBRARY:SYSDEVCTL.TLB . The entry in that text library will then be copied to the printer whenever a new page is started. If you define that form to be the DEFAULT form (0), then no special action need be taken with the print queue, otherwise you must print with: $PRINT/FORM=my_form blarney.foo and set the print queue to use that form with: $SET QUEUE/FORM=my_form SYS$PRINT Hope that helps a little.