List box start at no 15

B

Bob Howard

try this:

me!listboxname.Selected(14) = True

The Selected property is a true/false. The 14 is the row number, base 0.
 
K

Klatuu

Bob, since it is possible to make multiple selections in a list box, I wonder
if this is the correct property to use? How about:

me!listboxname.ListIndex(14) = True
 
Top