Shukhrat Raimov
Shukhrat Raimov

Reputation: 2247

Drag'n'drop outlook mail to wf is working incorrectly

I have WF application that allows to drag and drop emails from outlook and read the contents of an email. But when I drag'n'drop email, the emails that were dropped before are not cleared up and as a result I get the copies of the previous emails + current dragged email.

Example:

How can I set the application, that only selected items are dragged into the WF? Thanks in advance

Upvotes: 0

Views: 45

Answers (1)

Eugene Astafiev
Eugene Astafiev

Reputation: 49435

In the Drag event handler add the following line of code:

 e.Data.GetData(“RenPrivateMessages”);

Upvotes: 1

Related Questions