> When this code runs:
> ---------------------------------
[quoted text clipped - 23 lines]
>
> Anybody been here?
No, but if this is a single-select list box, try ditching the SetFocus
and selecting the first item this way:
With Me.lstIssuers
If .ListCount > 0 Then
.Value = .ItemData(0)
End If
End With
That's also assuming that the control's ColumnHeads property is set to
False. Otherwise a small amendment is necessary.

Signature
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)
(PeteCresswell) - 12 Jun 2007 16:55 GMT
Per Dirk Goldgar:
>No, but if this is a single-select list box, try ditching the SetFocus
>and selecting the first item this way:
[quoted text clipped - 7 lines]
>That's also assuming that the control's ColumnHeads property is set to
>False. Otherwise a small amendment is necessary.
Worked like a charm.
Thanks!!!

Signature
PeteCresswell