Setting form controls focus and enter key

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.
 
T

Tom Ogilvy

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top