up vote 2 down vote favorite
share [g+] share [fb]

I am populating a combobox dropdown with node fields from an Xml document. I have that working. Now I have the text in the dropdown menu of the combobox. I want to be able to press a 'Go' button and use the selected text. What are the commands please?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Have a look at the SelectedText property of ComboBox. It will return a string containing the currently selected text (ie. the text of the currently selected item) of the combo box.

To handle this from a button press, add an OnClick event handler to the button, and in this event handler get the SelectedText and do what you need with it.

link|improve this answer
How do I write that to a string value? – The Woo Oct 31 '09 at 0:54
What do you mean? The SelectedText property is a string. – adrianbanks Oct 31 '09 at 1:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.