Skip to Content

 isCOBOL General

Two options to get the working directory

There are two library routines that allow to retrieve this information. 1. C$CHDIR called using a blank data-item initialize curr-dir.|curr-dir pic x(256). call "C$CHDIR" using curr-dir. display "Current directory: " curr-dir. ... Read More

Does isCOBOL support C$REDIRECT?

C$REDIRECT is used to assign a different file I/O handler to a file. There are several options to do the same in isCOBOL. In version 2022R2 and later, you can write a hook program using this configuration to change the file handler class in the hook... Read More

What is the best way to profile an isCOBOL program?

Question: My program displays a menu and I can press down-arrow 8 times and sit there and watch while the menu item selection moves down to catch up. I want to profile my program to see what operations are accounting for the slow user interface... Read More

Is there any equivalent to COPY RESOURCE?

Question: I got the following compiler warning. Is there any equivalent for the COPY RESOURCE functionality? --W: Directive ignored: COPY RESOURCE; file = smSWLOGON.CO, line = 1783, col Answer: Prior to version 2022R1, the isCOBOL... Read More

Does isCOBOL APS run on z/OS?

Question: What products in isCOBOL run on z/OS? Answer: The JDK on z/OS is called "IBM SDK for z/OS Java Technology Edition", which you can download here. The following isCOBOL products and features are implemented as pure Java classes with... Read More

Can isCOBOL access a DLL or .so that is in a JAR file?

Question: Can I include DLLs and/or .so files in the same JAR file as my application? Will the application be able to call those DLLs or shared objects in the JAR file? If not, then what is the best way to distribute DLLs with my application if I... Read More

Results 21 - 30 of 98