Select items from list box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have create a list box with the following properties:

Raw Source Type = ValueList
Raw Source = Item1;Item2;Item3
Visible=yes
Enabled=Yes
Lock=No

When I try to select an item from the List, it doesn't highlight any item (I
have 45 item in the list). I added the test code and the value for
Me.lstImportList.ItemsSelected.count, is always "0"

This is my first time creating the list box in Access with VBA. Did I miss
something? How can I make the list selectable..
 
Hi,


ListBoxName.Selected(2)=true


would "select" the third row.


Hoping it may help,
Vanderghast, Access MVP
 
Back
Top