tags:

views:

84

answers:

2

Possible Duplicate:
Clipboard event C#

Hi,

Can I monitor the clipboard continuously for any copy operations? I'm using C#

Thanks

+1  A: 

You'll need to use the Win32 API, this page has a guide on how to do it all

w69rdy
This answer has already been provided for the question linked to by @Jason Evans. There's no need to post it again.
ChrisF
+2  A: 

Here are some more helpful links, with source code:

SetClipboardViewer usage: http://www.radsoftware.com.au/articles/clipboardmonitor.aspx

Monitoring Activity: http://www.codeguru.com/columns/dotnettips/article.php/c7315

A viewer: http://www.doogal.co.uk/clip.php

Adam