I'm trying to change the top cell border of a DataGridView cell when I
drag something over the cell. What I have compiles, but it's not
effecting the cell.
private void dataGridView1_DragOver(object sender, DragEventArgs e)
{
Point p = dataGridView1.PointToClient(new Point(e.X, e.Y));
DataGridView.HitTestInfo hit = dataGridView1.HitTest(p.X, p.Y);
DataGridViewAdvancedBorderStyle styleInput = new DataGridViewAdvancedBorderStyle();
DataGridViewAdvancedBorderStyle styleTemp = new DataGridViewAdvancedBorderStyle();
Microsoft is conducting an online survey to understand your opinion of the Msdn Web site. If you choose to participate, the online survey will be presented to you when you leave the Msdn Web site.