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
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.sub Combobox1action { my( $self, $event ) = @_; my $selection; $selection = $event->GetString(); $self->SetTitle( 'Combo box selected ( '.$selection.' )' ); }
|
|---|