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 wOOdy-Soft 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 jplubell3619

  1. jplubell3619

    Calling a UNIX Shell Script from a Cobol program

    Sounds like the compiler is hitting the "/" and baling out. Ive had this promlem with other character strings. Try the following ASSUMING THAT YOUR USING ASCII "/" = HEX 2F 01 SYSTEM-COMMAND. 05 FILLER PIC X(01) VALUE X"2F". 05 FILLER...
  2. jplubell3619

    Do people still use COBOL ???

    Thanks for the Link -- Ive been looking for COBOL work for some time now. Its the first place I've seen in months that had some actual COBOL jobs advertised. Found 12 in the Phill'ey area that I'm relocating to this weekend.
  3. jplubell3619

    CALL [Linux or Unix shellscript]

    Depending on the shell you may need to add a "." before the system command. system-command = ". /bin/runme" call "system" using system-command" Otherwise the call will start another occurance of the shell when the script finished it will still be in that...
  4. jplubell3619

    How can I put fonts into PC COBOL reports?

    Thanks Clive! Never even thought of this! I've been sendign escape codes and/or loading font tables to the printer manualy. This looks like it will work for barcodes and images as well -- gona check it out this weekend.
  5. jplubell3619

    Access MF ISAM Files from not COBOL

    The .idx files are just indexes to the primary data base files .db. The .fd -- My guess -- The files COBOL discription -- Thats how you know about the COMP fields? ODBC should access these files? But thats not allways possible with older versions of ISAM (The revsion you gave is fine). I's...
  6. jplubell3619

    Windows Error Screen Running COBOL in DOS

    Dont know about Microfocus but I've had problems with dos apps in windows. Check the config.sys for SHELL=C:\COMMAND.COM FILES=?? BUFFERS=?? Are you compiling the program in BIG mode if so you may need a DPIM manager loaded in DOS. Thats all I can think of a the moment --
  7. jplubell3619

    CAN A CALL BE CLEARED?

    Sorry; The compiler was Acucobol 2.1 running on SCO (Not sure on revision) I noticed this same problem in DOS using the same version of the compiler. I know that the code look redundent -- but it works.
  8. jplubell3619

    CAN A CALL BE CLEARED?

    I've seen this myself. I found a workaround -- not sure its been several years but-- Try this (DO NOT REPLACE THE STRING WITH A MOVE) 01 WS-SYSTEM-COMMAND PIC X(256) VALUE SPACES MOVE SPACES TO WS-SYSTEM-COMMAND. STRING "command text" INTO WS-SYSTEM-COMMAND. CALL...

Part and Inventory Search

Back
Top