Newbie Q: Using a barcode scanner with VB 
Author Message
 Newbie Q: Using a barcode scanner with VB

I was wondering if it was possible to use a barcode scanner with VB.  Specifically,
the scenario is this:

Currently, an associate in manufacturing can access a bunch of on-line work instructions (written in MS word)  by clicking buttons on a front-end interface developed in VB.  There has been some discussion of using a bar-code scanner whereby an associate can scan the serial number for a particular model and get specific info pertaining to work instructions (which will still be in MS word files) associated with the features for this model.
I hope this makes sense

Would appreciate if anyone has info to my query. Thanks in advance,

Melroy



Mon, 02 Feb 1998 03:00:00 GMT  
 Newbie Q: Using a barcode scanner with VB

Quote:
> I was wondering if it was possible to use a barcode scanner with VB.  Specifically,
> the scenario is this:

No reason why you shouldn't use one.....

Quote:
> Currently, an associate in manufacturing can access a bunch of on-line work instructions

(written in MS word)  by clicking buttons on a front-end interface developed in VB.  There has
been some discussion of using a bar-code scanner whereby an associate can scan the serial number
for a particular model and get specific info pertaining to work instructions (which will still
be in MS word files) associated with the features for this model.

Quote:
> I hope this makes sense

> Would appreciate if anyone has info to my query. Thanks in advance,

To my knowledge, there are essentially 2 types of bar-code scanner, and i've worked with them
both recently.  "Wedge" types wedge themselves in between the computer and the keyboard, and
when you scan a bar-code the unit wedges the data into the keyboard buffer as if it had been
entered from the keyboard.  We use this type here at our company, and we rather like the HP
KeyWand, which although expensive, feels good, and can recognise a remarkable range of
bar-codes.

The second type is one that plugs in the serial port.  If my memory serves me correctly, these
are more off-line devices, and it is quite common for the data to be captured into a file on
disk rather than entered through the keyboard buffer, so it can be processed later.

Providing VB takes data entry via the keyboard buffer, and doesn't use some kind of funny data
entry system, it whoudl work a treat......Let me know how you get on, and if you want anymore
information...

Regards

Dan Lyon

********************************************************************

********************************************************************
* Full Time Student, Part Time VB Programmer, and general Good Egg *
********************************************************************



Mon, 02 Feb 1998 03:00:00 GMT  
 Newbie Q: Using a barcode scanner with VB

Quote:

>I was wondering if it was possible to use a barcode scanner with VB.  Specifically,
>the scenario is this:

No problem.  You want to use a barcode reader that has a serial interface
so you can communicate through a COM port.  They are available from any
number of manufacturers listed in the back of PC Magazine.  I use the
stuff from IBS (800-765-2271) because they give you a nice discount if
you resell.

In VB just use the Communications VBX to connect to the port, add a
little code for your application, and you are there.



Sun, 08 Feb 1998 03:00:00 GMT  
 Newbie Q: Using a barcode scanner with VB
==========================================================================

Subject: Re: Newbie Q: Using a barcode scanner with VB
==========================================================================

Hello walraven!

Quote:

> >D'Souza) says:
> >I was wondering if it was possible to use a barcode scanner with VB.
> >Specifically, the scenario is this:

> No problem.  You want to use a barcode reader that has a serial interface
> so you can communicate through a COM port.

  I have some experiences with barcode readers to switch between the keyboard
  and the PC. I have to say, it's as easy as it can be. The data
  from the barcode reader is treated as data from the keyboard.

  So, there's no need to use a reader that reserves a com port.

 Regards
     Andy

==========================================================================

    LOCATION: Essen/Germany                 Fax    : +49-201-224166
    AST on IRC                              DATEX-J: 0201-229928-0001
==========================================================================



Mon, 09 Feb 1998 03:00:00 GMT  
 Newbie Q: Using a barcode scanner with VB
This is only true when some TSR routine such as BARKB has been
pre-loaded.  Such a routine reroutes data from the COM1 or COM2 port to
the input buffer so that the program believes that the input is coming
form the keyboard.  Generally speaking this is much easier to deal with
because then you don't have to watch out for unreadable codes being keyed
by hand.  However do watch out for the terminator codes for the line and
for the signal codes at the beginning such as &HFE and &HFF which signal
EAN8 or EAN13 type codes but are not present for manual keying.  The
codes used depend upon the EPROM programming of the scanner - see manual
for different types.

John Phipps



Thu, 12 Feb 1998 03:00:00 GMT  
 
 [ 5 post ] 

 Relevant Pages 

1. Using barcode scanner with Access

2. Newbie Q2: Using a bar code scanner with VB

3. vb.net and barcode scanners

4. Barcode Scanner and VB .NET

5. Barcode-Scanner under VB

6. Barcode Scanners under VB

7. Programming Barcode Scanners in VB

8. BarCode Scanner and VB

9. barcode scanner in USB port

10. How to read Barcode Scanner??

11. RF Barcode Scanner /w Visual Studio?

12. ASP with barcode scanner

 

 
Powered by phpBB® Forum Software