Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rexxhead

    ZOC REXX how to send server output to file

    REXX by itself has no I/O model. All I/O services have to be provided by the environment in which the REXX code is operating. Thus in VM and MVS, REXX uses EXECIO to read and write data. Some implementations of REXX support CHARIN, CHAROUT, LINEIN, and LINEOUT. Your best bet is to see what...
  2. rexxhead

    COBOL SEQQUENTIAL FILE TO CSV

    Too bad he wants to do it in COBOL and not in REXX. It's about 8 lines in REXX. Frank Clarke --America's source for adverse opinions since 1943.
  3. rexxhead

    Hopefully not Farewell

    Yayy!! Frank Clarke --America's source for adverse opinions since 1943.
  4. rexxhead

    How To Determine Encoding Of A File - And see the contents in Hex

    Notepad++ has a built-in that shows the hex-level values. Try it. Frank Clarke --America's source for adverse opinions since 1943.
  5. rexxhead

    Hopefully not Farewell

    The best way to treat cancer is early detection. The second best way is surgery. Good luck. Get well soon. See you next year. Frank Clarke --America's source for adverse opinions since 1943.
  6. rexxhead

    REXX data manipulation

    Is it that you only want one entry per date, or do you want to have all entries for a given date shown together? If you can provide a more precise 'spec', there are several followers here who can provide direction. Frank Clarke --America's source for adverse opinions since 1943.
  7. rexxhead

    REXX program skips an input record

    I recommend running this with Trace(?R) so that you can see the results of each read as it occurs. This may give you enough information to understand what's happening. Aside, I'm curious that line 79 terminates with a "+" rather than a "-". It has been a long time since I dealt with...
  8. rexxhead

    FTP upload adds (version indicator)

    I'm using CrossFTP and WS_FTP, and when I upload a replacement file, sometimes the new file shows up as (e.g.:) FILENAME(#).txt Naturally, when I click a link to that file, it isn't found because the HTML doesn't specify the name by which the file exists on the remote directory. This doesn't...
  9. rexxhead

    Automated escape sequence ZOC

    Trying to wrap my head around this question and not knowing anything about a ZOC emulator... At some point, your script will relinquish control to ZOC (whatever that is) and won't have control again until ZOC returns or ABENDs. I'm guessing there isn't a callable function that issues the...
  10. rexxhead

    select no. of rows from a table.

    Yes, ISPF is more than a graphical interface — more like a 'suite'. See my REXX blog where I blend REXX and ISPF if you're interested. So your question is directed at DB2 tables with which I am barely noddingly familiar. Frank Clarke --America's source for adverse opinions since 1943.
  11. rexxhead

    select no. of rows from a table.

    ISPF table? DB2 table? Frank Clarke --America's source for adverse opinions since 1943.
  12. rexxhead

    Why people behave this way...

    When I was just a little programmer, I got assigned a project where the desired result was a printed report showing (whatever). I listened to the client describe what he wanted, took notes, then went off to write some code. What I produced was not to the clients liking, so I did the whole...
  13. rexxhead

    Why can't I invoke this external routine?

    No, standard REXX doesn't include the notion of a library of external routines, dammit, nor does it allow (as PL/I and COBOL) to INCLUDE blocks of external text. The latter, in fact, would practically eliminate the need for the former. Oh, how I would love to be able to /* REXX Routine */...
  14. rexxhead

    Why can't I invoke this external routine?

    Maybe at 78 I'm just starting to show signs of dementia. I copied yours just to prove it works in my environment. It worked. I copied my original, excised the internal SQRT code, and moved the complex multiplication outside the call and just did "area = SQRT(x)". It worked. I modified the...
  15. rexxhead

    Why can't I invoke this external routine?

    Does it work if you eliminate the 'rexx' and the '.rex'? c:\00_mikrom\Work\REXX>caller_01? That's how I'm calling it: F:\REXX\ooREXXcode>hero 13 14 15 A triangle with sides 13 14 15 has an area of 84 Frank Clarke --America's source for adverse opinions since 1943.
  16. rexxhead

    Why can't I invoke this external routine?

    I have the following subroutine (ooREXX on Windows): /* REXX external subroutine */ /* ----------------------------------------------------------------- */ SQRT: /*@ */ arg nbr . parse var nbr...
  17. rexxhead

    Running REXX on a PC

    Mikrom, contact me via my blog: REXXpertise Frank Clarke --America's source for adverse opinions since 1943.
  18. rexxhead

    Running REXX on a PC

    I chose option#2, copying RXQUEUE.EXE of ooREXX into my working directory and that worked; thank you very much. Oddly, when I did a search at C:\ for 'rxqueue', it wasn't found, but searching in C:\Program Files revealed the Regina RXQUEUE, and searching in C:\Program Files (x86) found the...
  19. rexxhead

    Running REXX on a PC

    F:\REXX\ooREXXcode>pipecmd Command to Execute: DIR * /B | rxqueue Command Output: Command to Execute: DIR * /B | rxqueue /FIFO Error:94.108 - Invalid switch passed. Must be one of "/fifo, /lifo, /clear, /queued, /pull, /list" Command Output: Command to Execute: DIR * /B | rxqueue /LIFO...
  20. rexxhead

    Running REXX on a PC

    Any examples of "command output to stack" you might like to share? Specifically, I'm looking to "DIR" onto the stack and pull each line separately. Frank Clarke --America's source for adverse opinions since 1943.

Part and Inventory Search

Back
Top