Hi
I have a legacy project that implemented with WinControls 2010. Now I should upgrade it to 2015 version (because it has problems with .net 4.5)
TabStripControl and other obsolete controls used in that project. So how can I upgrade them to new controls.
I managed to get 2011 version and upgrdae controls to that version and then use newer versions but there is no 2011 version available.
So how could I upgrade the project?

Hi,
If you have a RadDropdownList on a form at run-time and the user clicks on it, and then decides to click on the form itself (not another control) the mousewheel can still be used to change the RadDropdownList contents.
This seems like it could lead to accidental changes to the RadDropdownList's contents.
Is this by design? Is there a simple way to prevent this behavior?
Thanks,
-Lou
Hello,
I try to use DropDownList with datasource, but is not working as expected.
When I Clear() the BindingSource, the RAD component still have "Text" with last item displayed which is abnormal.
Please see the code, the normal windows ComboBox works as expected.
Any fixes?
public partial class Form1 : Form{ List<string> list = new List<string>(); BindingSource bsource = new BindingSource(); public Form1() { InitializeComponent(); bsource.DataSource = list; } private void Form1_Load(object sender, EventArgs e) { //Set list dataSource comboBox1.DataSource = bsource; radDropDownList1.DataSource = bsource; //Now add an element via Binding object bsource.Add("One"); bsource.Add("Two"); } private void button1_Click(object sender, EventArgs e) { bsource.Add("Three"); } private void button2_Click(object sender, EventArgs e) { bsource.Clear(); }}
Hi to all,
in past I used ScheduleView for WPF and Silverlight.
Now I have to use Scheduler for WinForm, but I need to populate DataSource every time change period range, indipendently ViewType.
I need to this features because I can't link this control directly to my database, then I need to know when user change period range that he see.
Is it possible?
In WPF and Silverlight I used VisibleRange event.

We've run into some situations where a right click on a particular Telerik control behaves in the way we expect only a left click to behave.
For example, we have a Command Bar with a bunch of buttons. If you right click one of the buttons, the Click event occurs and our application ends up doing the logic associated with the button. End users are confused because they don't expect a right-click to trigger a button click. The same goes for the middle click. It seems like the buttons in a command bar should only raise the Click event if they are clicked with the left mouse (assuming right-handed mouse). I'm not sure if the command bar supports keyboard navigation....but if so, then pressing the spacebar with the button focused should also trigger the Click event.
For normal buttons, this seems to work as I expect (right or middle click does nothing, spacebar triggers click event, etc.). I also found this old forum thread that talked about similar issues that I think have been fixed: http://www.telerik.com/forums/you-can-right-click-to-click-button
There are two other places where I've noticed right click works and I think those are bugs as well.
1. Checkboxes can be checked/unchecked by right/middle clicking on them (or clicking on the label). That seems wrong to me. The checkboxes inside of tree views also have this problem. However, checkboxes inside grids don't seem to have this problem.
2. I can open dropdowns by right/middle clicking the little down arrow on the right edge of the dropdown. That seems wrong.
Finally, I've noticed that buttons show the 'clicked' state on mouse down of the middle button. That doesn't seem right although I'm not 100% about that. The mouse down state also appears for right click if I right click enough time. This happens even on regular buttons.
Hopefully my explanations of the various issues I'm seeing make sense. I can see all of these problems in the demos included with the installation so I don't think any of them are issues with my code.

I have a PieChart and when I enable the Smart Labels, it's doesn't work correctly.
I've attached two pictures, without smart labels and with smart labels enabled.

Hello Telerik,
I have two small questions about PropertyGrid.
1. Is possible to have a hyperlink in one Property Value (not entire column, just one or several values to be URL)
2. I've tested the nice feature of grouping. Can I have more sub-groups there, or expandable one, eg:
Distributors (main group)
Belnor ( sub group)
Property - Value
Property - Value
Kirkwald (sub group)
Property - Value
Property - Value
Thanks in advance,

Hello.
I want to change the text of the column in listview with checkbox
I have
Public Sub lvRegDePedido_ItemCheckedChanged(sender As Object, e As ListViewItemEventArgs) Handles lvRegDePedido.ItemCheckedChanged formatoDeCellda() End Sub
Private Sub formatoDeCellda() Try Dim e As ListViewCellFormattingEventArgs e = Nothing If e.CellElement.Data.HeaderText = "Estado del articulo" Then If e.CellElement.Text = "No entregado" Then e.CellElement.ForeColor = Color.Aqua End If End If Catch ex As Exception : MsgBox(ex.Message) End Try End SubI work in the trial version (demo)
Adj Img
Hello
Does RadControls have a textbox where in I can implement a textbox password field similar to Android Environment.
I should be able to enter a character, display the character entered for a few milliseconds before masking it using "asterix" or any other password
character. Also I should be able to edit/insert/delete any character anywhere in the content.
