Imagine a userform with 3 text controls. We are in text field 1. We type something or we don't. Hit tab and we move to text field 2.
In text field 2 I want to do some work but I don't want to be left there. When I finish working I want to move on to text field 3 without the user having to do anything. In fact I make text field 2 invisible so the user wouldn't even know that it exists.
I have tried using the ENTER event and then after my logic adding: txt3.setfocus
I would prefer to not use the setfocus call - I think it has bad side effects that I don't fully understand.
Any thoughts?
In text field 2 I want to do some work but I don't want to be left there. When I finish working I want to move on to text field 3 without the user having to do anything. In fact I make text field 2 invisible so the user wouldn't even know that it exists.
I have tried using the ENTER event and then after my logic adding: txt3.setfocus
I would prefer to not use the setfocus call - I think it has bad side effects that I don't fully understand.
Any thoughts?