my $tc = Wx::TextCtrl->new( $window1, -1, '', [450,15], [229,300], wxTE_READONLY|wxTE_RICH|wxALL); my ( $red, $green ) = ( Wx::Colour->newRGB( 255, 0, 0 ), Wx::Colour->newRGB( 0, 90, 0 ) ); if ( $md5s =~ $md5 ) { my $style = Wx::TextAttr->new(); $style->Wx::TextAttr::SetTextColour($green); $tc->SetStyle( -1, -1, $style ); $tc->WriteText("$file | $filesize\n"); } else { my $style = Wx::TextAttr->new(); $style->Wx::TextAttr::SetTextColour($red); $tc->SetStyle( -1, -1, $style ); $tc->WriteText("$file | $filesize\n"); }