Hello
I've a problem, see attached code.
If you open the second form and open the combobox and then click on the group (dropdown is not closed because of the dropdown closing event) and then close the form. The dropdown "hovers" without any form/control.
Kind Regards,
Christian

Hello, i have the following code:
When the user press the down arrow, the grid goes to the first row instead of going to row 86.
How can I let the grid going to the row after the current when the user press the down arrow key?
Version of api is the latest (i didn't notice that in previous versions, I can't remember if previous version had same bahaviour, but I think not) OS is windows 10
Best regards
Andrea
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using Telerik.WinControls.UI;namespace WindowsFormsApplication2{ public partial class Form1 : Form { RadGridView rgv; public Form1() { rgv = new RadGridView(); rgv.Dock = DockStyle.Fill; this.Controls.Add(rgv); this.Size = new Size(800, 600); this.Load += Form1_Load; } private void Form1_Load(object sender, EventArgs e) { List<data> data = new List<WindowsFormsApplication2.data>(); for (int i = 0; i < 100; ++i) { data.Add(new WindowsFormsApplication2.data { A = "test" }); } int n = 85; rgv.DataSource = data; rgv.Rows[n].IsSelected = true; rgv.Rows[n].IsCurrent = true; rgv.Rows[n].EnsureVisible(); rgv.CurrentRow = rgv.Rows[n]; } } class data { public string A { get; set; } }}
Hi,
Is there anyone who could tell me a way to insert a document window?
I am using radDock.DocumentManager.DocumentInsertOrder = DockWindowInsertOrder.ToBack;
If I added 3 DocWindows, it will be placed as Doc1 - Doc2 - Doc3
I wanted to place Doc3 between the other two if Doc1 is the ActiveWindow.
I am looking to insert an item in radDock.DockWindows but it has no Insert property.
RadDock.AddDocument always place it last or first depending on InsertOrder.
Am I missing a Property to allow such case?


I'm getting an exception when I drag and drop a PageView, GridView, and a few other controls to the Form.
system.nullreferenceexception: object reference not set to an instance of an object (see attached screen shot).
No one else on my team has reported getting this issue. My existing projects are fine and I can drag and drop these controls to them, but when I create a new project and try to add these controls, I get the exception noted.

Hi,
I'm using the radDeskTopAlert for WinForms and it's a very nice control.
However, I'm finding that if I move the client application from monitor 1 to monitor 2 the desktop alerts still popup in the same place on monitor 1.
If I restart the application on Monitor 2 the alerts still appear on Monitor 1.
Is there a way to use X,Y co-ords to get around this problem?
Many Thanks,
Martin.
I'm working in appointment function ,use calerdar to display scheduling.
Each day display a percent bar to display left appoint no in day. like below pic.
I want to custom draw day element,when day



Hello
i want Change Change Color Border For DateTimePicker
i want put change color border buttom only and disable color for top,left , right
