Click here to Skip to main content
15,900,461 members
Home / Discussions / C#
   

C#

 
QuestionC# barcode decoding library Pin
Dzilupl28-Nov-16 4:02
Dzilupl28-Nov-16 4:02 
AnswerRe: C# barcode decoding library Pin
Simon_Whale28-Nov-16 4:30
Simon_Whale28-Nov-16 4:30 
AnswerRe: C# barcode decoding library Pin
OriginalGriff28-Nov-16 4:33
mveOriginalGriff28-Nov-16 4:33 
GeneralRe: C# barcode decoding library Pin
Dzilupl28-Nov-16 7:44
Dzilupl28-Nov-16 7:44 
GeneralRe: C# barcode decoding library Pin
OriginalGriff28-Nov-16 8:07
mveOriginalGriff28-Nov-16 8:07 
GeneralRe: C# barcode decoding library Pin
Dzilupl28-Nov-16 11:50
Dzilupl28-Nov-16 11:50 
GeneralRe: C# barcode decoding library Pin
OriginalGriff28-Nov-16 21:52
mveOriginalGriff28-Nov-16 21:52 
GeneralRe: C# barcode decoding library Pin
Dzilupl28-Nov-16 21:59
Dzilupl28-Nov-16 21:59 
GeneralRe: C# barcode decoding library Pin
OriginalGriff28-Nov-16 22:06
mveOriginalGriff28-Nov-16 22:06 
GeneralRe: C# barcode decoding library Pin
Dzilupl28-Nov-16 22:40
Dzilupl28-Nov-16 22:40 
GeneralRe: C# barcode decoding library Pin
Gerry Schmitz29-Nov-16 5:11
mveGerry Schmitz29-Nov-16 5:11 
AnswerRe: C# barcode decoding library Pin
ZurdoDev28-Nov-16 4:43
professionalZurdoDev28-Nov-16 4:43 
AnswerRe: C# barcode decoding library Pin
Kornfeld Eliyahu Peter28-Nov-16 7:37
professionalKornfeld Eliyahu Peter28-Nov-16 7:37 
GeneralRe: C# barcode decoding library Pin
Dzilupl28-Nov-16 7:50
Dzilupl28-Nov-16 7:50 
AnswerRe: C# barcode decoding library Pin
Kornfeld Eliyahu Peter28-Nov-16 8:20
professionalKornfeld Eliyahu Peter28-Nov-16 8:20 
GeneralRe: C# barcode decoding library Pin
OriginalGriff28-Nov-16 8:43
mveOriginalGriff28-Nov-16 8:43 
GeneralRe: C# barcode decoding library Pin
Kornfeld Eliyahu Peter28-Nov-16 8:54
professionalKornfeld Eliyahu Peter28-Nov-16 8:54 
GeneralRe: C# barcode decoding library Pin
Dave Kreskowiak28-Nov-16 9:00
mveDave Kreskowiak28-Nov-16 9:00 
GeneralRe: C# barcode decoding library Pin
Richard MacCutchan28-Nov-16 21:38
mveRichard MacCutchan28-Nov-16 21:38 
GeneralRe: C# barcode decoding library Pin
Dzilupl28-Nov-16 21:52
Dzilupl28-Nov-16 21:52 
GeneralRe: C# barcode decoding library Pin
Richard MacCutchan28-Nov-16 22:19
mveRichard MacCutchan28-Nov-16 22:19 
GeneralRe: C# barcode decoding library Pin
Dzilupl28-Nov-16 22:48
Dzilupl28-Nov-16 22:48 
GeneralRe: C# barcode decoding library Pin
Richard MacCutchan28-Nov-16 23:01
mveRichard MacCutchan28-Nov-16 23:01 
GeneralRe: C# barcode decoding library Pin
Dave Kreskowiak29-Nov-16 5:48
mveDave Kreskowiak29-Nov-16 5:48 
What you're talking about is using a standardized format to non-standard uses. There isn't going to be a library for this!

If you're going to use an EAN128 code that can have differing fields from one scan to another, you MUST have another field that tells your code which field format is being used for that code. For example:
Layout     ProductCode    Weight
  1        394857394587    12.46

Layout     ProductCode    Count
  2        294579834759      12

Layout     ProductCode    DateCode    Count
  3        324875938457   1623           12

You're going to have to write your own library for this, both to generate the barcodes and to read them.
A guide to posting questions on CodeProject

Click this: Asking questions is a skill.
Seriously, do it.

Dave Kreskowiak

AnswerRe: C# barcode decoding library Pin
Gerry Schmitz28-Nov-16 11:21
mveGerry Schmitz28-Nov-16 11:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.