Hi,
I would like to disable all possible selection (rows, Cells & Columns). The grid view is used for the display purpose, so users don't have to select anything.
I don't find how to do this in VB
In the Forum, I found a sample in C#
Bur I can't translate it in VB
I would like to disable all possible selection (rows, Cells & Columns). The grid view is used for the display purpose, so users don't have to select anything.
I don't find how to do this in VB
In the Forum, I found a sample in C#
this.radGridView1.CurrentRow = null;
this.radGridView1.CurrentRowChanging += new CurrentRowChangingEventHandler(radGridView1_CurrentRowChanging);
private void radGridView1_CurrentRowChanging(object sender, CurrentRowChangingEventArgs e)
{
e.Cancel = true;
}Bur I can't translate it in VB