Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Pitfalls when using COleDataSource for Clipboard and Drag & Drop Operations

0.00/5 (No votes)
21 Feb 2012 1  
Information about COleDataSource not contained in the Microsoft documentation or hardly to be found

Pitfall 1: OLE Initialization

Any function using OLE may not work or show unexpected behaviour when OLE is not initialized. So don't forget to call AfxOleInit() from InitInstance().

Pitfall 2: COleDataSource Allocation

When using SetClipboard(), COleDataSource objects must be allocated on the heap and not on the stack. Looking at the MFC sources, you will find a call to InternalRelease() at the end of the SetClipboard() function. InternalRelease() is implemented in the CCmdTarget base class and is finally using delete this to destroy the object. Therefore, the COleDataSource object must be allocated on the heap and the object is no longer valid upon return from SetClipboard().

Pitfall 3: Memory Leaks when using DoDragDrop()

Contrary to SetClipboard(), the COleDataSource object is not destroyed automatically. So this must be done in your own code using InternalRelease() or ExternalRelease() (recommended, calls InternalRelease() if not aggregated). Don't use delete.

Pitfall 4: Using Data Rendering With the Clipboard

When using data rendering, data are only copied to allocated memory or file when used. This is especially useful with large amounts of data and when providing multiple clipboard formats. But with clipboard operations, there are two drawbacks:

  1. Nothing is copied when the source application or window has been closed meanwhile.
  2. Copies those items that are selected when the insert operation occurs, not those that were selected when the SetClipboard() command has been called.

Pitfall 5: Drag&Drop may Not Work When Applications are Executed by Different Users

This applies to Windows Vista and later with enabled UAC. When the target application is executed with higher privileges than the source application, Drag&Drop is not supported (the cursor does not change to indicate the possibility of moving or copying). In the other direction, the cursor indicates that Drag&Drop is possible, and when dropping the move or copy effect is returned by DoDragDrop(), but nothing is dropped. See also this link [^].

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here