Is there a way to set the focus and select a particular entry in a list box?
This won't do it because it sets the focus to the list box object, but doesn't actually select an entry in the list box.
Me.ListBox.SetFocus
What I want is something more like this
Me.LstTables.ItemData(File).SetFocus
where File is either the index of a particular row in the list box or simply the row's contents.
This won't do it because it sets the focus to the list box object, but doesn't actually select an entry in the list box.
Me.ListBox.SetFocus
What I want is something more like this
Me.LstTables.ItemData(File).SetFocus
where File is either the index of a particular row in the list box or simply the row's contents.