Question on setfocus: I have a tab control on my main form where each tab contains a subform. When my user exits (tabs or enters) from the last field I would like the focus to go to the first field in the subform on the first tab. This is what I tried but it only sets the focus to the tab not the field in the subform
Private Sub Designer_LostFocus()
‘Move Cursor to Plant Subform
frmProposalPlant!ItemQty.SetFocus
End Sub
frmProposalPlant is the name of the subform and ItemQty is the name of the first field on the subform. One other thing to note is the subform is a continuous form.
Thanks in advance
Tom