the user wants to search the records based on Any Part Of a specific field. the code is simple and was working on access 2003:
'
CboFirst.SetFocus
DoCmd.RunCommand acCmdFind
SendKeys "%ha%n"
'
I noticed that when the Find and Replace is activated, the short cut letters are not underlined, until you press the Alt manually first, and i think this is why the SendKeys is not working as there is no letter to respond to the "%" command
thanks