search for: set_text_selection_range

Displaying 2 results from an estimated 2 matches for "set_text_selection_range".

2007 Apr 29
0
[989] branches/wxruby2/wxwidgets_282: Fix a crasher with misdirected ComboBox#GetSelection method on GTK; clearer
...int":#ComboBox_setinsertionpoint </span><span class="cx"> * "ComboBox#set_insertion_point_end":#ComboBox_setinsertionpointend </span><del>-* "ComboBox#set_selection_range":#ComboBox_setselectionrange </del><ins>+* "ComboBox#set_text_selection_range":#ComboBox_settextselectionrange </ins><span class="cx"> * "ComboBox#set_value":#ComboBox_setvalue </span><span class="cx"> * "ComboBox#undo":#ComboBox_undo </span><span class="cx"> </span><span cla...
2009 Feb 18
3
Validation and ComboBox
I''m trying to make a ComboBox that can be typed into but only accepts entries that are already in the drop-down list. I hoped a combination of the CB_DROPDOWN style and a TextValidator with the FILTER_INCLUDE_LIST would make that happen, but the validator seems to be ignored. Is that combination supposed to do what I want? If so, please review the code below and let me know where my