May be this will be helpfull to you....
vb
Private Sub DataGridView1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles DataGridView1.KeyDown
If e.KeyCode = Keys.ControlKey Then
e.SuppressKeyPress = True
End If
End Sub