|
 daisy white - 2012-02-09 07:14:46
The BarCode Reader I used is KEEPAUTOMATION Free Bar Code Reader, when there is textbox and set focus on textbox, barcode id can display in textbox. But I need to capture the input in the background using vb.NET, anyone have idea about it? thanks
 daisy white - 2012-02-09 07:16:26 - In reply to message 1 from daisy white
 Jean-Sébastien Goupil - 2012-02-10 06:44:53 - In reply to message 1 from daisy white
If you are looking for PHP barcode generator, I wrote one and still make a lot of updates on it
You can find it here on PHP Classes
phpclasses.org/package/2176-PHP-Web ...
and an updated version on my website:
barcodephp.com
There is a support for 1D and 2D barcodes.
 daisy white - 2012-03-06 08:52:32 - In reply to message 3 from Jean-Sébastien Goupil
Thank you
 daisy white - 2012-03-13 08:46:38 - In reply to message 1 from daisy white
I suggest you to download a barcode scanner first to have a try.There are so many companies sell barcode scanners nowadays. Maybe, you can buy one online. I have brought one KA.Barcode Generator for .NET Suiteand it works well. This company can also provide you with some free online barcode generator , you may have a try someday.http://www.keepautomation.com/products/net_barcode/
 Lily Hall - 2013-01-21 08:54:56 - In reply to message 1 from daisy white
 Peter Anderson - 2013-04-02 09:33:19 - In reply to message 1 from daisy white
 Susan Smith - 2013-04-25 04:32:22 - In reply to message 1 from daisy white
You may install a VB.NET barcode generator to solve your problem.(http://www.barcodelib.com/vb_net/)
 marrisazhang - 2013-06-24 07:59:27 - In reply to message 8 from Susan Smith
here is a example for barcode generation.
Dim barcode as Barcode = new Barcode()
barcode.Symbology = BarcodeType.Code39
barcode.Data = "01234567890"
barcode.Save(theImage, saveFileName, RasterImageFormat.Tif, theImage.BitsPerPixel)
you can visit the http://www.rasteredge.com/how-to/vb-net-imaging/barcode-generating for more information about barcode generation and scanning.
 mariahsharp - 2013-08-21 02:42:52 - In reply to message 1 from daisy white
|