If you still dont’t have the solution to the QR problem, perhaps this is the solution:
In Internet you will find the program QRENCODE (it is a free program from Kentaro Fukuchi).
After downloading it insert in your NETEXPRESS program the following:
77 run-id pic 9(8) comp-5.
01 CmdLine pic x(256).
STRING 'qrcode -o 'MY-QRCODE.BMP -s 5 " TEXT TO BE CODED” X”00”
DELIMITED BY SIZE INTO cmdline.
002846 move 1 to CmdShow,
call "CBL_EXEC_RUN_UNIT" using CmdLine
by value 130 *>length of cmdline
by reference run-id
by value id-stat *> stack-size
x"01" *> flags
returning CmdStatus.
You will receive a file “MY-QRCODE.BMP” which you can print where you need it.
The TEXT TO BE CODED is all you want to code: "GiroSolution AG DE23690516200012345600" etc.
QRCODE allows a series of Parameters, you will find with the program. -s 5 is the size 5
Rolf@cedrosa.mx