moving to next field

pepegot

Registered User.
Local time
Today, 18:22
Joined
Feb 20, 2006
Messages
39
How do you get the cursor to jump to the next field in a Form?
 
Moving to next field

Could not find any focus in properties that makes sense. How do you do it?
Under keyboard options I have "Next Field" checked for both arrows and "move after enter." Behavior entering field is checked to "Go to start of Field." This has no affect at all. When I hit enter the field disappears. However, the Tab key works as I would want the "Enter " key to work. Very strange indeed!
 
SetFocus is a method of most controls. In the OnEnter event of a control if you put Me.txtBox2.SetFocus you will move to txtBox2 every time you enter that control. What normal behavior of the GUI are you trying to alter?
 
Last edited:
Hello Guys

am unable to SetFocus to next field in form after choosing data from a Combo Box field

How to solve it?

Thank you
 
Have you tried putting code in the AfterUpdate event of the ComboBox?
 
I'm sorry nrmarthi,
Please start a new thread with your question. It is not polite to hyjack an existing thread.
 

Users who are viewing this thread

Back
Top Bottom