How many times are you going to ask this?
No, there's no way in the sense you are asking because a tab will move the
focus from where you are standing now, not where you were, and now are ON
THE BUTTON.
But here is a hint:
Make an array of controls or named them like this "txt1, txt2, txt3..." Some
ordinal name that you could follow as tab order.
This is the code for the command button click event:
strLastCtrl = Screen.PreviousControl.Name
strName = "txt" 'put the name you choose for the array of controls
strNextCtrl = strName & Mid(strLastCtrl, Len(strName),
Len(strLastCtrl) - Len(strName))
Controls(strNextCtrl).SetFocus
May be you didn't have good results on your past threads but reposting the
same question in a new thread won't supposes any advantage.
This is the last time I try to help you.
Rastro