Listbox.listindex

F

FR

How can I select an item in a listbox by VBA program? In Access 2007 the
listindex property is read only.
 
D

Douglas J. Steele

Me!NameOfListbox.Selected(itemnumber) = True

Remember that the numbering starts at 0.
 
Top