[BangPypers] WxPython: Unhandled exception

2010-02-06 Thread Rama Rao Polneni
Hi All, I have developed a GUI application. Some times I am getting an unhandled exception with the following message: *An unhandled exception occurred. * *Press "Abort" to terminate the program, "Retry" to exit the program normally and "Ignore" to try to Cotinue.* ** Do you know why this unhandl

[BangPypers] How to hide a panel of a notebook

2009-12-07 Thread Rama Rao Polneni
Hi All, My notebook is having 5 panels. I want to hide panel3 without changing the page numbers (self.notebook.GetSelection) when I hide/remove that page. When I use self.panel3.RemovePage(3). Next(4) panel is going to get the GetSelection() as 3. But I want to retain previous panel number. A

Re: [BangPypers] WxPython : List box

2009-11-12 Thread Rama Rao Polneni
Here is the solution. On setting style as wx.HSCROLL. horizontal scrollbar appears. Thanks, On 11/12/09, Rama Rao Polneni wrote: > > Hi, > > I could read all the elements by using self.listbox.GetItems() > > Only vertical scrollbar is coming by default > > Thanks, >

Re: [BangPypers] WxPython : List box

2009-11-12 Thread Rama Rao Polneni
Hi, I could read all the elements by using self.listbox.GetItems() Only vertical scrollbar is coming by default Thanks, Rama Rao On 11/12/09, Kenneth Gonsalves wrote: > > On Thursday 12 Nov 2009 10:12:43 am Rama Rao Polneni wrote: > > 1. Reading all elements from from listbox. Cu

Re: [BangPypers] WxPython : List box

2009-11-11 Thread Rama Rao Polneni
, David Lyon wrote: > > On Thu, 12 Nov 2009 10:05:52 +0530, Rama Rao Polneni > wrote: > > Hi David, > > > > I am using BOA. > > > > Bu the problem here is I am able to read only selected files. But I want > to > > read all the files. and I

Re: [BangPypers] WxPython : List box

2009-11-11 Thread Rama Rao Polneni
: > > > Rama, > > Best thing to do is download Boa Constructor. It is an > IDE that will allow you to get through that task in under > 30 minutes. > > David > > On Thu, 12 Nov 2009 09:56:51 +0530, Rama Rao Polneni > wrote: > > Hi, > > > > Can you

[BangPypers] WxPython : List box

2009-11-11 Thread Rama Rao Polneni
Hi, Can you please help me in writing python code for the follwing requirement. I have a list box. In which I need to browse multiple files from multiple locations and need to show them in the list box. Then I will be able to read all the file names("all" means-No selection/deselction mechanism)