Android Question Physical Inventory taking application

FromWinToAnd

New Member
Hi

I need to build an application for Inventory taking in which I need to scan a barcode. The application will be installed in a
hand held scanner with LCD screen.

Once the item is scanned and the description pulled from the item description file, I need to allow the user to input the quantity.

Data collected must be saved in the local scanner memory and when finishing the inventory taking it must allow to export the stored data.

Does B4A could make use of some sort of bar code scanning library?

Does B4A allow to store data in the scanner memory for later export?

I will appreciate comments on this requirement.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
There are several barcode scanner libraries: https://www.b4x.com/android/forum/pages/results/?query=barcode+scanner
However, in the case of a device with built-in scanner, it is usually implemented as HID device and acts as a keyboard. In that case you can intercept it with an EditText which you handle its TextChanged event. There are also other options.
You need to check the specific device docs.

Does B4A allow to store data in the scanner memory for later export?
Assuming that the device supports it, then yes.
 
Upvote 0

Jeffrey Cameron

Well-Known Member
Licensed User
Longtime User
Our system uses this brand of scanner for physical inventory:
You can program it to ask for ID then QTY and it comes with software to interface to the unit and downloaded a text file of the scanned data.
 
Upvote 0

FromWinToAnd

New Member
Our system uses this brand of scanner for physical inventory:
You can program it to ask for ID then QTY and it comes with software to interface to the unit and downloaded a text file of the scanned data.
Can it be programmed to populate the location, user or scanner id? Then aisle and quantity could be keyed in.
 
Upvote 0

Jeffrey Cameron

Well-Known Member
Licensed User
Longtime User
Can it be programmed to populate the location, user or scanner id? Then aisle and quantity could be keyed in.
I seem to recall you can have it ask for a number of inputs, both scanner or keyboard, but it's been years since I messed with it.
You should follow the link I provided and check out their documentation.
 
Upvote 0

Jones Hone

Active Member
Licensed User
Longtime User
We all use our phones as inventory machines.
Write a barcode scanning APP yourself.
Whatever function you want, you can do it.
 
Upvote 0
Top