<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Print Symbiont Fun - Transparent Printing in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564475#M69042</link>
    <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;Unfortunately the pid of the submitor is not saved in the queue entry when you submit a print or batch job. With such an information it will be possible to modify the symbiont to print to the terminal which is associated with the pid. The only information you can get is the username or uic of the entry owner.&lt;BR /&gt;&lt;BR /&gt;So, if yours users login each with its own username and you have no users which are logged in with the same username it will be possible to modify the symbiont code to search for the terminal on which it must print.&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
    <pubDate>Wed, 15 Jun 2005 13:03:13 GMT</pubDate>
    <dc:creator>Bojan Nemec</dc:creator>
    <dc:date>2005-06-15T13:03:13Z</dc:date>
    <item>
      <title>Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564466#M69033</link>
      <description>I grabbed the symbiont code that was attached to a Wizard's answer about transparent printing: &lt;A href="http://h71000.www7.hp.com/wizard/wiz_2680.html" target="_blank"&gt;http://h71000.www7.hp.com/wizard/wiz_2680.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I was able to compile and link the code successfully and it almost does what I want it to do, but not quite. The code allows you to transparent print to a slave printer attached to a terminal via a regular printer queue. The only problem with this is that you have to pass a /parameter=&lt;TERMINAL device="" name=""&gt; for it to work properly.&lt;BR /&gt;&lt;BR /&gt;My question is: how can I make this work so I don't need to specify a parameter of the terminal name? I would like it to default to the terminal name of the terminal that kicked off the print job.&lt;BR /&gt;&lt;BR /&gt;Can this code be modified to do this or does anyone know of pre-existing symbiont that does what I need it to do?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/TERMINAL&gt;</description>
      <pubDate>Wed, 15 Jun 2005 07:59:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564466#M69033</guid>
      <dc:creator>Kyle Snavely_1</dc:creator>
      <dc:date>2005-06-15T07:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564467#M69034</link>
      <description>The problem is that the symbiont is running in a seperate process and could be servicing requeets from anywhere. The parameter is used to tell it what it needs to know. You could write DCL to translate the TT logical name and pass the result as the paramter.&lt;BR /&gt;&lt;BR /&gt;as a guess how about this&lt;BR /&gt;&lt;BR /&gt;$ PRINT/PARAM='F$TRNLNM("TT:")'/QUE=xx filename&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 08:52:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564467#M69034</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2005-06-15T08:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564468#M69035</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;the print symbiont code itself cannot obtain any information about which process submitted the print job. It could obtain the username of the submittor and if that user is still logged in, you could obtain the terminal name and so on ...&lt;BR /&gt;&lt;BR /&gt;How do you 'kick off' the print job ? With a DCL command (PRINT/QUE=...) ? If so, you could probably re-define the PRINT command in a LOGIN command procedure for the user to something like: $ PR*INT:==PRINT/PARA=('F$TRNLNM("TT")')&lt;BR /&gt;&lt;BR /&gt;If there are unique usernames, a logical could be set during LOGIN like username_PRINTER = TTAx: and the symbiont could translate the logical after obtaining the submittor name.&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Wed, 15 Jun 2005 08:53:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564468#M69035</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-06-15T08:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564469#M69036</link>
      <description>Thanks for the excellent replies, but unfortunately, I am not printing from the command line. The print jobs are coming from MUMPS... ISM to be exact. I do not think there are any facilities in our application to specify DCL to submit a print job. As far as I know, our application only allows us to print direct to a queue device (mnemonic) such as LTA555: without the ability to specify any parameters. That is why I was hoping to get the symbiont to recognize the device name that the print job was coming from.</description>
      <pubDate>Wed, 15 Jun 2005 09:03:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564469#M69036</guid>
      <dc:creator>Kyle Snavely_1</dc:creator>
      <dc:date>2005-06-15T09:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564470#M69037</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;let me try to get the picture so as I can understand unambiguously.&lt;BR /&gt;&lt;BR /&gt;- Is your MUMPS set up to print hardcoded to a specific device?&lt;BR /&gt;or&lt;BR /&gt;- Can a specific device be defined for the applic to use (fixed) for the duration of an applic up instance (maybe by setting up &amp;amp; pinpointing)&lt;BR /&gt;or&lt;BR /&gt;- Do you have to somehow specify the printer device?&lt;BR /&gt;&lt;BR /&gt;- Is there one fixed printer for all users, or are diferent printers (how?) assigned to different users?&lt;BR /&gt;&lt;BR /&gt;In short, WHEN, and HOW, is the printqueue "decided" (ie, setup, started, chosen).&lt;BR /&gt;&lt;BR /&gt;I assume you have tried logical names already.&lt;BR /&gt;You wrote "can only chose "a" device". How fixed is that syntax? Can you define dummy devices (like eg CCA111:) and mis-use those?&lt;BR /&gt;&lt;BR /&gt;--- too many loose end for me now to really try for a solution. However, I suspect there will be a way to trick the app into believing you.&lt;BR /&gt;&lt;BR /&gt;Oops.  Did I just have a flare of optimism? An pessimist only is an optimist with experience...&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 09:38:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564470#M69037</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-06-15T09:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564471#M69038</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;I give a (very very fast) look to the symbiont. Now I have no time to test it but it seems that if you substitute the lines:&lt;BR /&gt;CMPL #PSM$K_START_TASK,@FUNC(AP)&lt;BR /&gt;to&lt;BR /&gt;CMPL #PSM$K_START_STREAM,@FUNC(AP)&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;MOVZBL #SMBMSG$K_PARAMETER_1,CODE ; Set item code&lt;BR /&gt;&lt;BR /&gt;to&lt;BR /&gt;&lt;BR /&gt;MOVZBL #SMBMSG$K_DEVICE_NAME,CODE ; Set item code&lt;BR /&gt;&lt;BR /&gt;it will work with the terminal which you set in the START/QUEUE/ON=terminal.&lt;BR /&gt;As said I give a very fast look to the symbiont and I am not shure that this will work. You must test it.&lt;BR /&gt;&lt;BR /&gt;Bojan&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 09:40:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564471#M69038</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2005-06-15T09:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564472#M69039</link>
      <description>Jan,&lt;BR /&gt;&lt;BR /&gt;The users can select in the application which LTAxxxx: device they would like to print to. The LTAxxxx: device must be specified in a device table prior to users being able to print to that device. The device in the device table must match that of a queue name at the vms level.&lt;BR /&gt;&lt;BR /&gt;This is all stemming from the printing need of remote offices that only have a Windows Terminal Services session to a terminal emulator that connects to the VMS/MUMPS application. There are no provisions to allow a ucx queue to point to a printer at the remote site because there is no network path back to the remote site.&lt;BR /&gt;&lt;BR /&gt;So the idea would be to map the remote office's printer to the windows terminal server allowing the terminal emulator to get a transparent print from the MUMPS application and pass that on to the mapped printer which is actually the printer in the remote office. (that should be confusing enough)&lt;BR /&gt;&lt;BR /&gt;I can define any any device in the device table as long as I can also specify a printer queue and a blank LAT port. &lt;BR /&gt;&lt;BR /&gt;There is not a fixed queue for all users. Users can choose any valid print device available. In this particular scenario, I was looking at creating a LTAREMOTE: device that would dynamically print to the users terminal.&lt;BR /&gt;&lt;BR /&gt;If user 1 was at office 1 (TNA1:) and user 2 was at office 2 (TNA2:) both users could print to LTAREMOTE: and it would detect if the user was logged in on TNA1: or TNA2: and print to the proper device.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 10:02:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564472#M69039</guid>
      <dc:creator>Kyle Snavely_1</dc:creator>
      <dc:date>2005-06-15T10:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564473#M69040</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;I have sincere doubts about being able to print "back" over your TNA connection.&lt;BR /&gt;At the very least, the return signal would have to have steering codes whether to display a signal on the screen or output to the printer.&lt;BR /&gt;&lt;BR /&gt;&lt;DISCLAMER&gt;&lt;BR /&gt;I never tried this, just a theoretical scenario!&lt;BR /&gt;&lt;/DISCLAMER&gt;&lt;BR /&gt;&lt;BR /&gt;You have the IP info on the printer, I assume.&lt;BR /&gt;&lt;BR /&gt;Suppose, you reserve a LTA device.&lt;BR /&gt;Set up your print queue such that is is acceptable to the app.&lt;BR /&gt;Configure as normal.&lt;BR /&gt;&lt;BR /&gt;Now, (mis-)using the LTA name, INIT a TCPIP$TELNETSYM printqueue to your printer.&lt;BR /&gt;&lt;BR /&gt;I think I would leave the LTA device existing. &lt;BR /&gt;&lt;BR /&gt;(various threads about that to be found in this forum)&lt;BR /&gt;&lt;BR /&gt;I guess it may be worth the try, but I am not responsible for your lost time if it does not work!&lt;BR /&gt;&lt;BR /&gt;(This kind of trickery will need some decent documentation if you ever want it to be understood by a later system manager!!) &lt;BR /&gt;&lt;BR /&gt;I am curious of your results!&lt;BR /&gt;&lt;BR /&gt;Success, &amp;amp; good luck.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 10:55:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564473#M69040</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-06-15T10:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564474#M69041</link>
      <description>Telnetsym is how we currently print to our IP printers. In this scenario, we cannot use that method as we have no IP path to the printers in the remote site. The symbiont that I referenced in the original message works quite well at printing over the TNA device. Unforunately, we must pass the TNA parameter to the symbiont each time we print.&lt;BR /&gt;&lt;BR /&gt;Ian's suggestion works well when printing from the command line, but it is not the case. I will see if we can alter the application to pass the TNA of the user who requested the print job to the print queue. I guess that is the only way to applish this.&lt;BR /&gt;&lt;BR /&gt;Thanks for the help everyone.</description>
      <pubDate>Wed, 15 Jun 2005 11:05:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564474#M69041</guid>
      <dc:creator>Kyle Snavely_1</dc:creator>
      <dc:date>2005-06-15T11:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564475#M69042</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;Unfortunately the pid of the submitor is not saved in the queue entry when you submit a print or batch job. With such an information it will be possible to modify the symbiont to print to the terminal which is associated with the pid. The only information you can get is the username or uic of the entry owner.&lt;BR /&gt;&lt;BR /&gt;So, if yours users login each with its own username and you have no users which are logged in with the same username it will be possible to modify the symbiont code to search for the terminal on which it must print.&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
      <pubDate>Wed, 15 Jun 2005 13:03:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564475#M69042</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2005-06-15T13:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564476#M69043</link>
      <description>Bojan,&lt;BR /&gt;&lt;BR /&gt;It's worth a try, do you have any suggestions for symbiont code modification?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 15 Jun 2005 13:59:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564476#M69043</guid>
      <dc:creator>Kyle Snavely_1</dc:creator>
      <dc:date>2005-06-15T13:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564477#M69044</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;The part where the terminal is assigned must be modified. This is the part which starts with:&lt;BR /&gt;&lt;BR /&gt;MOVZBL #SMBMSG$K_PARAMETER_1,CODE ; Set item code&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;There you must get the username with the SMBMSG$K_USER_NAME code. Now you must do a loop with $GETJPI with JPI$_TERMINAL,JPI$_USERNAME and probably JPI$_MODE. Each iteration you test the username with the username you get with SMBMSG$K_USER_NAME and test the JPI$_MODE to see if it is equal to JPI$K_INTERACTIVE. When you find the user you continue with the terminal testing and allocation.&lt;BR /&gt;&lt;BR /&gt;But be warn. If there are two or more users on the system which are logged with the same username it is possible that the job will be printed to the wrong terminal!&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
      <pubDate>Wed, 15 Jun 2005 14:26:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564477#M69044</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2005-06-15T14:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564478#M69045</link>
      <description>Ok,&lt;BR /&gt;&lt;BR /&gt;Probably some code will be better.&lt;BR /&gt;Now I am at home and have no hardware to test it.&lt;BR /&gt;&lt;BR /&gt;First add the $JPIDEF macro to the system definitions part (at the beginning)&lt;BR /&gt;&lt;BR /&gt;Comment out the TT_NAME:... line, then add this part:&lt;BR /&gt;&lt;BR /&gt;-------------------------------------------&lt;BR /&gt;USERNAME: D_DESC    ; Username&lt;BR /&gt;MODE:  .BLKL    ; Process mode&lt;BR /&gt;TERMINAL: .BLKB 8   ; Process terminal name&lt;BR /&gt;TT_NAME: .BLKW&lt;BR /&gt;  .BYTE DSC$K_DTYPE_T&lt;BR /&gt;  .BYTE DSC$K_CLASS_D&lt;BR /&gt;  .ADDRESS TERMINAL&lt;BR /&gt;JPIUSERNAME: .BLKB 12   ; Process username&lt;BR /&gt;DUMMYLEN: .BLKW    ; Dummy return length. Not used&lt;BR /&gt;&lt;BR /&gt;JPIITMLIST:&lt;BR /&gt; .WORD 4    ; Mode length&lt;BR /&gt; .WORD JPI$_MODE   ; Request process mode&lt;BR /&gt; .ADDRESS MODE    ; Address of mode buffer&lt;BR /&gt; .ADDRESS DUMMYLEN   ; Dont need buffer length&lt;BR /&gt; .WORD 8    ; Terminal max length&lt;BR /&gt; .WORD JPI$_TERMINAL   ; Request terminal&lt;BR /&gt; .ADDRESS TERMINAL   ; Address of terminal&lt;BR /&gt; .ADDRESS TT_NAME   ; Address of terminal length&lt;BR /&gt; .WORD 12    ; Username length&lt;BR /&gt; .WORD JPI$_USERNAME   ; Request username&lt;BR /&gt; .ADDRESS JPIUSERNAME   ; Address of username buffer&lt;BR /&gt; .ADDRESS DUMMYLEN   ; Dont need buffer length&lt;BR /&gt; .LONG 0&lt;BR /&gt;-------------------------------------------&lt;BR /&gt;&lt;BR /&gt;and replace:&lt;BR /&gt;-------------------------------------------&lt;BR /&gt; MOVZBL #SMBMSG$K_PARAMETER_1,CODE ; Set item code&lt;BR /&gt; PUSHAL TT_NAME    ; Address of descriptor&lt;BR /&gt; PUSHAL CODE    ; Address of item code&lt;BR /&gt; PUSHAL @CONTEXT(AP)   ; Address of symbiont ctx value&lt;BR /&gt; CALLS #3,G^PSM$READ_ITEM_DX  ; Read PARAMETER_1&lt;BR /&gt; BSBW ERROR    ; Check system service&lt;BR /&gt;-------------------------------------------&lt;BR /&gt;&lt;BR /&gt;with:&lt;BR /&gt;&lt;BR /&gt;-------------------------------------------&lt;BR /&gt; MOVZBL #SMBMSG$K_USER_NAME,CODE ; Set item code&lt;BR /&gt; PUSHAL USERNAME   ; Address of descriptor&lt;BR /&gt; PUSHAL CODE    ; Address of item code&lt;BR /&gt; PUSHAL @CONTEXT(AP)   ; Address of symbiont ctx value&lt;BR /&gt; CALLS #3,G^PSM$READ_ITEM_DX  ; Read USERNAME&lt;BR /&gt; BSBW ERROR    ; Check system service&lt;BR /&gt;; Now we have the Username&lt;BR /&gt; MOVL #-1 , PID&lt;BR /&gt;180$:&lt;BR /&gt; $GETJPIW_S  PIDADR = PID ,-  ; PID&lt;BR /&gt;   ITMLST = JPIITEMLIST    ; Item list for Getjpi&lt;BR /&gt; CMPL R0,#SS$_NOMOREPROC&lt;BR /&gt; BNEQ 181$&lt;BR /&gt;; No such user!!!! Insert code to handle&lt;BR /&gt;; this situation!!!!!&lt;BR /&gt;&lt;BR /&gt;181$: BSBW ERROR&lt;BR /&gt; CMPL MODE , #JPI$K_INTERACTIVE ; Test only interactive processes&lt;BR /&gt; BNEQ 180$&lt;BR /&gt; CMPC5 USERNAME ,-&lt;BR /&gt; @USERNAME+DSC$A_POINTER ,-&lt;BR /&gt; #^a/ / ,-&lt;BR /&gt; #12 , JPIUSERNAME&lt;BR /&gt; BNEQ 180$&lt;BR /&gt;-------------------------------------------&lt;BR /&gt;&lt;BR /&gt;After that we have setup the terminal name and we can continue as if it was passed in the /PARAMETER.&lt;BR /&gt;I have not tested this code. Its up to you to test it.&lt;BR /&gt;&lt;BR /&gt;Bojan</description>
      <pubDate>Wed, 15 Jun 2005 15:51:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564478#M69045</guid>
      <dc:creator>Bojan Nemec</dc:creator>
      <dc:date>2005-06-15T15:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564479#M69046</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;You probably already know this, but I'll say it for posterity. &lt;BR /&gt;&lt;BR /&gt;Depending on your terminal emulator the printer will either be the one assigned within your emulator or the windows default printer; not just your locally attached printer. You will need to consider the windows port and spool settings, and realize that some emulators do a better job than others working with or bypassing the windows drivers.&lt;BR /&gt;&lt;BR /&gt;The &lt;ESC&gt;[5i and &lt;ESC&gt;[4i sequences sent by the symbiont are "Printer controller mode" On and Off, respectively. If you have access to and control of your source code, and if by chance your programs use a common wrapper for opening and closing your print device, you could do as we have done: &lt;BR /&gt;&lt;BR /&gt;As with your software, a user can select a printer. If the user has selected the "Windows" printer, our progam uses device "TT:" and sends &lt;ESC&gt;[5i after the printer open, and &lt;ESC&gt;[4i after close.&lt;BR /&gt;&lt;BR /&gt;No VMS symbiont involved, and it works for all clients that are actual or emulated VT's.&lt;BR /&gt;&lt;BR /&gt; -Doug&lt;BR /&gt;&lt;/ESC&gt;&lt;/ESC&gt;&lt;/ESC&gt;&lt;/ESC&gt;</description>
      <pubDate>Wed, 15 Jun 2005 16:56:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564479#M69046</guid>
      <dc:creator>Doug Phillips</dc:creator>
      <dc:date>2005-06-15T16:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564480#M69047</link>
      <description>Thanks everyone for the great replies. I have talked to some people in house and they seem confident that they will be able to modify the application to send the printer control codes.&lt;BR /&gt;&lt;BR /&gt;Kyle</description>
      <pubDate>Thu, 16 Jun 2005 13:29:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564480#M69047</guid>
      <dc:creator>Kyle Snavely_1</dc:creator>
      <dc:date>2005-06-16T13:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Print Symbiont Fun - Transparent Printing</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564481#M69048</link>
      <description>Kyle,&lt;BR /&gt;&lt;BR /&gt;One little note: You could simply use the terminal channel you have open, but I'd go ahead and open up another channel for the printer. This keeps the code change to a minimum.&lt;BR /&gt;&lt;BR /&gt;And one caveat: Any other output to the screen while the ON code is in effect will print on the printer. If you have to display an error, warning, or progress message, send the Off code before and then send the On code afterwards. Again, pretty easy to code if you use a common message routine.&lt;BR /&gt;&lt;BR /&gt;You might also consider having your printer control routine set a "Printer_status=TT_open" or "=LP_open" variable when the printer is opened and clear "Printer_status" when it's closed (or similar logic). Then, if you need to do screen I/O you can test whether or not you need to send the escape codes.&lt;BR /&gt;&lt;BR /&gt; -Doug&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jun 2005 14:38:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/print-symbiont-fun-transparent-printing/m-p/3564481#M69048</guid>
      <dc:creator>Doug Phillips</dc:creator>
      <dc:date>2005-06-16T14:38:42Z</dc:date>
    </item>
  </channel>
</rss>

