Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Interchange: users

Barcode Scanner & Software interact with IC?

 

 

Interchange users RSS feed   Index | Next | Previous | View Threaded


paul at gishnetwork

Aug 4, 2011, 12:51 PM

Post #1 of 5 (405 views)
Permalink
Barcode Scanner & Software interact with IC?

I'm wondering if anybody is/has used a barcode scanner in an office that
plugged/collaborated with a Windows PC running (presumably) it's barcode
software, that could be programmed to connect to a remote interchange server
for things like updating inventory.

The remote server is locked down is authorized key access, so even if it
posted data to a URL (that could then be vetted by customer service).

I've read in the archives of people using barcode scanners which I presumed
were plugged into a linux box, or even directly into the machine running IC.
Besides my scenario above, I am wondering on the make/model of scanner you
use, and in what way you use it.

Yes, I am doing me own research online, but if I find someone else doing
this with IC, I'd rather do it similarly so that I can hire them if I need
help or have trouble.

Thanks,

Paul Jordan

Consulting, Design, & Programming > www.gishnetwork.com
t.626.275.2517 f.866.401.2657


_______________________________________________
interchange-users mailing list
interchange-users [at] icdevgroup
http://www.icdevgroup.org/mailman/listinfo/interchange-users


jon at endpoint

Aug 4, 2011, 3:00 PM

Post #2 of 5 (401 views)
Permalink
Re: Barcode Scanner & Software interact with IC? [In reply to]

On Thu, 4 Aug 2011, Paul Jordan wrote:

> I'm wondering if anybody is/has used a barcode scanner in an office that
> plugged/collaborated with a Windows PC running (presumably) it's barcode
> software, that could be programmed to connect to a remote interchange
> server for things like updating inventory.

I've used Symbol handheld barcode scanners with a couple of clients.
Their recent scanners are USB devices that act like keyboards, so they
just type the barcode number really fast, and thus don't require any
special programming -- just a web browser with focus on the correct field
when you scan the barcode. That's nice because it works on any OS, in any
browser, and doesn't need any special development.

I have had to change the scanner programming a little to stop it from
sending special control characters at the beginning and/or end of the
barcode number, but that's easy to do and explained in the manual.

Jon

--
Jon Jensen
End Point Corporation
http://www.endpoint.com/

_______________________________________________
interchange-users mailing list
interchange-users [at] icdevgroup
http://www.icdevgroup.org/mailman/listinfo/interchange-users


db at m-and-d

Aug 5, 2011, 5:32 AM

Post #3 of 5 (394 views)
Permalink
Re: Barcode Scanner & Software interact with IC? [In reply to]

> I'm wondering if anybody is/has used a barcode scanner in an office that
> plugged/collaborated with a Windows PC running (presumably) it's barcode
> software, that could be programmed to connect to a remote interchange server
> for things like updating inventory.
>
> The remote server is locked down is authorized key access, so even if it
> posted data to a URL (that could then be vetted by customer service).
>
> I've read in the archives of people using barcode scanners which I presumed
> were plugged into a linux box, or even directly into the machine running IC.
> Besides my scenario above, I am wondering on the make/model of scanner you
> use, and in what way you use it.
>
> Yes, I am doing me own research online, but if I find someone else doing
> this with IC, I'd rather do it similarly so that I can hire them if I need
> help or have trouble.
>
> Thanks,
>
> Paul Jordan
>
> Consulting, Design, & Programming > www.gishnetwork.com
> t.626.275.2517 f.866.401.2657

I use several type of scanners, some are USB and some plug into a ps/2
keyboard using a special connector. As Jon said, they operate as
keyboards. I've found the the freely available font called "Free 3 of 9"
or "Free 3 of 9 extended" work well. Others exist which are more space
efficient. For most scanners you make a barcode by adding an asterisk
before and after what you wish to encode, and use the barcode font. So
to encode Interchage Rocks, you'd use *Interchange Rocks*

DB

_______________________________________________
interchange-users mailing list
interchange-users [at] icdevgroup
http://www.icdevgroup.org/mailman/listinfo/interchange-users


m.mescoli at omnib

Aug 5, 2011, 6:18 AM

Post #4 of 5 (393 views)
Permalink
Re: Barcode Scanner & Software interact with IC? [In reply to]

Il 05/08/2011 14:32, DB ha scritto:
> "Free 3 of 9 extended"

Great ;-)

--
Marco "Fino alla bara sinpara"
Marco "Up to demise we rise"

_______________________________________________
interchange-users mailing list
interchange-users [at] icdevgroup
http://www.icdevgroup.org/mailman/listinfo/interchange-users


frank at aussievitamin

Aug 14, 2011, 7:26 PM

Post #5 of 5 (361 views)
Permalink
Barcode Scanner & Software interact with IC? [In reply to]

Hello Paul,

We wrote our own application when we first started, but don't use
anymore because we refuse to serve stingy Australian retailers now,
compete with them and do things differently.

The system worked as follows:

The retailer walks a laptop with scanner and camera on a trolly down an
aisle. They place an item on the scale, scan it and take a photo. The
image contains a time stamp. The weight and time is also recorded. My
software analysed a folder full of images and a sequential file with a
barcode, weight and possibly typed in description and comment.

My software opened each JPEG file (later), found the time stamp and
matched it to the correct record in the sequential file (you need to do
things in order). It then created barcode.jpg like this 1234567890.jpg.
We then changed that to sku.jpg later, but it was a great way of
matching an image to the data records.

I would now use perl tk to do this. Create a menu and submit some data
to create the sequential file, record weights and typed in info and
times. We found no way to use a camera with this. Hence the camera was
standalone. If the photo was taken before we click "process" on the menu
then the time in the JPEG is just before the time in the data file (and
yes they do need to be set daily, as time drifts). Things most likely
have progressed in 7 years and you may be able to plug a camera into
your pc and use in real time like the scales.

We don't use that anymore but we do have a decrementing stock counter
for the items we stock only.

Regards,

Frank Reitzenstein



On 8/5/2011 6:00 AM, Jon Jensen wrote:
> On Thu, 4 Aug 2011, Paul Jordan wrote:
>
>> I'm wondering if anybody is/has used a barcode scanner in an office
>> that plugged/collaborated with a Windows PC running (presumably) it's
>> barcode software, that could be programmed to connect to a remote
>> interchange server for things like updating inventory.
>
> I've used Symbol handheld barcode scanners with a couple of clients.
> Their recent scanners are USB devices that act like keyboards, so they
> just type the barcode number really fast, and thus don't require any
> special programming -- just a web browser with focus on the correct
> field when you scan the barcode. That's nice because it works on any
> OS, in any browser, and doesn't need any special development.
>
> I have had to change the scanner programming a little to stop it from
> sending special control characters at the beginning and/or end of the
> barcode number, but that's easy to do and explained in the manual.
>
> Jon
>


_______________________________________________
interchange-users mailing list
interchange-users [at] icdevgroup
http://www.icdevgroup.org/mailman/listinfo/interchange-users

Interchange users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.