I have a list box that displays values from a field in a table. I was wondering how I can make the list box scroll to the very bottom of the list automatically so the user can see the latest values that they have entered?
I had this frustrating problem "7777" ItemIndex setting problem.
I have a bunch of ComboBoxes who's values depend on each other. When one of the ComboBoxes changes, the dependant ComboBoxes should show the first item after ReQuery.
Here is how I solved it.
Private Sub SelectFirstComboItem(ByRef cbo As ComboBox)
SelectedThing = cbo.ItemData(1)
cbo = SelectedThing
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.