RE: [U2] Opening UniBasic Source Code - Tab Key

2009-05-20 Thread Gregor Scott
Bill, What exactly are you trying to achieve with the unix file? On UniVerse the "openpath" command will open a unix path as a database file, from which you then read items as normal. You either need to change to use the "openseq" command so you can sequentially read the contents of the unix item

RE: [U2] Opening UniBasic Source Code - Tab Key

2009-05-20 Thread Karl Pearson
CHAR(8) is a tab, IIRC. Karl On Wed, May 20, 2009 5:20 pm, Brutzman, Bill wrote: > 1. Nope... I did not copy them; I would rather not have to copy them. > > 2. So far I have not have to do a fnuxi. > > 3. What does a Tab key come over as? I have a little method to buzz out > the blank spaces. I

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 in

RE: [U2] Opening UniBasic Source Code - Tab Key

2009-05-20 Thread Brutzman, Bill
1. Nope... I did not copy them; I would rather not have to copy them. 2. So far I have not have to do a fnuxi. 3. What does a Tab key come over as? I have a little method to buzz out the blank spaces. I would like to use this method on the pesky Tabs. --Bill -Original Message---

Re: [U2] U2-Stage (Datastage lite) anyone using it yet ?

2009-05-20 Thread Dawn Wolthuis
I am not using it right now, but I have had enough discussions on behalf of another company that I definitely can recommend talking to the folks at s7.com about it. --dawn Dawn M. Wolthuis Snupnow LLC, Managing Partner On Wed, May 20, 2009 at 4:51 PM, Baker Hughes wrote: > Is anyone using U2-St

Re: [U2] PCL problem on U2

2009-05-20 Thread Dave Taylor
That's true! I didn't look at his code. Does he have to print it from outsided U2? Dave Dave Taylor Sysmark Information Systems, Inc. Authorized IBM Business Partner 49 Aspen Way Rolling Hills Estates, CA 90274 (O) 800-SYSMARK (800-797-6275) (F) 310-377-3550 (C) 310-561-5200 www.sysmarkinfo.co

[U2] U2-Stage (Datastage lite) anyone using it yet ?

2009-05-20 Thread Baker Hughes
Is anyone using U2-Stage yet that would like to comment about it? -Baker This communication, its contents and any file attachments transmitted with it are intended solely for the addressee(s) and may contain confidential proprietary information. Access by any other party without the express w

RE: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Symeon Breen
Have you copied these programs over from another host - esp another host with a different endian processor ? you may need to do a fnuxi or such thing on the code. -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman

RE: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Brutzman, Bill
Thanks Mark. This worked. Thanks also to Jeff. --Bill *--- - include BP BASELINE.R8 openpath '/u2/SOFTWARE/BP/' to F.This else null Source.Code.File.ID = 'BASELINE.R0' read R.File fr

Re: [U2] PCL problem on U2

2009-05-20 Thread Anthony W. Youngman
In message <87e76198607940c7b663e669a8fc1...@w2kappserver>, Dave Taylor writes Wol stated: "This is sending the logo as a DIFFERENT print job. That's your problem." You can use the OPEN option in SETPTR to accumulate multiple print jobs into the same print file before closing the print file.

RE: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Brutzman, Bill
Yes... BASELINE.R0 is a program. -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Mark Eastwood Sent: Wednesday, May 20, 2009 4:46 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Opening UniBasic Source Code Into A

Re: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Jeff Schasny
Make sure your bp file is a type 19 not a type 1 Brutzman, Bill wrote: > I am writing on how to open a Unix file of UniBasic source code. > > When I try a > > > openpath '/u2/SOFTWARE/BP/BASELINE.R0' to F.This then >crt 'OK' >

RE: [U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Mark Eastwood
Is BASELINE.RO a Program? If so, then you just want to open the BP (i.e. remove program from path), then READ program as you would any item. Mark -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Brutzman, Bill Sent: Wedn

[U2] Opening UniBasic Source Code Into A UniBasic

2009-05-20 Thread Brutzman, Bill
I am writing on how to open a Unix file of UniBasic source code. When I try a openpath '/u2/SOFTWARE/BP/BASELINE.R0' to F.This then crt 'OK' end else crt 'Error'

Re: [U2] PCL problem on U2

2009-05-20 Thread Dave Taylor
Wol stated: "This is sending the logo as a DIFFERENT print job. That's your problem." You can use the OPEN option in SETPTR to accumulate multiple print jobs into the same print file before closing the print file. hth, Dave Dave Taylor Sysmark Information Systems, Inc. Authorized IBM Busine

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 wrote: > David; > > > > It looks like you're missing the point of the macro

RE: [U2] PCL problem on U2

2009-05-20 Thread George Gallen
oopS. (the second file should have been /tmp/fileb.pcl not /tmp/filea.pcl) Try this: write the preceeding part of the UV data to /tmp/filea.pcl write the trailing part of the uv data to /tmp/filea.pcl SHOULD HAVE READ Try this: write the preceeding part of the UV data to /tmp/filea.pcl write th

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 \UD\LOGO

Re: [U2] PCL problem on U2

2009-05-20 Thread Anthony W. Youngman
In message , David Hoover 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 logo to be printed. Base information: OS - RedHat Linux

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 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 IMAGE.FI

[U2] using phrases to enhance user experience

2009-05-20 Thread dennis bartlett
It doesn't look as if phrases are used much - the concept is wonderful for creating a report generator with drop-down options on screen or even just making standardised reports much easier to request variants of... with screen options for example ---

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

[U2] PCL problem on U2

2009-05-20 Thread David Hoover
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. Base information: OS - RedHat Linux Running U2 Printer is IBM InfoPri

RE: [U2] Freenode #ibmu2 ?

2009-05-20 Thread Glen Batchelor
It's not an online forum. It's an IRC channel. I'd be willing to help if there's interest. There's an unofficial ##pick if interested, but only a couple of pickies hang out there. If you want to get a normal channel on Freenode then you'd need to apply and get representation from IBM in order to f

Re: [U2] Freenode #ibmu2 ?

2009-05-20 Thread Steve Romanow
Ron White wrote: As I recall in our discussions long long ago that this email list was the preferred medium because several of our list members are restricted by their companies and are not allowed to access the web to participate in online forums. I for one am quite content with the present mai

Re: [U2] Freenode #ibmu2 ?

2009-05-20 Thread Steve Romanow
Ron White wrote: As I recall in our discussions long long ago that this email list was the preferred medium because several of our list members are restricted by their companies and are not allowed to access the web to participate in online forums. I for one am quite content with the present mai

RE: [U2] default sort order

2009-05-20 Thread George Gallen
I'm on UV not UD but I checked and what I needed to do was: @ 001: PH 002: (space)BY @ID I needed the first BY, so don't get rid of it. But do put in a preceeding space. George > -Original Message- > From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2- > us...@listserver.u2ug.org]

RE: [U2] Freenode #ibmu2 ?

2009-05-20 Thread Ron White
As I recall in our discussions long long ago that this email list was the preferred medium because several of our list members are restricted by their companies and are not allowed to access the web to participate in online forums. I for one am quite content with the present mailing list format so

[U2] Freenode #ibmu2 ?

2009-05-20 Thread Steve Romanow
Have you guys ever discussed or have an opinion about making a #ibmu2 room on freenode? There is already a #aix, #ibm, and #ibmdb2. I dont mind organizing or helping in any fashion. I do not know if #ibmdb2 was formed or is maintained by an ibm team member. If it is not a community thing, I

RE: [U2] default sort order

2009-05-20 Thread George Gallen
get rid of the first BY, it is assumed. (just include the field names) @ 001: PH 002: LAST-NAME BY NAME BY @ID @ 001: PH 002: @ID > -Original Message- > From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2- > us...@listserver.u2ug.org] On Behalf Of Steve Romanow > Sent: Tuesday, Ma

Re: [U2] default sort order

2009-05-20 Thread Steve Romanow
DAVID WADEMAN wrote: I see that you can edit DICT.DICT with some response on this but you can do like I do here: :AE VOC DW.DICT Top of "DW.DICT" in "VOC", 3 lines, 616 characters. 001: PA 002: * David Wademan custom DICT lookup for 132 character mode * 003: LIST DICT <> ID.SUP DBL.SPC @ID FMT "

RE: [U2] default sort order

2009-05-20 Thread DAVID WADEMAN
I see that you can edit DICT.DICT with some response on this but you can do like I do here: :AE VOC DW.DICT Top of "DW.DICT" in "VOC", 3 lines, 616 characters. 001: PA 002: * David Wademan custom DICT lookup for 132 character mode * 003: LIST DICT <> ID.SUP DBL.SPC @ID FMT "32L" TYP LOC FMT "50L"