I have a list box, set as simple.
Is there a way to know when just one item has been selected in advance of the code below?
If one item (word) has been selected then I want to offer an edit function of the word. The offer of the edit function gets taken away if mulitiple items have been selected.
Is there a way to know when just one item has been selected in advance of the code below?
Code:
For Each item In Me.DW.ItemsSelected
strlist = Me.DW.Column(1, item)
Next item
If one item (word) has been selected then I want to offer an edit function of the word. The offer of the edit function gets taken away if mulitiple items have been selected.