DataGridView cell in Row1 Column1

EFlynn

New member
Joined
Jan 23, 2008
Messages
3
Programming Experience
1-3
My dgv is working fine. It displays the data in the manner it should. However, the cell at Row1, Column 1 always has a blue background(as though it is selected). When the dgv is initially displayed I don't want any cells, rows or columns selected.

I've tried a bunch of ways to 'de-select' this cell but nothing seems to work.
eg.
dgv.Item(0,0).Selected = False
dgv.ClearSelection
etc.


Any ideas?
 
Back
Top