Hi
I have a form linked to a table which includes the field description.
my listbox contained a filtered list from the description field and selects the record on the form when the list is clicked.
so far so good.
I then change the filter by a command using - list1.rowsource.
i then select the first record using - list1.selected(0) = true
I want the record on the form to be selected from the first record in the list by code not by clicking the list
So that when the first record in the list is selected by - list1.selected(0) = true -, the record in the form is displayed.
How do I do that?
Thanks in advance.