Hi,
I have a datagridview and there are several columns in it whose datatype is in date format. I want it to where if a person changes the date in a cell which is ALREADY colored, I want that color to change to white as soon as they click off of the cell.
I have something like:
Code:Private Sub DataGridView1_CellValueChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellValueChanged Me.DataGridView1.CurrentRow.Cells("DateDataGridView1").Style.BackColor = Color.White End Sub




Reply With Quote
