[..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)
'@'.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']), '.'.
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
#-