GtkCombo
[email protected] (Lorrie Cooke)
| Newsgroups | php.gtk |
|---|---|
| Message-ID | <[email protected]> |
Hi :) using the following code for a GtkCombo: $combo = &new GtkCombo(); $combo->set_popdown_strings($dropbox); $combo_entry = $combo->entry; $vbox->pack_start($combo); $combo->show(); I am able to display the combo box fine, What im not sure on is how to get the selected item from the drop box into a function... I thought it would be done through the $combo_entry variable but that returns as an object. The manual doesnt show any "get" methods for combo, so im not sure on how to get the selected item out .... Thanks for the help :)) Loll