List box want first Row to be already selected

  • Thread starter Thread starter Wesley Appeldorn
  • Start date Start date
W

Wesley Appeldorn

I have a list box and i am sorting it by date inside the query and I also
have it filtering by an ID number of a person's record. I want the first
record to be the default record. I have the Bound Column using an autonumber
field.

How do i get it to default the the first record.
 
I have a list box and i am sorting it by date inside the query and I also
have it filtering by an ID number of a person's record. I want the first
record to be the default record. I have the Bound Column using an autonumber
field.

How do i get it to default the the first record.

me.listbox=me.listbox.Itemdata(0)

if you have columnheads then its No.1
 
Back
Top