F
Fred
I retreive files from the clipboard as below.
Dim DObj As IDataObject = Clipboard.GetDataObject
If DObj.GetDataPresent(DataFormats.FileDrop) Then
Dim files As String() = _
CType(DObj.GetData(DataFormats.FileDrop), String())
This work fine but now I need to know if the user selected cut or copy when
putting the file(s) on the clipboard.
Thanks for any help
Fred
Dim DObj As IDataObject = Clipboard.GetDataObject
If DObj.GetDataPresent(DataFormats.FileDrop) Then
Dim files As String() = _
CType(DObj.GetData(DataFormats.FileDrop), String())
This work fine but now I need to know if the user selected cut or copy when
putting the file(s) on the clipboard.
Thanks for any help
Fred