You don't need to copy the selected value. For example, U can assign the selected listbox1 item in Userform1 to a variable as follows ...
 Dim SomeVariableName as String
SomeVariableName = UserForm1.ListBox1.List(UserForm1.ListBox1.ListIndex)
You would then pass that value to your web browser or other application. HTH. Dave