Displaying 1 result from an estimated 1 matches for "on_cmbx_change".
2004 May 24
9
Combo Box
...;#{md.captures[0]} (#{md.captures[1] })"
}
@drives_box = ComboBox.new(self, ID_DRIVES_BOX, "",
DEFAULT_POSITION, DEFAULT_SIZE, drives)
@drives_box.set_selection(0)
dlgSizer.add(@drives_box, 1, ALIGN_RIGHT | ALL, 3)
evt_combobox(ID_DRIVES_BOX) {on_cmbx_change}
@btn_test_cmbx = Button.new(self, ID_BTN1, "Test ComboBox")
evt_button(ID_BTN1) { on_cmbx_change }
dlgSizer.add(@btn_test_cmbx, 1, ALIGN_RIGHT | ALL, 3)
dlgSizer.add(@fileList)
dlgSizer.set_size_hints(self)
set_sizer(dlgSizer)
set...