Selecting datagrid cells
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
being new to VB.NET, how do you programmatically select a datagrid cell
silver-gray
-
being new to VB.NET, how do you programmatically select a datagrid cell
silver-gray
Give This a try
Datagrid1.CurrentCell = new Windows.Forms.DatagridCell(row, col)
Kevin -
Give This a try
Datagrid1.CurrentCell = new Windows.Forms.DatagridCell(row, col)
Kevinwhat I'm trying to do is programmatically select all cells in the 4th column that comtain nulls, and change the backcolor to red. I have vb.net 2003.
silver-gray