When I click on one of the options in the dropdown, I want the text to be displayed in a text box. What am I doing wrong?
VB Code:
Dim sText As String Dim lIndex As Long sText = Combo1.Text lIndex = Combo1.ListIndex + 1 ' Display the message box Text3.Text = "" & sText & ""




Reply With Quote