Go Back   Android Forums > Android Development > Application Development > Application Requests

Application Requests Request Apps or provide ideas for the devs here.



Reply
 
LinkBack Thread Tools
Old February 12th, 2010, 06:56 PM   #1 (permalink)
New Member
 
Join Date: Feb 2010
Posts: 5
 
Device(s): DROID
Thanks: 1
Thanked 4 Times in 4 Posts
Default Barcode Scanner to PC

Hello all!

I have searched Hi and Low for a Barcode Scanner that will pair up with my PC to instantly input data.

Kinda like "Gmote" mixed with "Barcode Scanner"

either via ip or Bluetooth...

Ive tried Inventory, Inventory DROID, Barcode2file... But


Any thoughts or Ideas?

Joshua is offline  
Reply With Quote
The Following User Says Thank You to Joshua For This Useful Post:
gamepma (November 18th, 2011)
Sponsors
Old February 12th, 2010, 08:32 PM   #2 (permalink)
Member
 
Join Date: Oct 2009
Posts: 116
 
Device(s): Incredible
Thanks: 10
Thanked 16 Times in 9 Posts
Default

All the apps I have seen are standalone android apps.

Bill
Bill is offline  
Reply With Quote
The Following User Says Thank You to Bill For This Useful Post:
gamepma (November 18th, 2011)
Old February 13th, 2010, 12:20 PM   #3 (permalink)
Junior Member
 
Join Date: Dec 2009
Posts: 47
 
Device(s):
Thanks: 0
Thanked 1 Time in 1 Post
Default

so where would the numbers be entered on the pc? In the clipboard so you scan on android and paste on pc? How would this work on the pc?
marchold is offline  
Reply With Quote
The Following User Says Thank You to marchold For This Useful Post:
gamepma (November 18th, 2011)
Old February 21st, 2010, 07:37 PM   #4 (permalink)
Over Macho Grande?
 
alostpacket's Avatar
 
Join Date: Nov 2009
Location: NY
Posts: 6,060
 
Device(s): GalaxyNexus(LTE), NexusOne, OG Droid, GalaxyTab 10.1(LTE), Eris, Logitech Revue (fishtank)
Thanks: 2,369
Thanked 2,115 Times in 861 Posts
Default

My app listables does something similar, what kind of information did you want to pass to the PC?
alostpacket is offline  
Reply With Quote
The Following User Says Thank You to alostpacket For This Useful Post:
gamepma (November 18th, 2011)
Old February 21st, 2010, 08:56 PM   #5 (permalink)
New Member
 
Join Date: Feb 2010
Posts: 5
 
Device(s): DROID
Thanks: 1
Thanked 4 Times in 4 Posts
Default

the info scanned would go into whatever field you have currenty clicked on... like scanning upc labels and serial numbers.

I will check out the listables app now
Joshua is offline  
Reply With Quote
The Following User Says Thank You to Joshua For This Useful Post:
gamepma (November 18th, 2011)
Old February 23rd, 2010, 03:35 AM   #6 (permalink)
Over Macho Grande?
 
alostpacket's Avatar
 
Join Date: Nov 2009
Location: NY
Posts: 6,060
 
Device(s): GalaxyNexus(LTE), NexusOne, OG Droid, GalaxyTab 10.1(LTE), Eris, Logitech Revue (fishtank)
Thanks: 2,369
Thanked 2,115 Times in 861 Posts
Default

Quote:
Originally Posted by Joshua View Post
the info scanned would go into whatever field you have currenty clicked on... like scanning upc labels and serial numbers.

I will check out the listables app now

Hmm ok, I will look into this but wont be for awhile. I should have said my app does more like the opposite, it generates QR codes, not scans them.

What you are seeking should be relatively easy on the phone side, there is an open source barcode scanner what can handle running the cammera and grabbing the data. The Scanner has a good api for developers to tie in to also. The tricky part is passing that data somewhere useful.

Unfortunately I dont know enough about PC programming to program an app to capture the data from the USB driver of a phone.

But like my app, I could paste it to a clipboard, or email it or write to a file on the SD.

As I learn more though i'll pop back in this thread and see if I can put in some updates on what I find
alostpacket is offline  
Reply With Quote
The Following 2 Users Say Thank You to alostpacket For This Useful Post:
gamepma (November 18th, 2011), Joshua (February 27th, 2010)
Old March 4th, 2010, 02:25 PM   #7 (permalink)
New Member
 
Join Date: Mar 2010
Posts: 9
 
Device(s):
Thanks: 0
Thanked 8 Times in 7 Posts
Default

I was thinking about writing an app to do this.

Barcode scanners generally either send their data to the PC over a serial port, or by pretending to be a keyboard (called a keyboard wedge). I think that the best idea is to have the phone on the same wifi network as the PC and then send the data to the PC over the network. As 'alostpacket' says, the phone side of it probably won't be too hard...just a matter of calling existing programs to do the scanning and then sending the data over the network.

In the past I was able to send info that I typed into my phone to a PC serial port using Telnet and some open source apps on the PC. So the serial port type scanner would basically be done with that approach. I think that in order to make a keyboard wedge out of the phone I'd probably have to write a custom app for the PC side to gather the data coming over the network and send it out as keystrokes somehow.

I think I will have some time in a couple of weeks, maybe I can get into it then
bdrehmer is offline  
Reply With Quote
The Following User Says Thank You to bdrehmer For This Useful Post:
gamepma (November 18th, 2011)
Old March 5th, 2010, 11:42 PM   #8 (permalink)
New Member
 
Join Date: Mar 2010
Posts: 9
 
Device(s):
Thanks: 0
Thanked 8 Times in 7 Posts
Default progress

just a quick update...i started working on it a bit. i've got the program for the PC side pretty close to done. i'll probably get some code put up sometime this weekend. the PC app uses mono and gtk# and can function as a keyboard wedge or send data over a serial port. it will support windows and any unix that uses x-windows and can run xvkbd. didn't get to the phone side of it yet, so the PC app will be of limited (read: no) use at the moment. i do have a simulator app though...any alpha testers?
anybody know of a com0com type program for Linux? I don't think that there is one...
bdrehmer is offline  
Reply With Quote
The Following User Says Thank You to bdrehmer For This Useful Post:
gamepma (November 18th, 2011)
Old March 6th, 2010, 12:42 AM   #9 (permalink)
Over Macho Grande?
 
alostpacket's Avatar
 
Join Date: Nov 2009
Location: NY
Posts: 6,060
 
Device(s): GalaxyNexus(LTE), NexusOne, OG Droid, GalaxyTab 10.1(LTE), Eris, Logitech Revue (fishtank)
Thanks: 2,369
Thanked 2,115 Times in 861 Posts
Default

I'd be glad to help with the java end but, why serial port?
alostpacket is offline  
Reply With Quote
The Following User Says Thank You to alostpacket For This Useful Post:
gamepma (November 18th, 2011)
Old March 6th, 2010, 01:13 AM   #10 (permalink)
New Member
 
Join Date: Mar 2010
Posts: 9
 
Device(s):
Thanks: 0
Thanked 8 Times in 7 Posts
Default

hi alostpacket! the idea was that the phone could be used as a plug'n'play replacement for commercial barcode scanners. in most cases, and for the casual home user, it will probably be used as a keyboard wedge. when the scanner is used by another program on the PC it can be more useful / easier to automate processes when the data is sent over a serial port. for example, a lot of the programs that i write at work prompt the operator to scan something like a serial number and then wait for the scanned data to appear on the serial port before continuing on with the program.

the PC app that i am working on uses a .NET TcpListener to get data from the network. so on the phone side, the scanned barcode data would be sent by the equivalent of a .NET TcpClient to the PC...not sure how that works in Android yet. the user would specify the destination IP and port within the app on the phone. you are welcome to help if you like. i don't think i could get to the phone part until about a week from now.
bdrehmer is offline  
Reply With Quote
The Following User Says Thank You to bdrehmer For This Useful Post:
gamepma (November 18th, 2011)
Sponsors
Old March 6th, 2010, 07:51 AM   #11 (permalink)
New Member
 
Join Date: Feb 2010
Posts: 5
 
Device(s): DROID
Thanks: 1
Thanked 4 Times in 4 Posts
Default

Ill be a tester if needed...

Thanks again for the time put into this, I know ill be donating if we can get this to work!
Joshua is offline  
Reply With Quote
The Following User Says Thank You to Joshua For This Useful Post:
gamepma (November 18th, 2011)
Old March 6th, 2010, 08:13 PM   #12 (permalink)
New Member
 
Join Date: Mar 2010
Posts: 9
 
Device(s):
Thanks: 0
Thanked 8 Times in 7 Posts
Default code uploaded

Downloads - android-pcbcr - Project Hosting on Google Code

See the readme.txt file for info on how to install and test it. This is just the PC side application so far. I've tested it on Xubuntu 9.10 and Windows XP. On Windows 2000 the latest version of Mono wasn't working, but older versions of Mono supposedly work. I'd be interested to hear if people have any trouble getting it up and running, if the instructions in the readme file could be improved at all, and how testing goes on Vista and Windows 7 (no trouble expected). I think it would also run on Mac, but not totally sure.
bdrehmer is offline  
Reply With Quote
The Following User Says Thank You to bdrehmer For This Useful Post:
gamepma (November 18th, 2011)
Old March 8th, 2010, 06:42 PM   #13 (permalink)
New Member
 
Join Date: Feb 2010
Posts: 5
 
Device(s): DROID
Thanks: 1
Thanked 4 Times in 4 Posts
Default

Working on installing it now...
Joshua is offline  
Reply With Quote
The Following User Says Thank You to Joshua For This Useful Post:
gamepma (November 18th, 2011)
Old March 13th, 2010, 05:30 PM   #14 (permalink)
New Member
 
Join Date: Mar 2010
Posts: 9
 
Device(s):
Thanks: 0
Thanked 8 Times in 7 Posts
Default Android portion

I've got the whole thing working now...you can find the latest .apk file for the phone and the latest .exe for the PC from the svn repository here:

android-pcbcr - Project Hosting on Google Code

(apk file is in android-pcbcr - Project Hosting on Google Code)
(exe is in android-pcbcr - Project Hosting on Google Code)

I didn't release it to Android Market yet because it still needs some polishing before that. I am also going to make a setup program for Windows that will put a shortcut in the start menu so that you don't have to type out all the cd and mono stuff before it is officially released.
bdrehmer is offline  
Reply With Quote
The Following User Says Thank You to bdrehmer For This Useful Post:
gamepma (November 18th, 2011)
Old March 17th, 2010, 11:22 AM   #15 (permalink)
New Member
 
Join Date: Mar 2010
Posts: 9
 
Device(s):
Thanks: 0
Thanked 8 Times in 7 Posts
Default progress update

just an update on my progress...
I'm pretty close to releasing it to Android Market. I've been working on an installer for Windows that isn't quite to where I want it to be yet. The application itself is ok, but if people can't figure out how to use it I will be in trouble
Should be done by the end of the week, and maybe as soon as later today...
bdrehmer is offline  
Reply With Quote
The Following User Says Thank You to bdrehmer For This Useful Post:
gamepma (November 18th, 2011)
Old March 17th, 2010, 03:23 PM   #16 (permalink)
New Member
 
Join Date: Mar 2010
Posts: 9
 
Device(s):
Thanks: 0
Thanked 8 Times in 7 Posts
Default published

it is up in the Android Market now

application name is: PC_BCR
it is under Applications...Tools
bdrehmer is offline  
Reply With Quote
The Following 2 Users Say Thank You to bdrehmer For This Useful Post:
alostpacket (June 15th, 2011), gamepma (November 18th, 2011)
Old May 12th, 2010, 11:34 AM   #17 (permalink)
Member
 
jkmailley's Avatar
 
Join Date: Mar 2010
Location: New Jersey
Posts: 114
 
Device(s): HTC Droid Eris 2.1 OTA .:Rooted:. Nonsensikal v10.1 Vanilla
Thanks: 11
Thanked 9 Times in 8 Posts
Default

I can't wait to try this when I get home. I use a software called Movie Database and it gives you an option to scan barcodes to auto enter them into your collection.
__________________
~ If you can dream it, you can do it...or find an app for that.
jkmailley is offline  
Reply With Quote
Old June 22nd, 2010, 03:56 PM   #18 (permalink)
New Member
 
Join Date: Jun 2010
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Any chance this can be made to work via bluetooth as the wifi will not work as it is being used in a work environment and cannot connect to our secured network here.
BaLListic_Evo is offline  
Reply With Quote
Old June 25th, 2010, 11:58 AM   #19 (permalink)
New Member
 
Join Date: Jun 2010
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

How about having the program just save the scanned data to a .csv file so I can down load it later?

No need to have any communications with any network or divice, just record the barcodes.

It would be nice to be able to set up X-number of columns to scan and have it read different types of barcodes.

When I'm done canning my inventory, I can then email the .csv file to myself and work with the data then.

The current program won't work for me.
WillR is offline  
Last edited by WillR; June 25th, 2010 at 12:01 PM.
Reply With Quote
Old September 27th, 2010, 01:01 AM   #20 (permalink)
New Member
 
Join Date: Sep 2010
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

This program rocks. I was starting to make it and then I stumbled upon yours. Does exactly what I need it to do and how I need it done. Thanks a bunch for getting this done.
texrmm91 is offline  
Reply With Quote
Sponsors
Old September 27th, 2010, 03:05 PM   #21 (permalink)
New Member
 
Join Date: Aug 2010
Posts: 3
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I agree that being able to save the data to a .CSV instead of connecting to a wifi network would be invaluable. Here at my job I can't connect my phone to the network for the same reason as ballistic_evo
MikalCarbine is offline  
Reply With Quote
Old October 4th, 2010, 10:03 PM   #22 (permalink)
New Member
 
Join Date: Oct 2010
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by bdrehmer View Post
it is up in the Android Market now
Thanks for this brilliantly simple application.
I looked for something like this to catalog my album collection, this works beautifully with my script for Amazon lookup

USB connectivity or some kind of security for use over public internet/3g would be a nice addition for when you lack a wifi connection, but the application does what I need. Nice work!
Man Eating Duck is offline  
Reply With Quote
Old February 22nd, 2011, 07:43 AM   #23 (permalink)
New Member
 
Join Date: Feb 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default Thanks!

Thanks man, exacly what I have been looking for!!!

Works like a charm
nejck is offline  
Reply With Quote
Old April 9th, 2011, 05:31 PM   #24 (permalink)
New Member
 
Join Date: Apr 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default I am stupid....

This program looks really cool. I have downloaded the app, and the program for my pc. I can scan barcodes on my dvds with the phone, (Im about to register my collection), and I can see the numbers appear inside the PC_BCR program, but I can´t get them directly into anywhere else, not notepad, works sheed, or the dvd register program i got (dvd profiler).

I have of cource tryed both the keyboard wedge, and the seriel device [COM 1]...

I have installed the Mono-program as told to.

I have tryed to install the com0com but it looks like I am doing that wrong, and I would prefer to use the keyboard wedge anyway.

Can anyone help me? (My wife is almost killing me because I have used 4 nights getting this thing working )

I´m running Windows 7, on af 64bit system

Thanks for even reading this.
Br. Arnebirger
Arnebirger is offline  
Reply With Quote
Old May 30th, 2011, 11:21 AM   #25 (permalink)
New Member
 
Join Date: May 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Can't find this application?
Has it been removed form the market?
Can anybody help me out...
I would be interested in using this app via tethered USB, or wireless....
I write code in LabWindowsCVI, so even a 'keyboard wedge' would work with my apps that require user entry...
I am also finding that the barcodes captured by many of the "scanner apps" on the Android market, do not correctly scan the data that I am trying to scan (non-UPC) - usually simple ASCII encoded serial numbers.
Any help would be appreciated !
Thanks !
George Ford
GeorgeFord is offline  
Reply With Quote
Old June 7th, 2011, 09:35 PM   #26 (permalink)
Junior Member
 
Join Date: Sep 2010
Posts: 93
 
Device(s): HTC EVO 4G
Thanks: 4
Thanked 7 Times in 6 Posts
Default

If you guys are having issues finding the old barcode scanner you can try my application. It's called phone to computer and the application page for this forum is located at:
Phone To Computer (also remote control)

My app recently just got updated with barcode scanner functionality. It is also a remote control for the computer as well as allowing you to send data or download data off your computer.
RazzleFnDazzle is offline  
Reply With Quote
Old July 9th, 2011, 05:21 AM   #27 (permalink)
New Member
 
Join Date: Jun 2011
Posts: 3
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Can sombody post PC_BCR zip out here i am getting 403 error.
yusufmerchant is offline  
Reply With Quote
Old July 22nd, 2011, 05:40 AM   #28 (permalink)
New Member
 
Join Date: Jun 2011
Posts: 3
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by nejck View Post
Thanks man, exacly what I have been looking for!!!

Works like a charm
Hi Buddy can you pass me PC side application of pc_BCR
yusufmerchant is offline  
Reply With Quote
Old August 11th, 2011, 10:32 PM   #29 (permalink)
New Member
 
Join Date: Apr 2010
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default PC_BCR PC Program

If someone has the pc program for this android app could they please pass it to me. Thanks
takisis666 is offline  
Reply With Quote
Old October 2nd, 2011, 10:31 AM   #30 (permalink)
New Member
 
Join Date: Oct 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Cry

Google codes link is getting error 403 and the app isn't on Android Market. Can someone, please, pass the app by e-mail?! Since now, thanks for the help.
rafaelss is offline  
Reply With Quote
Sponsors
Old October 6th, 2011, 03:08 PM   #31 (permalink)
New Member
 
Join Date: Oct 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 3 Times in 1 Post
Cool

Quote:
Originally Posted by yusufmerchant View Post
Can sombody post PC_BCR zip out here i am getting 403 error.
I've got it after some hard searching.

I've also included the PC_BCR android app Version 1.3 in the zip



I wonder WTF happened to this project...
Attached Files
File Type: zip PC_BCR-v1.2.zip (3.02 MB, 379 views)
prettypistol is offline  
Reply With Quote
The Following 3 Users Say Thank You to prettypistol For This Useful Post:
namirred (November 13th, 2011), rolle (October 28th, 2011), tek-monkey (January 25th, 2012)
Old October 23rd, 2011, 03:16 PM   #32 (permalink)
New Member
 
Join Date: Oct 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks prettypistol, this sounds like just what I needed. Can someone tell me how to install the PC_BCR android app to my phone?
davinci819 is offline  
Reply With Quote
Old October 28th, 2011, 12:49 PM   #33 (permalink)
New Member
 
Join Date: Oct 2011
Location: Jyväskylä, Finland
Posts: 1
 
Device(s): HTC Desire Z, tons of desktop computers and laptops,
Thanks: 1
Thanked 0 Times in 0 Posts
Send a message via ICQ to rolle Send a message via AIM to rolle Send a message via MSN to rolle Send a message via Yahoo to rolle Send a message via Skype™ to rolle roni.laukkarinen
Default

Quote:
Originally Posted by prettypistol View Post
I wonder WTF happened to this project...
Yeah, me too. Thanks for the files!
rolle is offline  
Reply With Quote
Old November 9th, 2011, 05:36 AM   #34 (permalink)
New Member
 
Join Date: Nov 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Super, merci !
dpaulin is offline  
Reply With Quote
Old November 13th, 2011, 05:49 AM   #35 (permalink)
New Member
 
Join Date: Nov 2011
Posts: 1
 
Device(s):
Thanks: 1
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by davinci819 View Post
Thanks prettypistol, this sounds like just what I needed. Can someone tell me how to install the PC_BCR android app to my phone?
Hi. Thanks to prettypistol.

To install on your phone

1 Download Astro from the market (I can't post links yet)
2 Connect you phone to pc and mount as disk drive.
3 Copy PC_BCR_1.3.apk to your sd card
4 Disconect your phone from pc
5 Run Astro and tap 'File Manager' go to sdcard root dir you will see PC_BCR_1.3, tap it and then tap Install.

Hope this helps
namirred is offline  
Reply With Quote
The Following User Says Thank You to namirred For This Useful Post:
HostingDude (January 14th, 2012)
Old November 25th, 2011, 05:06 AM   #36 (permalink)
New Member
 
Join Date: Jun 2011
Posts: 3
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by prettypistol View Post
I've got it after some hard searching.

I've also included the PC_BCR android app Version 1.3 in the zip



I wonder WTF happened to this project...



Bro thanks a lot, sorry to reply so late, was out station.

Thanks a lot
yusufmerchant is offline  
Reply With Quote
Old December 25th, 2011, 08:00 AM   #37 (permalink)
New Member
 
Join Date: Dec 2011
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thank you sooo much for this fantastic app.
budmeister is offline  
Reply With Quote
Old January 14th, 2012, 11:28 AM   #38 (permalink)
New Member
 
Join Date: Jan 2012
Location: Florida now (from Chicago)
Posts: 1
 
Device(s): Samsung Galaxy S-II 4.5", Springboard 7", LG G-Slate 8.9", Tmo Sensation 4G, Galaxy S 4G, more...
Thanks: 1
Thanked 0 Times in 0 Posts
Cool Can I help get this back on the Android Marketplace?

Thanks for this... working perfectly on Galaxy S II.

Nice job!

Can I do anything to help get this back on the Android Marketplace?

If nothing else, I'll host the files if you desire.

Thx.
HostingDude is offline  
Reply With Quote
Old January 22nd, 2012, 05:05 PM   #39 (permalink)
New Member
 
Join Date: Jan 2012
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks prettypistol.
The program work correctly in the phone as in the PC, but the keystrokes not appears in notepad.
The log in the PC_BCR program show the code scanned, put "simulated keystrokes", but the keystrokes not show in notepad (obvious, the notepad is selected as active).
The PC is Windows 7 32bits and mono/GTK is installed.
pamoxi is offline  
Reply With Quote
Old January 29th, 2012, 10:39 AM   #40 (permalink)
New Member
 
Join Date: Jan 2012
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Default

i've got the same problem over here...


Quote:
Originally Posted by pamoxi View Post
Thanks prettypistol.
The program work correctly in the phone as in the PC, but the keystrokes not appears in notepad.
The log in the PC_BCR program show the code scanned, put "simulated keystrokes", but the keystrokes not show in notepad (obvious, the notepad is selected as active).
The PC is Windows 7 32bits and mono/GTK is installed.
SomebodyNL1 is offline  
Reply With Quote
Sponsors
Old February 7th, 2012, 05:57 AM   #41 (permalink)
New Member
 
Join Date: Feb 2012
Posts: 1
 
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Sad me too.

Quote:
Originally Posted by SomebodyNL1 View Post
i've got the same problem over here...
me too.
Beste is offline  
Reply With Quote
Reply

Bookmarks


Go Back   Android Forums > Android Development > Application Development > Application Requests User CP
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
USB barcode scanner amiekuser HTC Desire 12 December 13th, 2011 01:42 PM
Barcode Scanner cberna Introductions 5 March 2nd, 2011 10:09 AM
Barcode Scanner: The barcode app to rule them all. Wello Application Reviews 3 November 22nd, 2010 02:23 PM
Barcode Scanner: Great BC Scanner App garrickr Application Reviews 0 June 8th, 2010 06:29 AM
barcode scanner chris9788 Android Applications 4 January 13th, 2010 03:05 PM



All times are GMT -5. The time now is 10:14 PM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Custom vBulletin Skins by: Relivo


SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.