I try to make copy-cut-paste operations on files through an own designed file explorer with drag'n'drop compatible with the file explorer of Windows. For the copy, it work fine by simply using again the source code written for drag'n'drop which create a COleDataSource. I only had to add :<br><br>pSource->SetClipboard();<br><br>Where pSource is a pointer to the COleDataSource.<br><br>For paste, it works only "a half". In fact, I paste the files but if the user previously make a cut operation in the windows explorer, the file are copy but not moved. Pasting method is the same as dropping with the control key pressed.<br><br>For cut, well, I don't know how to say "this is a cut operation, not a copy", so I make the same as for the copy...<br><br>My problem is that for the drag'n'drop operation, we know if we should make a copy or a paste looking to the keys which are pressed (control and shift). But for cut and paste, I suppose there is a field of the Ole object which indicate what operation to do but I can't find it.<br><br><br>Somebody can help me ?<br><br>Thanks,<br><br>David.