I'm using the standard find control because it makes the search code simpler than i could. however, i don't want it to use the default option, which is searching from the previous control. i want it to be set on txtdrawingnumber instead of screen.previouscontrol. so i tried doing this:
Private Sub Command73_Click()
On Error GoTo Err_Command73_Click
masterlist.txtdrawingnumber.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Exit_Command73_Click:
Exit Sub
Err_Command73_Click:
MsgBox Err.Description
Resume Exit_Command73_Click
End Sub
but when i try this, i get the message "Object Required". is there another way of doing this?



