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. Bartym

    Rexx and Leading Zero's

    try x = right(iValue,13,'0') where iValue = your variable 13 = is the final length of the number you want Regards Barry
  2. Bartym

    Calling LISTC function

    Try [Code] "LISTC LEVEL('TTOI.RAWATR.EXEC')" [/Cde] Regards Barry
  3. Bartym

    Simple DB2 query in REXX

    Our process steps are 1) connect to DB2 /*Rexx*/ parse arg DB2SYS Address TSO "SUBCOM DSNREXX" IF RC THEN S_RC = RXSUBCOM('ADD','DSNREXX','DSNREXX') Address DSNREXX "CONNECT "DB2SYS 2) Run...
  4. Bartym

    REXX to Save in View Mode

    Dilip, I have written an edit macro to save the changes whilst in View mode. It is invoked by typing VREP on the command line. The REXX routine has,overtime become more complex e.g. using the replace will lose the original ISPF stats. /* REXX */...
  5. Bartym

    Rexx coding for Scrollable Dynamic panels

    Checked the IBM manuals. It implies that the scrolling is handled by the REXX application not the Panel. The SCROLL(ON) appears to allow scrolling info to be passed back to the rexx to then control the scrolling. I had originally thought that if the variable was greater than the screen...
  6. Bartym

    Rexx coding for Scrollable Dynamic panels

    RC after panel display is 0 for PF7/PF8 and 8 from PF3. Using PF8 placing cursor in the dynamic area sets the following .CURSOR is set to GRDYN (the dynamic variable) .CSRPOS is set to 175 (relative position) LVLINE(GRDYN)is set to 30 The variables are as expected I took the...
  7. Bartym

    Rexx coding for Scrollable Dynamic panels

    Checked KEYS - PF7 set to UP & PF8 set to DOWN. Number of PF Keys . . . 24 PF1 . . . HELP PF2 . . . SPLIT PF3 . . . END PF4 . . . END PF5 . . . find PF6 . . . RCHANGE PF7 . . . up...
  8. Bartym

    REXX exec tso SEND starts REXX exec and pass variables

    Two things occur to me. Either SEND is another rexx routine or it is, as you say, an external program. Using TSO ISRDDN (whilst in the application) and then "M SEND" will determine if the routine is REXX (ISRDDN will search the REXX/CLIST allocated in the application). If that fails then have...
  9. Bartym

    Rexx coding for Scrollable Dynamic panels

    I'm trying to write a rexx application to display variable output. I was hoping that defining a panel with a dynamic area,which was scrollable, would allow the panel to navigate up and down without returning to rexx. However, when using PF8(down) & PF7(UP) control is returned to the rexx...

Part and Inventory Search

Back
Top