Hello Ringo,
Thanks for the note, I saw your post here, but I'm a little confused. You said:
Quote:
|
I have this "unbound command" and "Button Command". In Unbound command - its for ID Number only.
|
When you are referring to an "Unbound Command", it sounds like you are referring to an "Unbound TextBox" control, is that correct? If so, could you use the "Click()" event for the TextBox to call the "SetFocus()" method for the button, to move focus to the button. For example, here is some code to do that:
Code:
Private Sub Text2_Click()
' Set focus to a button control
Me.Command4.SetFocus
End Sub
Otherwise, you could write whatever code behind the TextBox Click() event to do whatever search you need! Does this make sense and/or help? Please let me know if you still have questions!