Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

How do I destroy a control after its creation in wxPerl?

by ZJ.Mike.2009 (Scribe)
on May 11, 2011 at 04:26 UTC ( [id://904074]=perlquestion: print w/replies, xml ) Need Help??

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';
    ...
        }    
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://904074]
Approved by GrandFather
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-25 05:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found