Here is the solution i have resolve it
Private Sub dataGridView1_CellClick(ByVal sender As Object, _
ByVal e As DataGridViewCellEventArgs) _
Handles DataGridView1.CellClick
DataGridView1.CurrentRow.Cells(0).ReadOnly = True
DataGridView1.CurrentRow.Cells(7).Value = Now
End Sub