-
I have a list box and when I do
list1.additem "jjjjjjj"
I want the last item to be displayed
so that if the listbox is full it goes to the bottom and selects the last one.
what I want is something like below
list1.select (List1.ListCount - 1)
except there is no list1.select only selected to see if it is selected
help please
Thanks
John Murphy
Galway
Ireland
-
try this:
it highlights it though!
Code:
List1.ListIndex = List1.ListCount - 1
------------------
Mark Sreeves
Analyst Programmer
[email protected]
A BMW Group Company
-
Thanks a million this is exactly what I wanted.
John