M MGillanders Guest Nov 29, 2001 #1 When a piece of data has been entered into a text box on a form, how i get it to select a certain tab on the form once the data has been entered. Cheers Mark Gillanders
When a piece of data has been entered into a text box on a form, how i get it to select a certain tab on the form once the data has been entered. Cheers Mark Gillanders
R Rich Guest Nov 29, 2001 #2 SomeField.SetFocus in the after update event of the field you wish to trigger the event from.
R raindrop3 Registered User. Local time Today, 00:42 Joined Sep 6, 2001 Messages 98 Nov 29, 2001 #3 Hello, You also can put the setfocus stuff in the 'On change' event. So if the text you are typing matches, it will automatically moves to the other control. (If textbox.text = "mytext" then othercontrol.setfocus.) Greetings, Albert
Hello, You also can put the setfocus stuff in the 'On change' event. So if the text you are typing matches, it will automatically moves to the other control. (If textbox.text = "mytext" then othercontrol.setfocus.) Greetings, Albert