Re: help with getting selection from wxChoice with out after it has changed

2005-03-29 Thread Gerrit Holl
'@'.join([..join(['fred', 'dixon']), ..join(['gmail', 'com'])]) wrote: From: '@'.join([..join(['fred', 'dixon']), ..join(['gmail', 'com'])]) [EMAIL PROTECTED] This is a SyntaxError. You want to enclose the dots with '' marks as well, like this: '@'.join(['.'.join(['fred', 'dixon']),

Re: help with getting selection from wxChoice with out after it has changed

2005-03-29 Thread Peter Otten
[..join(['fred','dixon'] wrote: I want to get the selection of several wxChoice boxes. But i do not want to have to catch the events for all the boxes I should be able to access the current selection outside of an event,but i am not seeing how to do this. #def EvtChoice(self, event): #

help with getting selection from wxChoice with out after it has changed

2005-03-27 Thread '@'.join([..join(['fred', 'dixon']), ..join(['gmail', 'com'])])
I want to get the selection of several wxChoice boxes. But i do not want to have to catch the events for all the boxes I should be able to access the current selection outside of an event,but i am not seeing how to do this. This is a hack of the wxpython choice demo to demonstrate my question