PC Review


Reply
Thread Tools Rate Thread

Barcode Programming

 
 
Alper Ozgur
Guest
Posts: n/a
 
      5th May 2007
Hi;
How can i capture and decode the barcode that reading by an usb Barcode
reader?


 
Reply With Quote
 
 
 
 
=?Utf-8?B?SHVzYW0gQWwtQScnYXJhag==?=
Guest
Posts: n/a
 
      5th May 2007
Hi,
Check the following links
http://www.codeproject.com/csharp/ean_13_barcodes.asp

http://www.blackice.com/barcode.htm

Regrds,
Husam Al-A'araj

"Alper Ozgur" wrote:

> Hi;
> How can i capture and decode the barcode that reading by an usb Barcode
> reader?
>
>
>

 
Reply With Quote
 
Bob Grommes
Guest
Posts: n/a
 
      6th May 2007
Most bar code readers can be configured to feed decoded letters and
numbers to the keyboard device of the computer to which it's attached,
so it's just a matter of placing the cursor in a textbox and telling the
user to do the scan.

--Bob

Alper Ozgur wrote:
> Hi;
> How can i capture and decode the barcode that reading by an usb Barcode
> reader?
>
>

 
Reply With Quote
 
Alper Ozgur
Guest
Posts: n/a
 
      6th May 2007
Thanks for advices. but that shows how can i create a barcode. I need to get
the readed barcode from barcode scanner.. how can i get the scanned
barcode.. that's my problem...

"Husam Al-A''araj" <(E-Mail Removed)>, haber
iletisinde şunları
yazdı:7CD0392C-FA5B-4EA9-B3A1-(E-Mail Removed)...
> Hi,
> Check the following links
> http://www.codeproject.com/csharp/ean_13_barcodes.asp
>
> http://www.blackice.com/barcode.htm
>
> Regrds,
> Husam Al-A'araj
>
> "Alper Ozgur" wrote:
>
>> Hi;
>> How can i capture and decode the barcode that reading by an usb Barcode
>> reader?
>>
>>
>>



 
Reply With Quote
 
hjgvhv uhhgvjuhv
Guest
Posts: n/a
 
      6th May 2007
Alper Ozgur wrote:
> Thanks for advices. but that shows how can i create a barcode. I need to get
> the readed barcode from barcode scanner.. how can i get the scanned
> barcode.. that's my problem...


Do you have a Barcode scanner to use for this.

Most barcode scanner products have a DLL to interface to their hardware.

You would need to know the DLL for that manufacture and use it.

donald












>
> "Husam Al-A''araj" <(E-Mail Removed)>, haber
> iletisinde şunları
> yazdı:7CD0392C-FA5B-4EA9-B3A1-(E-Mail Removed)...
>
>>Hi,
>>Check the following links
>>http://www.codeproject.com/csharp/ean_13_barcodes.asp
>>
>>http://www.blackice.com/barcode.htm
>>
>>Regrds,
>>Husam Al-A'araj
>>
>>"Alper Ozgur" wrote:
>>
>>
>>>Hi;
>>>How can i capture and decode the barcode that reading by an usb Barcode
>>>reader?
>>>
>>>
>>>

>
>
>

 
Reply With Quote
 
Alper Ozgur
Guest
Posts: n/a
 
      6th May 2007
I have. I read the scanned value to the textbox. But i need the identify the
format of barcode and get necessary values from in it. Like the country
code, Manufacturer Code, Product Code etc.

"hjgvhv uhhgvjuhv" <(E-Mail Removed)>, haber iletisinde sunlari
yazdi:egA1$4%(E-Mail Removed)...
> Alper Ozgur wrote:
>> Thanks for advices. but that shows how can i create a barcode. I need to
>> get the readed barcode from barcode scanner.. how can i get the scanned
>> barcode.. that's my problem...

>
> Do you have a Barcode scanner to use for this.
>
> Most barcode scanner products have a DLL to interface to their hardware.
>
> You would need to know the DLL for that manufacture and use it.
>
> donald
>
>
>
>
>
>
>
>
>
>
>
>
>>
>> "Husam Al-A''araj" <(E-Mail Removed)>, haber
>> iletisinde şunları
>> yazdı:7CD0392C-FA5B-4EA9-B3A1-(E-Mail Removed)...
>>
>>>Hi,
>>>Check the following links
>>>http://www.codeproject.com/csharp/ean_13_barcodes.asp
>>>
>>>http://www.blackice.com/barcode.htm
>>>
>>>Regrds,
>>>Husam Al-A'araj
>>>
>>>"Alper Ozgur" wrote:
>>>
>>>
>>>>Hi;
>>>>How can i capture and decode the barcode that reading by an usb Barcode
>>>>reader?
>>>>
>>>>
>>>>

>>
>>


 
Reply With Quote
 
hjgvhv uhhgvjuhv
Guest
Posts: n/a
 
      6th May 2007
Alper Ozgur wrote:

> I have. I read the scanned value to the textbox. But i need the identify the
> format of barcode and get necessary values from in it. Like the country
> code, Manufacturer Code, Product Code etc.


So with out knowing the hardware you are using, how would anyone be able
to answer your question ??

Only the manufacture can help you, contact them.

What did you expect ?

donald
 
Reply With Quote
 
Bruce Wood
Guest
Posts: n/a
 
      7th May 2007
Well, if it's a UPC, EAN, or GTIN then it has a standard format. Try
searching for those acronyms in Google or Wikipedia. It should be easy
enough to find the international standards for those codes.

So far as I know, UPC's contain no country information. The first set
of digits is assigned to a particular company (perhaps a manufacturer,
perhaps just the distributor or vendor), while the second set of
digits is the product code within that company. While the same set of
initial digits is never shared by more than one company, one company
may have bought multiple sets of initial digits (ours has three, for
example).

I don't know how you would map those iniitial digits back onto the
actual name of a company. Perhaps there's a searchable online database
or, if you're really lucky, a publicly available Web Service you could
call. As well, be aware that companies frequently rebrand products.
Our customers sometimes demand that we place their UPC on a product,
even though we manufactured it. We also sometimes demand that our
suppliers place our UPC on a product, even though we didn't
manufacture it. All the initial digits of the UPC tell you is who
branded the product, not necessarily who really made it.

I know nothing about GTINs, but I'm sure that there is freely
available documentation on the standard. One quick trip to Google
turned up http://www.gtin.info.

As well, there is http://www.upcdatabase.com, but it doesn't appear to
be complete.

On May 6, 9:43 am, "Alper Ozgur" <alpoz...@gmail.com> wrote:
> I have. I read the scanned value to the textbox. But i need the identify the
> format of barcode and get necessary values from in it. Like the country
> code, Manufacturer Code, Product Code etc.
>
> "hjgvhv uhhgvjuhv" <a...@asdf.com>, haber iletisinde sunlari
> yazdi:egA1$4%23jHHA....@TK2MSFTNGP02.phx.gbl...
>
> > Alper Ozgur wrote:
> >> Thanks for advices. but that shows how can i create a barcode. I need to
> >> get the readed barcode from barcode scanner.. how can i get the scanned
> >> barcode.. that's my problem...

>
> > Do you have a Barcode scanner to use for this.

>
> > Most barcode scanner products have a DLL to interface to their hardware.

>
> > You would need to know the DLL for that manufacture and use it.

>
> > donald

>
> >> "Husam Al-A''araj" <HusamAlAa...@discussions.microsoft.com>, haber
> >> iletisinde şunları
> >> yazdı:7CD0392C-FA5B-4EA9-B3A1-DFCA5D631...@microsoft.com...

>
> >>>Hi,
> >>>Check the following links
> >>>http://www.codeproject.com/csharp/ean_13_barcodes.asp

>
> >>>http://www.blackice.com/barcode.htm

>
> >>>Regrds,
> >>>Husam Al-A'araj

>
> >>>"Alper Ozgur" wrote:

>
> >>>>Hi;
> >>>>How can i capture and decode the barcode that reading by an usb Barcode
> >>>>reader?


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Generic barcode scanner programming ac0203 Microsoft Dot NET Compact Framework 4 8th Feb 2007 06:05 AM
Choice of programming tool for Outlook programming tanutatu@hotmail.com Microsoft Outlook VBA Programming 4 13th Jul 2006 10:48 AM
barcode programming =?Utf-8?B?R2VvcmdlQXRraW5z?= Microsoft Access Reports 6 10th Jan 2006 06:04 PM
FS epson receipt printer $99 , seiko label printers $49 symbol barcode guns $75 intermec wireless barcode guns15/17 touchscreens with serial adapter zebra 105 eltron 2642 point of sale montreal toronto canada ottawa sales@1800parts.net Printers 0 17th Sep 2005 05:34 PM
rpilot programming language - based on the pilot programming language *ProteanThread* Freeware 0 1st Feb 2005 10:10 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:05 AM.