Drag'n'drop one or more mails from Outlook to C# WPF application - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T19:39:55Zhttp://stackoverflow.com/feeds/question/316900http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application9Drag'n'drop one or more mails from Outlook to C# WPF applicationRune Jacobsen2008-11-25T10:14:29Z2009-06-17T11:22:12Z
<p>I'm working on a windows client written in WPF with C# on .Net 3.5 Sp1, where a requirement is that data from emails received by clients can be stored in the database. Right now the easiest way to handle this is to copy and paste the text, subject, contact information and time received manually using an arthritis-inducing amount of ctrl-c/ctrl-v.</p>
<p>I thought that a simple way to handle this would be to allow the user to drag one or more emails from Outlook (they are all using Outlook 2007 currently) into the window, allowing my app to extract the necessary information and send it to the backend system for storage.</p>
<p>However, a few hours googling for information on this seem to indicate a shocking lack of information about this seemingly basic task. I would think that something like this would be useful in a lot of different settings, but all I've been able to find so far have been half-baked non-solutions. </p>
<p>Does anyone have any advice on how to do this? Since I am just going to read the mails and not send anything out or do anything evil, it would be nice with a solution that didn't involve the hated security pop ups, but anything beats not being able to do it at all.</p>
<p>Basically, if I could get a list of all the mail items that were selected, dragged and dropped from Outlook, I will be able to handle the rest myself!</p>
<p>Thanks!</p>
<p>Rune</p>
http://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application/317917#3179171Answer by Jim for Drag'n'drop one or more mails from Outlook to C# WPF applicationJim2008-11-25T16:16:26Z2008-11-25T16:16:26Z<p>I think <a href="http://blogs.msdn.com/adamroot/pages/shell-style-drag-and-drop-in-net-wpf-and-winforms.aspx" rel="nofollow">Shell Style Drag and Drop in .NET (WPF and WinForms)</a> can help you. Once you can respond to drag drop using the COM Interfaces, you should be able to get the data out of outlook.</p>
http://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application/318045#3180451Answer by cgreeno for Drag'n'drop one or more mails from Outlook to C# WPF applicationcgreeno2008-11-25T16:43:16Z2009-03-08T17:45:25Z<p>In your Xaml you need to set up your Event:</p>
<pre><code><TextBlock
Name="myTextBlock"
Text="Drag something into here"
AllowDrop="True"
DragDrop.Drop="myTextBlock_Drop"
/>
</code></pre>
<p>Once you have Set AllowDrop = True and Set you drop event then go to the code behind and set up your event:</p>
<pre><code>private void myTextBlock_Drop(object sender, DragEventArgs e)
{
// Mark the event as handled, so TextBox's native Drop handler is not called.
e.Handled = true;
Stream sr;
//Explorer
if (e.Data.GetDataPresent(DataFormats.FileDrop, true))
//Do somthing
//Email Message Subject
if (e.Data.GetDataPresent("FileGroupDescriptor"))
{
sr = e.Data.GetData("FileGroupDescriptor") as Stream;
StreamReader sr = new StreamReader(sr2);//new StreamReader(strPath, Encoding.Default);
//Message Subject
string strFullString = sr.ReadToEnd();
}
}
</code></pre>
<p>If you wish to break it down further you can use:
FILEDESCRIPTOR or FILECONTENTS as outline in the following <a href="http://groups.google.com/group/borland.public.cppbuilder.activex/msg/8d1858871b027248" rel="nofollow">article</a></p>
<p>your other option is to tie into outlooks <a href="http://www.terminally-incoherent.com/blog/2008/04/30/drag-and-drop-outlook-emails-onto-net-application/" rel="nofollow">MS Office Primary Interop Assemblies</a> and break the message apart that way.</p>
http://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application/577069#5770691Answer by Timo for Drag'n'drop one or more mails from Outlook to C# WPF applicationTimo2009-02-23T09:55:51Z2009-06-17T11:22:12Z<p>I found a lot of solutions suggesting you use the “FileGroupDescriptor” for all the file names and the “FileContents” on the DragEventArgs object to retrieve the data of each file. The “FileGroupDescriptor” works fine for the email message names, but “FileContents” returns a null because the implementation of the IDataObject in .Net cannot handle the IStorage object that is returned by COM. </p>
<p>David Ewen has a great explanation, excellent sample and code download that works great at <a href="http://www.codeproject.com/KB/office/outlook_drag_drop_in_cs.aspx" rel="nofollow">http://www.codeproject.com/KB/office/outlook_drag_drop_in_cs.aspx</a>.</p>
http://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application/972867#9728673Answer by Bryce Kahle for Drag'n'drop one or more mails from Outlook to C# WPF applicationBryce Kahle2009-06-09T22:42:47Z2009-06-10T15:11:05Z<p>I found a great <a href="http://www.codeproject.com/KB/office/outlook%5Fdrag%5Fdrop%5Fin%5Fcs.aspx" rel="nofollow">article</a> that should do exactly what you need to. </p>
<p><strong>UPDATE</strong></p>
<p>I was able to get the code in that article working in WPF with a little tweaking, below are the changes you need to make.</p>
<p>Change all references from System.Windows.Forms.IDataObject to System.Windows.IDataObject</p>
<p>In the OutlookDataObject constructor, change</p>
<pre><code>FieldInfo innerDataField = this.underlyingDataObject.GetType().GetField("innerData", BindingFlags.NonPublic | BindingFlags.Instance);
</code></pre>
<p>To</p>
<pre><code>FieldInfo innerDataField = this.underlyingDataObject.GetType().GetField("_innerData", BindingFlags.NonPublic | BindingFlags.Instance);
</code></pre>
<p>Change all DataFormats.GetFormat calls to DataFormats.GetDataFormat</p>
<p>Change the SetData implementation from</p>
<pre><code>public void SetData(string format, bool autoConvert, object data)
{
this.underlyingDataObject.SetData(format, autoConvert, data);
}
</code></pre>
<p>TO</p>
<pre><code>public void SetData(string format, object data, bool autoConvert)
{
this.underlyingDataObject.SetData(format, data, autoConvert);
}
</code></pre>
<p>With those changes, I was able to get it to save the messages to files as the article did. Sorry for the formatting, but numbered/bulleted lists don't work well with code snippets.</p>