G
Guest
I have built a form with a combo box that drops down the qry list. We now
need a Find Command that will search for a member that is in the qry list
from the form. I have created the Find Command Button using Wizard. But I
cannot find the members that are in the qry list. I know they are there.
It keeps coming up as "No record found". Here is the code that I have:
Private Sub Find_Command_Click()
On Error GoTo Err_Find_Command_Click
Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Exit_Find_Command_Click:
Exit Sub
Err_Find_Command_Click:
MsgBox Err.Description
Resume Exit_Find_Command_Click
End Sub
Am I missing something here. If so, please tell me what I need to put in.
Thank you.
need a Find Command that will search for a member that is in the qry list
from the form. I have created the Find Command Button using Wizard. But I
cannot find the members that are in the qry list. I know they are there.
It keeps coming up as "No record found". Here is the code that I have:
Private Sub Find_Command_Click()
On Error GoTo Err_Find_Command_Click
Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Exit_Find_Command_Click:
Exit Sub
Err_Find_Command_Click:
MsgBox Err.Description
Resume Exit_Find_Command_Click
End Sub
Am I missing something here. If so, please tell me what I need to put in.
Thank you.