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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

displaying combobox text ???

Status
Not open for further replies.

shawn876

Programmer
Feb 19, 2004
17
US
HI everyone:
I have a combobox which displays with the values
A, B, C.
What I need is when I select the text in the combobox I need to use that text to display in a table.
For example:
B is the value but in the combobox it shows up as Hi
I need use that text value.
Please help Thanks

 
can you use the OnClick, or Change event in the combobox

Then in the event handle do something like

Select Case ComboBox.Value
Case "A"
Case "B"
TextBox1.Text = "Hi"

End Select
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top