RE: [U2] PCL problem on U2

2009-05-21 Thread Eric Armstrong
Colin, What's the bang sign for? We would use EXECUTE DOS /C COPY etc. Eric Armstrong Lobel Financial -Original Message- From: Colin Alfke [mailto:alfke...@hotmail.com] Sent: Wednesday, May 20, 2009 11:29 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] PCL problem on U2 David

Re: [U2] PCL problem on U2

2009-05-21 Thread Bill Haskett
__ From: George Gallen ggal...@wyanokegroup.com Sent: 5/20/2009 3:26 PM To: u2-users@listserver.u2ug.org u2-users@listserver.u2ug.org Subject: Re: [U2] PCL problem on U2 oopS. (the second file should have been /tmp/fileb.pcl

RE: [U2] PCL problem on U2

2009-05-21 Thread Colin Alfke
Sorry - it's the UniData command to run the following statement at the OS level. Colin Alfke Calgary, Canada -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Eric Armstrong Colin, What's the bang sign for? We would use

Re: [U2] PCL problem on U2

2009-05-20 Thread Steve Romanow
David Hoover wrote: I am trying to place a logo that is stored at /area1/dh.temp/M100_3Logo.pcl on a form that I am creating in PCL5. I have no problem with the shading, boxes, or data. I am having a problem getting the logo to be printed. One thought I has is maybe try it as ps or something

RE: [U2] PCL problem on U2

2009-05-20 Thread Barry Rutherford
I suspect your issue is in using the execute statement on line 10. Here's how we print logos on our customer facing documents: *** GET.IMAGE: ** OPENSEQ UNIX.FILE TO IMAGE.FILE ELSE RETURN LOOP.END = 0 ESC = CHAR(27) IMAGE = '' LOOP READBLK DATA FROM

RE: [U2] PCL problem on U2

2009-05-20 Thread George Gallen
Is the SETPTR set to send any data NOW, or will it be buffered until you close the program? If it's buffered, then you sending the logo, then the UV data instead of sandwiching the logo between the UV data. Try this: write the preceeding part of the UV data to /tmp/filea.pcl write the trailing

Re: [U2] PCL problem on U2

2009-05-20 Thread Anthony W. Youngman
In message e8209a9427264095bc3fe78d6908d...@it3, David Hoover dhoo...@illinoislock.com writes I am trying to place a logo that is stored at /area1/dh.temp/M100_3Logo.pcl on a form that I am creating in PCL5. I have no problem with the shading, boxes, or data. I am having a problem getting the

RE: [U2] PCL problem on U2

2009-05-20 Thread Colin Alfke
David; It looks like you're missing the point of the macro - simply load it into the printer once and print multiple times. Your converter may allow you to load it to the printer, otherwise you actually copy it to the printer (not print it). Under Windows we simply: EXECUTE !COPY /B

Re: [U2] PCL problem on U2

2009-05-20 Thread jjuser ud2
Also, whip out your hex editor and make sure the PCL is in the correct format. I've had to do that even when using the converter. Let us know how you finally get it to work. On Wed, May 20, 2009 at 2:29 PM, Colin Alfke alfke...@hotmail.com wrote: David; It looks like you're missing the

Re: [U2] PCL problem on U2

2009-05-20 Thread Dave Taylor
20, 2009 11:23 AM Subject: Re: [U2] PCL problem on U2 In message e8209a9427264095bc3fe78d6908d...@it3, David Hoover dhoo...@illinoislock.com writes I am trying to place a logo that is stored at /area1/dh.temp/M100_3Logo.pcl on a form that I am creating in PCL5. I have no problem with the shading

Re: [U2] PCL problem on U2

2009-05-20 Thread Dave Taylor
www.sysmarkinfo.com - Original Message - From: Anthony W. Youngman u...@thewolery.demon.co.uk To: u2-users@listserver.u2ug.org Sent: Wednesday, May 20, 2009 2:29 PM Subject: Re: [U2] PCL problem on U2 In message 87e76198607940c7b663e669a8fc1...@w2kappserver, Dave Taylor sysm...@worldnet.att.net writes

RE: [U2] PCL problem on U2

2009-05-20 Thread Tony G
All of the other comments look right on. In addition to reworking to those suggestions, I'm also thinking there is a CRLF at the end of each of your lines which may affect processing of the commands. I'd build the entire string and then output with a single PRINT. I haven't touched this stuff