Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form controls in a Tabbed box

Status
Not open for further replies.

kkarren

Technical User
Mar 30, 2000
33
US
I have a master form that has tabbed forms that are in a parent child relationship.  How can I have the relationship form immediately when I enter a value in the linked field.  I can make it work when I leave the record and get back into it.  However, I need to have it take effect immediately.
 
If you are asking how to have the subform on another tab get the focus then I would set a line of code for the After Update event of your field to set the focus on the subform field. <br><br>Sub sometextbox_AfterUpdate<br><br>subformname.setfocus<br><br>end sub
 
I tried your suggestion and was not successful.&nbsp;&nbsp;The data that I would like to accept the focus are locked fields would that make a difference?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top