Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: print to clipboard

by Chady (Priest)
on Aug 24, 2004 at 08:23 UTC ( [id://385352]=note: print w/replies, xml ) Need Help??


in reply to print to clipboard

You can tie a filehandle:

#!perl -w use Win32::Clipboard; my $CLIP = Win32::Clipboard(); print "This gets printed to STDOUT\n"; tie *STDOUT, 'clippy', \$CLIP; print "This will end up into the clipboard."; untie *STDOUT; package clippy; use Tie::Handle; use vars qw(@ISA); @ISA = qw(Tie::Handle); sub TIEHANDLE { my $class = shift; my $clip = shift; return bless({clip => $clip}, $class); } sub PRINT { my $self = shift; ${$self->{clip}}->Set(@_); }

He who asks will be a fool for five minutes, but he who doesn't ask will remain a fool for life.

Chady | http://chady.net/

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-19 07:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found