You need to add some code to the forms OnOpen and OnCurrent events.
In the forms declartion section, add a global variable:
Dim bolJustOpened as Booleen
In the OnOpen
bolJustOpened = True
and in the OnCurrent:
If bolJustOpened = True then
Me..setfocus
bolJustOpened = False
End If
JimD.