gracias
Código:
class Combo_Rs(wx.ComboBox): def __init__(self,parent,sql,style = wx.CB_READONLY): wx.ComboBox.__init__(self,parent,-1,style = style) self.Bind(wx.EVT_KEY_UP, self.Search) def Search(self,evt): r = self.FindString(self.Value) if not r == wx.NOT_FOUND: self.Select(r)