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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by zerobc

  1. zerobc

    Using REXX to get data where the cursor is positioned

    Thanks for the help. We got it with the following: ADDRESS ISPEXEC "VGET (ZSCREENI ZSCREENC)" CURSOR = ZSCREENC + 1 IF SUBSTR(ZSCREENI,CURSOR,1) = ' ' THEN SAY 'INVALID CURSOR POSITION' ELSE DO DO UNTIL SUBSTR(ZSCREENI,CURSOR,1) = ' ' | CURSOR = 1 CURSOR = CURSOR - 1 END CURSOR...
  2. zerobc

    Using REXX to get data where the cursor is positioned

    I am trying to write a rexx macro that can be used on any TSO panel and will pull the string where the cursor is positioned. I want it to pull the data from the first blank to the last blank. All I can find are ISPEDIT macros but I want this to work on any TSO panel. I tried playing with...

Part and Inventory Search

Back
Top