3

I'm trying to figure out how to create barcodes using ReportViewer Local Report VS 2008.

I find a component at: www.neodynamic.com/barcodes/Interleaved_2_of_5_Barcode_asp_net.aspx

It seems there is no other solution native... Is there another alternative way?

Ricardo
  • 1,549
  • 2
  • 12
  • 11

2 Answers2

2

Depends on what kind of barcode you need. For basic barcodes you could just use free barcode font

Roman Bataev
  • 9,287
  • 2
  • 21
  • 15
1

I've always implemented barcodes using a font. Barcodes are nothing more than data presented in a different way. Instead of human-readable they are "barcode scanner readable", so to speak.

You'll need to find fonts (Google search - there's lots available for free) that suit the symbology (or symbologies) supported by the scanner being used. Some readers need start and stop characters as well. So, for example, if you had an ID value of 123456 you might put that in a textbox on your report surrounded by start and stop character * - *123456*, and then apply your barcode font to the textbox.

Yuck
  • 49,664
  • 13
  • 105
  • 135