> Hi guys
> Heres the problem:-
[quoted text clipped - 3 lines]
> still advances to show a blank record. How do I send the focus back to
> the parent form and keep the subform from moving to the 'next' record?
This should work:
Private Sub SubformControl_LostFocus()
Me.Parent.[Main Form Control].SetFocus
End Sub
I think it also depends upon the cycle property of the records on the 2
forms. Try experimenting a bit to determine the behavior you want to
achieve.

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
Mike - 13 Apr 2008 16:18 GMT
>> Hi guys
>> Heres the problem:-
[quoted text clipped - 13 lines]
> forms. Try experimenting a bit to determine the behavior you want to
> achieve.
Thanks Arvin
I have that set already and it does not seem to wotk. Although focus is
transfered to the correct control on the parent form, the subform still
advances to an empty record. I need the subform to stay on the record that
has just been updated.
Regards
Mike