vote up 2 vote down star

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?

flag

50% accept rate

1 Answer

vote up 2 vote down check

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|flag
How do I write that to a string value? – The Woo Oct 31 at 0:54
What do you mean? The SelectedText property is a string. – adrianbanks Oct 31 at 1:25

Your Answer

Get an OpenID
or

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