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

    I need a code to perform binary sorting in Assembly.

    Do you mean IBM mainframe assembler or PC assembler?<br>I have code (my own) for mainframes, but could ship a step-by-step<br>description for binary sorting.
  2. thorfour

    Memory Management

    First declare how much memory you want to set <br> aside for a given field. Either a DC or a DS will<br> do this. The difference is a DS merely reserves <br> the memory but doesn't change the contents of the<br> memory, while a DC reserves the memory and stores <br> a constant in it. <br>...
  3. thorfour

    Looking for general info...

    Try Amazon.com. They have a wide selection<br> of all compilers.
  4. thorfour

    Welcome!

    I use PSP a lot. I'm using v5, but I started <br> with v3 a couple of years ago. The "capture"<br> feature was the original reason I bought it,<br> but then I saw everything it can do. I use<br> it exclusively to construct animated GIFs for <br> my web page (along with the GIF...
  5. thorfour

    Paint Shop Pro

    I generally use the "rectangle full" with the <br> background color and box around the type I want<br> to throw away. Then I add the changed type.
  6. thorfour

    Convert lower to upper case from input terminal

    The INSPECT worked like a champ.<br> I used <br> INSPECT WS-FIELD<br> CONVERTING 'abcdefghijklmnopqrstuvwxyz'<br> TO 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'<br> and the reverse (to convert upper to lower case).<br> The reverse also worked.<br> It doesn't care how many times a...
  7. thorfour

    Convert lower to upper case from input terminal

    Good idea! In fact, I just came across a new<br> implementation for INSPECT on COBOL II , release 3<br> and later:<br> INSPECT WS-FIELD <br> CONVERTING 'abcd...' TO 'ABCD...'<br> I'll try and let you know what happened. <br> Thanks.
  8. thorfour

    Convert lower to upper case from input terminal

    Should have specified that. Yes, I'm converting<br> a CICS macro level assembler program to a CICS<br> COBOL OS/390 program. I could use an Assembler<br> CALL subroutine to do the job, but my clients<br> would rather COBOL be used. Thanks.
  9. thorfour

    Convert lower to upper case from input terminal

    Have a need to convert terminal input from lower to upper case, but<br> it must be accomplished with COBOL language; no calls to Assembler<br> are acceptable to the site.

Part and Inventory Search

Back
Top