AI - Application identifier
Decode any application identifier in SG1-128 standard barcode
EmPy.ApplicationIdentifier is new EmPy studio library. Use this useful class framework to decode any application identifier (AI) of INDICOD SG1-128 standard in your application based on Framework .NET 2.0.
From this page you can download trial version for ApplicationIdentifier .NET 2005
assembly. In trial version the IsValid() methods have a 5 sec. sleep.
With this class framework you can:
- set your mandatory fields (ie. Sscc, Count, Batch, Content)
- add to an internal list some barcode (AddBarcodeMethod())
- check if all mandatory fields are filled (IsValid() method)
- use fields (ie. applicationIdentifierDecoder.Sscc).
Here you can found some c# code sample:
1applicationIdentifierDecoder.AIGs1Sscc.IsMandatory = true;
2applicationIdentifierDecoder.AICount.IsMandatory = true;
3
4...
5
6string barcode1 = "0034023500007001376510025" + FNC1.Value;
7string barcode2 = "0205410706517934201713030619370032" + FNC1.Value +
8 "9032320000DX5123456";
9
10applicationIdentifierDecoder.AddBarcode(barcode1);
11applicationIdentifierDecoder.AddBarcode(barcode2);
12
13...
14
15if (applicationIdentifierDecoder.IsValid)
16{
17 Label.Text = applicationIdentifierDecoder.Gs1Sscc +
18 " - " + applicationIdentifierDecoder.Batch +
19 " - " + applicationIdentifierDecoder.Content +
20 " - " + applicationIdentifierDecoder.Count.ToString();
21}
Please compile this form so you will recive an email with download link.
Mdf - Mes development framework
Mdf - MES Development
Framework born after an experience in MES Development with standard development
tools like Visual Studio .NET 2005. We were unsatisfied from the available tools
nowadays, so we are looking for a methodology that can help you to write robust
industrial solution compliant to ISA-95 standards.
Download the Mdf latest version here.