This is a migrated thread and some comments may be shown as answers.

Barcode 39 Unwanted characters

11 Answers 181 Views
Barcode
This is a migrated thread and some comments may be shown as answers.
bhanu
Top achievements
Rank 1
bhanu asked on 09 Feb 2018, 11:46 AM
I am assigning numerical value to the barcode value but when scanning special characters were appended at the end.

11 Answers, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 09 Feb 2018, 02:35 PM
Hi Bhanu,

Could you please specify the exact value and barcode type that you are using? This will allow us to test this and determine if indeed there is an issue with the control. 

I am looking forward to your reply.
 
Regards,
Dimitar
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Rossi
Top achievements
Rank 1
answered on 08 Apr 2018, 12:01 AM
I'm evaluating the purchase of the WinForm UI controls but I can't change the Symbology of the RadBarcode control. Is it possible to do it by code?
0
Dimitar
Telerik team
answered on 09 Apr 2018, 08:05 AM
Hello Rossi,

Yes, this is possible, here is the code:
var symbology = new Telerik.WinControls.UI.Barcode.Symbology.Code11();
radBarcode1.Symbology = symbology;

The following article lists the available types: Supported Types.

I hope this will be useful. Let me know if you have additional questions.

Regards,
Dimitar
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Rossi
Top achievements
Rank 1
answered on 09 Apr 2018, 01:04 PM

Thank you very much for your prompt response! 

Best regards
Marcelo.

0
Fazil
Top achievements
Rank 1
answered on 12 Sep 2018, 10:27 AM

Hello,

I am Developed a simple EAN -13 Barcode generator. How I add the value into the Radbarcode controle. Please Help me..

0
Dimitar
Telerik team
answered on 12 Sep 2018, 10:50 AM
Hi Fazil,

You need to set the Value property:
private void radButton1_Click(object sender, EventArgs e)
{
    radBarcode1.Value = "5901234123457";
}

I hope this will be useful. Let me know if you have additional questions.

Regards,
Dimitar
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
Fazil
Top achievements
Rank 1
answered on 12 Sep 2018, 02:25 PM
Thank you so much.. It's working good.. 
0
Fazil
Top achievements
Rank 1
answered on 12 Sep 2018, 02:26 PM
Thank you so much.. It's working good.. 
0
Fazil
Top achievements
Rank 1
answered on 12 Sep 2018, 02:26 PM
Thank you so much.. It's working good.. 
0
Fazil
Top achievements
Rank 1
answered on 13 Sep 2018, 06:27 AM

Hai, Please help me once again. 

I am create a windows form. I stored expiry date in Sql server database name "test" and the table name "exp" have id(primary key) and date attributes. And my program is a button clicks then the usercontrole show. If date will be expired then show a message box "the app expired"

 

Button1_clicked

Datetime dt1= datetime.now;
Datetime dt2 = expirydate from database

If(dt1>dt2)
{
Messagebox.show("App expired");
}
Else 
{
Usercontrole.bringToFront();
}

How can get the date from the the "Sqlserver database" to "Datetime dt2". 

Database name = test
Table name= exp

0
Dimitar
Telerik team
answered on 13 Sep 2018, 11:07 AM
Hello Fazil,

Please note that this is the Telerik UI for WinForms forum. Please ask questions related to this product and to the topic discussed in the current thread. 

For such tasks, you can check more general forums like this one: How to retrieve data from a SQL Server database in C#? - Stack Overflow

Thank you for your understanding.

Regards,
Dimitar
Progress Telerik
Get quickly onboard and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Barcode
Asked by
bhanu
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Rossi
Top achievements
Rank 1
Fazil
Top achievements
Rank 1
Share this question
or