- or download this
my $status = Wx::StatusBar->new($parent,wxSB_RAISED);
$status->SetForegroundColour(wxRED);
my $warning = Wx::StaticText->new ($status, wxID_ANY,"Input Error!");
- or download this
$warning->Destroy();
$status->SetStatusText("OK",0);
- or download this
use strict; use warnings;
use Wx ':everything';
...
}
- or download this
use strict; use warnings;
use Wx ':everything';
...
}
}