Dan has given you the answer.
But I don't get your logic. Why do you get the idea you need to change the tab order to be able to move back?
If you do nothing, the click on a button causes it's click event, and the SEEK won't influence the focus at all, the focus will be on the button, because the user clicked it or used TAB to go there and SPACE or RETURN to click. Anyway, the focus does not stay on the text1 box, as the button also can have the focus. What do you think programmatic change of the tab order would change? The focus would still be on the button, wouldn't it?
What would your idea be, if you could change tab order on the fly and make the text1 the next control in tab order? Aactually you could, so would you do Keyboard '{TAB}' then? Have a look at intellisense, there also is '{BACKTAB}' in the list of example usages. As the user you would also be able to backtab with [SHIFT]+[TAB]. This is how you move in reverse tab order. If you don't know that, you only learned Windows half
As said, dan has given you the answer, in any case don't rely on any tab order and arrangement of controls, forms can change in time and in some years the seek button may be after several controls all for entering filter conditions. Alos don't Keyboard '{BACKTAB}', this is not a recommendation for an alternative solution, this will fail after modifications of the form, while Thisform.text1.Setfocus() will continue to work
The tab order is merely a service to the user to give your form controls an order, in which keyboard users can navigate them, which supports their workflow usage. Not setting it you get weird jumping forth and back, and programmatically changing tab order you would only disturb the tab key usage.
The setfocus() solution is also fine in the aspect it allows the user to repeatedly seek, and finally he may tab two times to get over the seek button to the next step in tab and workflow order. But indeed you could also do nothing and simply tell your users they can move back to text one with reverse tabbing.
Bye, Olaf.