RE: Modality and new windows

2013-02-14 Thread steveco.1959
Hi Dave, There is Wx::ComboCtrl (http://docs.wxwidgets.org/2.8.12/wx_wxcomboctrl.html#wxcomboctrl) with Wx::ComboPopup (http://docs.wxwidgets.org/2.8.12/wx_wxcombopopup.html#wxcombopopup) Which gives you a custom pop-up window for what is essentially a ComboBox. I'm pretty sure it's in the de

Re: Modality and new windows

2013-02-14 Thread Dave Hayes
On 02/14/13 00:28, Johan Vromans wrote: Dave Hayes writes: Here's a test case of what I'm doing. Maybe there's another way? Did you consider using a ComboBox? I did. I was under the impression that you can't get rid of the arrow to the side and make it display the dropdown menu as you typ

Re: Vaiidators

2013-02-14 Thread James Lynes
Steve: Here's what I have working for a custom dialog with a text validator. Probably a cleaner way to do some of it, but one step at a time. :) Thanks to all for their suggestions. James (also posted to github) On Thu, Feb 14, 2013 at 12:10 AM, James Lynes wrote: > I have a working version a

Re: wiki ?

2013-02-14 Thread Johan Vromans
Erik Colson writes: > Thanks. So I know ;) > Seems the direct IP (81.173.110.10) link is down too. I've contacted Huub. -- Johan

Re: wiki ?

2013-02-14 Thread Erik Colson
Thanks. So I know ;) Seems the direct IP (81.173.110.10) link is down too. -- erik writes: > Yes, down for me too. > > -Original Message- > From: Erik Colson [mailto:e...@ecocode.net] > Sent: 14 February 2013 06:50 > To: wxperl-users@perl.org > Subject: wiki ? > > Hi, > > Following the

RE: wiki ?

2013-02-14 Thread steveco.1959
Yes, down for me too. -Original Message- From: Erik Colson [mailto:e...@ecocode.net] Sent: 14 February 2013 06:50 To: wxperl-users@perl.org Subject: wiki ? Hi, Following the title on #wxperl (irc), the wiki should be at wiki.wxperl.nl. However that doesn't seem to work on my laptop..

RE: Modality and new windows

2013-02-14 Thread steveco.1959
Hi Dave, > So if I have a dialog invoked with ShowModal() and an event comes along > that wants to create a new frame, how can I enable the new frame to > receive events? I've never had a problem with this. I have dialogues within dialogues within dialogues, maybe seven or eight layers deep.

wiki ?

2013-02-14 Thread Erik Colson
Hi, Following the title on #wxperl (irc), the wiki should be at wiki.wxperl.nl. However that doesn't seem to work on my laptop.. The thing just hangs without showing whatsoever. Am I missing something ? -- erik

Re: Modality and new windows

2013-02-14 Thread Johan Vromans
Dave Hayes writes: > Here's a test case of what I'm doing. Maybe there's another way? Did you consider using a ComboBox? -- Johan