Any suggestions
Thanks
Windows Forms General
I think you will never know this, because only the user knows if he finishes typing what he wants....
unless you have pre-defined options, or use a limit of characters, I think it's impossible to do it
=/
I use the KeyPress event. If the user presses the Enter key, focus goes to the next control. Example:
If e.KeyChar = Chr(13) then btnNext.Focus()