i have a form with (currently) 2 tabs on it. What i want to do is when users click on either tab focus is changed from the form within the tab to a control on the main form. So far i've tried:
i can't seem to find the 'right' was to do this.
Any ideas?
Thanks,
Dave
Code:
Private Sub pg01_Click()
' Forms!frmPersinfo!txtFindMe.SetFocus
' Me.txtFindMe.SetFocus
Me!Parent!txtFindMe.SetFocus
End Sub
Any ideas?
Thanks,
Dave