Corrected Code
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyC Then
If Shift = 2 Then
Clipboard.Clear
Clipboard.SetText grd.Clip
End If
End If
End Sub
PS: For this to work set the KeyPreview Property of the your FORM to "True"
Regards
Shaik Akthar