Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Drop Down Combo

Status
Not open for further replies.

toolsofministry

Programmer
Sep 11, 2002
24
US
I use a combo to contain data that I want to place in a text box. When I click down on the combo how do I get the entry I want placed in the text box. Usually a click will work but the click fires when I hit the down arrow on the combo box.
 
Try the following
Private Sub Combo1_Change()
text1.text = combo1.text
End Sub Greg Palmer

----------------------------------------
Any feed back is appreciated.

And remember if it doesn't work just flush it down the toilet. [Flush]
 
set the textbox equal to the value selected in the combo box

Example:
Text1 = Combo1.Text
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top