If I click into a cell of a Data Grid View control automatically the whole text is selected, and I don't want to select it.
I have tried this code
but don't works... the whole text is equally selected... :confused:
I have tried this code
Code:
Private Sub DGW1_CellClick(......) Handles DGW1.CellClick
DGW1.CurrentCell.Selected = False
End Sub