When adding data to a grid, you can prevent cells from being selected by:
Dim Row As Xceed.Grid.DataRow = grdData.DataRows.AddNew()
Row.BeginEdit()
Row.Cells(“ItemID”).Value = CInt(DataReader(“ItemID”))
Row.Cells(“ItemID”).CanBeCurrent = False
Row.EndEdit()
Is there a way to do this same thing for a entire column when the column is created?
Imported from legacy forums. Posted by Morgan (had 771 views)