List box start at no 15

  • Thread starter Thread starter Guest
  • Start date Start date
try this:

me!listboxname.Selected(14) = True

The Selected property is a true/false. The 14 is the row number, base 0.
 
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
 
Back
Top