1

Possible Duplicate:
Clipboard event C#

Hi,

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

Thanks

Community
  • 1
  • 1
Jayesh
  • 3,891
  • 11
  • 55
  • 83

2 Answers2

5

Here are some more helpful links, with source code:

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

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

Adam Houldsworth
  • 63,413
  • 11
  • 150
  • 187
  • Likewise, [SharpClipboard](https://github.com/Willy-Kimura/SharpClipboard) as a library could be of more benefit as it encapsulates the same features into one. – Willy Kimura Feb 07 '19 at 10:03
1

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

Iain Ward
  • 9,850
  • 5
  • 34
  • 41
  • 2
    This answer has already been provided for the question linked to by @Jason Evans. There's no need to post it again. – ChrisF Jul 12 '10 at 15:43