Topic: Script for scan "Barcode" and "QR Code"

Hi members ? Can anyone share a script to scan barcode or qrcode ? So, easy for me to display the data when we scan the barcode or qrcode using scanner ..

Re: Script for scan "Barcode" and "QR Code"

Hello,


Usually you don't need any script when you using scanner, you need just set focus to textbox after scanning you will see code from barcode in the textbox, because scanner will send code like keystrokes.

Dmitry.

Re: Script for scan "Barcode" and "QR Code"

Can you explain how we can focus on textbox.

Thanks / Regards

Re: Script for scan "Barcode" and "QR Code"

You can set focus on textbox just click by mouse.


Or using script

Form1.Edit1.SetFocus;
Dmitry.