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 Mike Lewis 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: *

  • Users: HRayT
  • Order by date
  1. HRayT

    MicroFocus COBOL version

    We are running v3.4.9 applications on Windows XP with no problems at this time.
  2. HRayT

    Converting alphanumeric field to numeric

    01 my-alpha-item pic X(07) value "12.34". 01 my-num-edit-item pic Z(07) redefines my-alpha-item. 01 my-num-item pic 9(4)v99 how about move function numval (my-alpha-item) to my-num-item
  3. HRayT

    Windows API calls

    you might try this site http://www.kimsoft.com/api-cobol/api-cobol.htm
  4. HRayT

    Accessing MF COBOL Isam Files With VB6

    In order to utilize the user interface capabilities of VB I must be able to access, read, write and update many files within current COBOL Isam files. Some of these files will continue to also be accessed by COBOL applications. I am looking for ideas, or more specifically some form of .ock or...
  5. HRayT

    Printing to variable length forms using Linage is clause

    I understand the example if you know what printer will be used. How would you handle if you had no control of the printer or printer type that would be used. We develope software for resale and customers chose their own printers. HRAYT
  6. HRayT

    Printing to variable length forms using Linage is clause

    Thanks, KidHoss Could you tell me which manual you are referring to. HRayT
  7. HRayT

    Printing to variable length forms using Linage is clause

    I am using MF cobol both 16 and 32 bit on Windows NT4.0. In a program that prints invoices, different invoice formats are provided for various reasons. These forms may vary in length. To set the correct forms lenght I have used a, linage is invoice-length, clause. This works fine if the...
  8. HRayT

    Byte usage of PIC S9

    You are very much correct greenguy, converting from comp to character was assumed.
  9. HRayT

    cobol programs

    MicroFocus Cobol has many demo and sample programs. You might try http://www.merant.com
  10. HRayT

    RE: error 13...reoccurring problem for COBOL student

    With MicroFocus Cobol, error 13 is for file not found. If you are trying to open the file output or input-output you are not providing a correct path. If trying to open input the file does not exist or your need to provide the complete file path. It should work to any of your disk drives a...
  11. HRayT

    Byte usage of PIC S9

    signed characters of 7-9 ie S9(7) through S9(9) takes 4 bytes unsigned characters of 9(8) and 9(9) take 4 bytes

Part and Inventory Search

Back
Top