Home
We need your feedback!

Bytescout.BarCode Reader SDK for .NET screenshots

Barcode reader test application
Barcoder reading ASP.NET sample  application
Sample ASP.NET application utilizing BarCode Reader SDK  to read barcode from uploaded image Sample Pocket PC application utilizing BarCode Reader SDK  to read barcode from uploaded image
Subscribe to Our Bi-Monthly Newsletter (tips, new releases, specials):
 Subscribe in a reader
 PRODUCTS  |  DOWNLOAD  |  PURCHASE  |  SUPPORT  |  TESTIMONIALS   |  NEWS  | 

Getting started with Pocket PC 2003 and
Bytescout.BarCode Reader SDK
for .NET 2.00 or higher

Download Free Trial Buy Now More Information
Shop Safely: BarCode Reader SDK comes with a 30-DAY UNCONDITIONAL MONEY-BACK GUARANTEE

Bytescout BarCode Reader SDK provides support for .NET Framework 2.00 (desktop and ASP.NET server) and Compact Framework .NET 2.00 for Pocket PC and Windows CE / WinMobile

This sample including full source code for the Pocket PC 2003 project is available in trial version of the SDK

Hint: to copy image files into the device use File | "Configure.." menu in Pocket PCemulator and set shared folder to the folder on your desktop computer. This folder will be mounted as a flash card to the Pocket PC 2003 emulated device.

Sample input image for barcode recognition:
barcode pocket pc

Barcode decoding on Windows CE (in emulator):
barcode reader pocket pc

Form1.cs:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

using Bytescout.BarCodeReader;

namespace GUITest.WinCE
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void buttonBrowse_Click(object sender, EventArgs e)
{
textBoxResult.Text = "";

DialogResult result = openFileDialog.ShowDialog();
if (result == DialogResult.OK)
{
string fileName = openFileDialog.FileName;

Reader reader = new Reader("support@bytescout.com", "3ADC-EF29-95B5-6C09-5B7");
reader.ReadFrom(fileName);

if (reader.FoundBarcodes.Length != 0)
{
foreach (FoundBarcode barcode in reader.FoundBarcodes)
textBoxResult.Text += String.Format("Type '{0}' and value '{1}' ", barcode.Type, barcode.Value);
}
else
textBoxResult.Text = "No barcodes found";
}
}
}
}

Download Free Trial Buy Now More Information
Shop Safely: BarCode Reader SDK comes with a 30-DAY UNCONDITIONAL MONEY-BACK GUARANTEE

First steps tutorials:

Advanced Examples (Visual Basic and C#):

HOME  |  CONTACT US

Copyright © ByteScout, 2003-2010. Privacy Statement
Microsoft®, Windows®, Windows 2000®, Windows Server®, Windows Vista®, Internet Explorer®, .NET Framework®, ActiveX®, Visual Basic®, Visual C#®, ASP®, ASP.NET®, Excel®, PowerPoint®, are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. Adobe®, Flash® and Acrobat® are registered trademarks of Adobe Systems, Incorporated. Mozilla®, Firefox® and the Mozilla and Firefox Logos are registered trademarks of the Mozilla Foundation. Other product names or brandnames used herein are for identification purposes only and might be trademarks or registered trademarks of their respective companies. We disclaim any and all rights to those marks.