Shift + F9 translated to a command button

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

Hi again all at this fantastic place....how do i translate the Shift + F9
(requery) a form...???
 
Thanks fredg...made my day! i used this from the refresh button code..
Private Sub Requery_Form_Click()
On Error GoTo Err_Requery_Form_Click


Me.Form.Requery

Exit_Requery_Form_Click:
Exit Sub

Err_Requery_Form_Click:
MsgBox Err.Description
Resume Exit_Requery_Form_Click

End Sub

Once again, thanks a lot!
 
Back
Top