Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Writing to a Win32::GUI RichEdit

by jpavel (Sexton)
on Jun 02, 2009 at 13:49 UTC ( [id://767594]=note: print w/replies, xml ) Need Help??


in reply to Writing to a Win32::GUI RichEdit

For anyone coming back here in the future, here's my solution:
if ($ltext =~ m/^(.*)($searchvalue)(.*)$/igm) { $matches->Select(1e9, 1e9); $matches->ReplaceSel("$server: $1"); $matches->Select(1e9, 1e9); $matches->SetCharFormat( -bold =>1, -height =>260, -color =>0xFF0000 ); $matches->ReplaceSel($2); $matches->Select(1e9, 1e9); $matches->SetCharFormat( -bold =>0, -height =>170, -color =>0x000000 ); $matches->ReplaceSel("$3\r\n\r\n"); }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-20 03:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found