Tabbibg to a new tab

  • Thread starter Thread starter Bruce Rodtnick
  • Start date Start date
B

Bruce Rodtnick

I have a form with two tabs, Page1 and Page2. Page 2 has a subForm on
it (subWorkshops) and the first control is a ComboBox (cboWorkshop). I
want to be able to tab directly from the last control on Page1
(txtSchool) to Page2.subWorkshops.cboWorkshop. How do I do this?

Bruce Rodtnick
 
Bruce,

On the exit event of the txtSchool textbox, put code like this.
Me.subWorkshops.SetFocus
 
Back
Top