Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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? -- Regards, Tom Ogilvy "John T Ingato" wrote in message ... 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Form keep the focus unable to get to the code - HELP! | New Users to Excel | |||
Setting the focus | New Users to Excel | |||
ActiveX Controls vs Form Controls | Excel Discussion (Misc queries) | |||
must press enter 2x to move cell focus | Excel Discussion (Misc queries) | |||
Text Box on User Form Set Focus Issue | Excel Programming |