Help for this page

Select Code to Download


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