Setting form controls focus and enter key

  • Thread starter Thread starter John T Ingato
  • Start date Start date
J

John T Ingato

I have a form set up for entering names into my application. On this setup
form I have a

textbox ="NameEntry and a
Listbox = "RepList"
Button1 = "add"
Button2 = "remove"

The users procedure is:

1) Enter name into text box
2) click on the add button

The name is tranfered to the listbox for viewing and the "textbox" is
cleared, but the add button remains in focus

How can I return focus to the textbox? i.e. place the cursor back into the
text box.
Is it possible to set the "enter" key to click the add button instead of
have to actually click it with the mouse?

A KeyPress event does not occur under the following conditions:

a.. Pressing TAB.
b.. Pressing ENTER.
c.. Pressing an arrow key.
 
You can set the Default property of the add button to True. Only one
control on the form can have the default property set to true. If enter is
hit, then the click event for that control is fired.

Have you tried using the setfocus method of the control?
 
Back
Top