Hi all
I work with PB 2017-R3. In my application I must generate a report (datawindow) with QR code and for this I use "qrcodelib.dll".
The problem is that when the compilation of the executable is 64 bits it does not create the QR. It only generates when compilation is 32 bits, from what I understand, the DLL is not compatible with 64 bit architecture.
CONSTANT int LEVEL_L = 0
CONSTANT int LEVELM = 1
CONSTANT int LEVELQ = 2
CONSTANT int LEVELH = 3
li_correctionLevel = LEVELQ
li_height = 120
li_width = 120
TRY
li_result = FullQRCode(TRUE,FALSE,RGB(255,255,255),0,as_data,li_correctionLevel,4,5,5,li_height,li_width,as_fileName)
CATCH (Exception e )
li_result = -1
CATCH (RuntimeError re)
li_result = -1
END TRY
RETURN li_result
Will there be a library, perhaps native of PowerBuilder, that allows to generate QR codes, whether compiling in 32 or 64 bits?
Thanks and regards