Barcode terminals

sopchek

sopchek

Member
This is the situation: We have some barcode terminals (Opticon H15, H21).

How can we make those terminals export data onto the application`s grid (43`d module)?

Also, do you guys know regular ways of integration of barcode terminals into JDE E1? Except ones that are offered at rfgenDOTcom or such because of the 9 version (we are on 8.11).
 
Though it is clear that regular way of getting data from terminal is via ActiveSync. We need to ease the second step - import to grid. There is no system or other function in JDE E1 8.11 that does the same as the 'import .xls' button at the top right of the grid.
Maybe some code (I mean writing some custom code in C#) can manage an exchange between the clipboard of the terminal and the clipboard of PC?
The thing is to minimize the end-user actions.

Any thoughts appreciated a lot.
 
Here is some sample of generating barcode in C#:

using KeepAutomation.Barcode.Bean;
BarCode barcode = new BarCode();
barcode.Symbology = KeepAutomation.Barcode.Symbology.Code39;
barcode.CodeToEncode = "111222333";
barcode.ChecksumEnabled = true;
barcode.X = 1;
barcode.Y = 50;
barcode.BarCodeWidth = 100;
barcode.BarCodeHeight = 70;
barcode.Orientation = KeepAutomation.Barcode.Orientation.Degree90;
barcode.BarcodeUnit = KeepAutomation.Barcode.BarcodeUnit.Pixel;
barcode.DPI = 72;
barcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif;
barcode.generateBarcodeToImageFile("C://barcode-code39-csharp.gif");

/* Output barcode images to different objects
barcode.generateBarcodeToStream("Stream Object");
barcode.generateBarcodeToGraphics("Graphics Object");
barcode.generateBarcodeToGraphics("HttpResponse Object");
*/
Just in case you will need this too, tutorial of How to Generate Barcodes in ASP.NET with C#
 
Back
Top