11 Answers, 1 is accepted
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.
Dimitar
Progress Telerik
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
Thank you very much for your prompt response!
Best regards
Marcelo.
Hello,
I am Developed a simple EAN -13 Barcode generator. How I add the value into the Radbarcode controle. Please Help me..
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
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
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