Userform List box to Text Box

H

Hazel

Hi
I have a list box on a userform that is populated with names on selecting a
name from the list box how would I be able to show the selected name in a
text box on the same userform eg TextBox1. = Listbox1.name selected
 
H

Harald Staff

Hi

Textbox1.Text = Listbox1.Text

in the Listbox1_click event

HTH. Best wishes Harald
 
Top