Completed
Last Updated: 30 Jun 2023 12:39 by ADMIN
Release R2 2022
Created by: CHEE HANG
Comments: 1
Category: Barcode (Obsolete)
Type: Feature Request
4
 The aim of the control is to decode image representations of one of the supported barcode symbologies: https://docs.telerik.com/devtools/wpf/controls/radbarcode/radbarcodereader-overview 
Unplanned
Last Updated: 30 Mar 2021 11:53 by ADMIN
Created by: Mi
Comments: 3
Category: Barcode (Obsolete)
Type: Feature Request
0

You currently support only six rectangular Datamaxtrix formats. DMRE are the same as normal Datamatrix barcodes, DMRE just describes some more rectangular formats. DMRE enables printing barcodes for smaller devices, like medical devices. Because of EU2017/745 regulations all medical devices have to have a unique device idenitifer (UDI).

Further Information:
https://e-d-c.info/projekte/dmre.html

 

Declined
Last Updated: 30 Dec 2020 13:15 by ADMIN
Created by: Mi
Comments: 1
Category: Barcode (Obsolete)
Type: Bug Report
0

I start a new, Winforms .Net Framework 4.7.2 project.
I add the radBarcode to the form, a sample QR code is shown.
I change the Symbology-property to DataMatrix, the sample picture of the barcode is cleared and no barcode is shown. This is also the case when I change the Symbology-property via the control smart menu/tags

And here comes the point: I always inserted my value for the barcode in the Text-property and not in the Value-property (my fault). After playing around and reading the docu I realised that I need to set the Value property. If I do this via smart menu/tag It works fine.

But why does the Value property get cleared by changing the Symbology-Property? If there could be any conflicts between different barcodes, wouldn't it be better to show some infobox, that the value is incompatible to the selected symbology?

 

Completed
Last Updated: 29 Dec 2020 12:04 by ADMIN
Release R3 2020 SP1
Created by: Matt
Comments: 4
Category: Barcode (Obsolete)
Type: Feature Request
1
Hello,
As part of my evaluation of your WinForms control collection, I noticed that your Barcode control lacks a DataMatrix 2D barcode. This is a very common and useful barcode that is used in production environments. We use it extensively here. What are the chances of adding DM barcodes?
Completed
Last Updated: 01 Jul 2019 14:37 by ADMIN
Release R3 2019 (LIB 2019.2.708)

The issue can be reproduced by adding a RadBarCode to the form and setting its value this way:

this.radBarcode1.Value = "https://docs.telerik.com/devtools/winforms/introduction";

Unplanned
Last Updated: 18 Oct 2018 10:27 by ADMIN
The barcode cannot be read with the property set to false.

Workraound:
Telerik.WinControls.UI.Barcode.Symbology.EAN128 code39Extended1 = new Telerik.WinControls.UI.Barcode.Symbology.EAN128();
code39Extended1.Checksum = true;
Completed
Last Updated: 27 Sep 2018 07:52 by Dimitar
Workaround: set to the ForeColor to the RadBarCodeElement
this.radBarcode1.BarcodeElement.ForeColor = Color.Red;