ctrl f function to a button in Access 2003

S

Sireed2001

How can I add the ctrl F function to a button on a form in Access 2003?
Can anyone help me
 
A

Allen Browne

In the Click event procedure of your command button:

Screen.PreviousControl.SetFocus
RunCommand acCmdFind
 
Top