Daniel,
......
my $status = Wx::StatusBar->new( $self, -1 );
$status -> SetFieldsCount( 1 );
$status -> SetStatusText( "Ich bin ein Statustext!" );
$self->SetStatusBar($status);
return $self;
.......
Regards
Mark
DanielMS wrote:
> I do my first steps with wxPerl, and at the moment I do not understand the
> following:
>
> If I put the lines
> # my $status = Wx::StatusBar->new( $self, -1 );
>
> # $status -> SetFieldsCount( 1 );
> # $status -> SetStatusText( "Ich bin ein Statustext!" );
>
> on, I will get a statusbar, but on top of the frame and all the other
> objects will not be displayed. Can anyone tell me why?
>
> http://www.nabble.com/user-files/235932/test1.pl test1.pl
>
> Thanks and regards
> Daniel
|