Re: wxPython, wxcombobox opening

2006-05-02 Thread Rony Steelandt
That is what I was afraid for Thanks for answering, Rony > Hi, > > From the wxPython list: > >> Hi, >> >> Which event must I catch to be called when the user clicks on the combo >> "button" to make the drop down list to appear ? > > No, there isn't a specific event for the opening of the

Re: wxPython, wxcombobox opening

2006-05-02 Thread Philippe Martin
Hi, >From the wxPython list: > Hi, > > Which event must I catch to be called when the user clicks on the combo > "button" to make the drop down list to appear ? No, there isn't a specific event for the opening of the drop-down box. Regards, Philippe Philippe Martin wrote: > Hi, > > I

Re: wxPython, wxcombobox opening

2006-04-29 Thread Philippe Martin
Hi, I do not have the answer but am very interested in the issue. I tried this: l_ev = wx.MouseEvent(wx.wxEVT_LEFT_DOWN) l_ev.SetEventObject(self.GetCombo()) self.GetEventHandler().ProcessEvent(l_ev) Which did send the event to the combo (which is in a pannel in my case) .. but that is apparentl

wxPython, wxcombobox opening

2006-04-28 Thread Rony Steelandt
Hi, Does somebody knows a way to automaticely open the list part of a wxCombobox when it gets the focus ? tia, Rony -- http://mail.python.org/mailman/listinfo/python-list