Skip to Content

 isCOBOL General

How can I generate QR codes from COBOL?

QR codes can be generated as bitmap files using the ZXing (Zebra Crossing) barcode scanning library.All the file types supported by the W$BITMAP routine can be used. Here are the steps to compile and run the sample COBOL program (QRSAMPLE.cbl) which... Read More

What does the error "NO X11 DISPLAY" mean?

When you get this error: "No X11 DISPLAY variable was set, but this program performed an operation which requires it." It means that isCOBOL is trying to access the AWT/SWING GUI Interface and your system doesn't have that. If your... Read More

How can I encode a URL String?

You can work with the OOP statements using the Java class named "java.net.URLEncoder", available with the Java Runtime, useful to encode a URL string: http://docs.oracle.com/javase/7/docs/api/java/net/URLEncoder.html The following is an example of... Read More

How to read QR codes

In KB article #320, we showed how to generate a QR code in your COBOL program. In this article, we'll show you how to call the attached program to generate or read a QR code. Like the earlier article, you must first download 2 jar files, and... Read More

Working with sequential files on Pipes

Piping can be used for files declared as: a) a printer file (ASSIGN TO PRINTER) b) a line sequential file (assuming to compile with -flsu) In all other cases (relative file, binary sequential file etc) piping it is not allowed. Here a simple... Read More

Results 1 - 10 of 100