Change the KeyPreview property of your form to Yes. Then put the following code in the forms KeyDown event:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyF3 Then
MsgBox "F3 Pressed"
End If
End Sub
Hope this helps....