Userform
1 TopicUserform Listbox HELP
Greetings Everyone, I need some HELP! Please bear with me if I ask too many questions, as I am fairly new to VBA. Anyways, I created a userform in Word 2016 to auto-populate a template but I would like to create a drop-down where a user could select text from the drop-down and insert the selected text in the Word template. How would I go about doing so? I was able to create a listbox in the userform with the following code below, however how do I get the item selected to populate in the word template??? Private Sub UserFrom_Initialize() With ListBox1 .AddItem "VIA US MAIL ONLY" .AddItem "VIA Electronic Mail Only" End With lbl_Exit: Exit Sub End Sub Thank you in advance for anyone's assistance!!Solved1KViews0likes1Comment