you're welcome, hon. btw, let me just mention that i assumed you were
running code from the cmd button, after the save command, to requery *the
listbox*, not the entire form.
"Secret Squirrel" <(E-Mail Removed)> wrote in
message news

659E39B-4005-49E6-A55D-(E-Mail Removed)...
> Yep, that worked. Thanks for your help Tina!
> You can disregard my other response.
>
> SS
>
> "tina" wrote:
>
> > you're running code in the Save command button's procedure that
requeries
> > the listbox after the record is saved, correct? just add code to set the
> > value of the listbox control equal to the value of the primary key of
the
> > current record in the form, as
> >
> > Me!ListboxName = Me!CurrentRecordPrimaryKeyField
> >
> > hth
> >
> >
> > "Secret Squirrel" <(E-Mail Removed)> wrote in
> > message news:3F71A783-06A9-4934-A0B8-(E-Mail Removed)...
> > > I have an unbound listbox on my form that lists all my employees. When
I
> > > create a new employee using this form and then click my comman button
to
> > save
> > > my record it adds this new employee to the listbox but it does not
select
> > > that employee in my listbox even though I'm still on that current
record
> > on
> > > my form. I'm using this to bookmark it but it doesn't seem to be
working.
> > >
> > > Dim rs As Object
> > >
> > > Set rs = Me.Recordset.Clone
> > > rs.FindFirst "[LastFirst] = '" & Me![EmployeeList] & "'"
> > > Me.Bookmark = rs.Bookmark
> >
> >
> >