hello guys,
I have written code to read from a barcode scanner through isl and i am wondering if there is any way to automaticaly call the enter key after the scan.
I use motorola ls2208 which is set to return an enter in the end of reading. But it doesn't work.
I have written code to read from a barcode scanner through isl and i am wondering if there is any way to automaticaly call the enter key after the scan.
Code:
EVENT inq : 1
var barcode : a13
forever
input barcode, "Scan barcode"
//loadkybdmacro @KEY_ENTER [COLOR=#EF2929]this doesnt work[/color]
if (barcode = "") OR (len(barcode) <> 13)
break
endif
.....
endfor
ENDEVENT
I use motorola ls2208 which is set to return an enter in the end of reading. But it doesn't work.