Tab Control

  • Thread starter Thread starter MGillanders
  • Start date Start date
M

MGillanders

Guest
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
 
SomeField.SetFocus in the after update event of the field you wish to trigger the event from.
 
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
 

Users who are viewing this thread

Back
Top Bottom