in reply to Re^2: Passing arguments to event handlers in WxPerl (is something you never have to do; wx-combobox-event.pl)
in thread Passing arguments to event handlers in WxPerl

Got it!!! Thanks. Here is the code:
sub Combobox1action { my( $self, $event ) = @_; my $selection; $selection = $event->GetString(); $self->SetTitle( 'Combo box selected ( '.$selection.' )' ); }
I guess I still need to clean up a little, but at least I've moved forward. Thanks all. Any other final suggestions are welcome.
  • Comment on Re^3: Passing arguments to event handlers in WxPerl (is something you never have to do; wx-combobox-event.pl)
  • Download Code