Clipboard question

  • Thread starter Thread starter Silesian
  • Start date Start date
S

Silesian

Hi all,
I have a small routine that copies a text field in my application. I want
to be able to do this: Clipboard.SetDataObject ("") ,after the user has
pasted the text into another application. What will be the he easiest way
to detect that paste has occurred?
TIA
Rich
 
Hi Silesian,

AFIAK there is no way to do that with .NET.
Using Win32 however you can use delayed rendering or in the case of using
'ole clipboard' you can probably catch those paste operations in GetData or
GetDataHere methods of IDataObject
 
Back
Top