in reply to print to clipboard
Shorter, working code is
Or, shorter still:use Win32::Clipboard; $CLIP = Win32::Clipboard(); $CLIP->Set("some text to copy into the clipboard");
use Win32::Clipboard; Win32::Clipboard("some different text to copy into the clipboard");
|
|---|