The above currently is what I use to add the selected ListBox item to a Textbox.![]()
Private Sub ListBox3_Click() Me.TextBox4.Value = Me.ListBox3.Value End Sub
I noticed, after changing the ListBox property to Multi-Select, the code now does not work at all.
What would I need to do, to modify this to allow for all ListBox items to be placed into the textbox?
Should I also use the Listbox AfterUpdate or Exit event instead of Click event, in the instance of a change of selection?
A sample file is attached.
Bookmarks