Highlight a row in DataGrid

  • Thread starter Thread starter Guus
  • Start date Start date
G

Guus

Hi,

I would to know if it's possible to highlight a particular
row in a DataGrid control, just to show an error in the
input data.

Bye
Guus
 
You can select a row in a DataGrid by calling the Select
method on the grid

dg1.Select(row)

HTH
Jon Credit
 
Back
Top