0
votes
1answer
29 views

Drag'n'Drop from Outlook only for one Attachment in Qt?

I accept drops from Outlook in my application. Extract the filenames were a funny torture, but now I have a list of them. But if I ask for the FileContents it is always empty for messages (.msg ...
0
votes
0answers
25 views

What the difference between attachment and folder in Outlook

I implement drag drop from outlook to Winform. But I need to drag only attachments from Outlook. Here is solution for drag over and drop: private void treeList_DragOver(object sender, DragEventArgs ...
0
votes
1answer
54 views

How to find the origin of a DragDrop event

I have found this CodeProject article on how to get data when dragging attached files from Microsoft Outlook into a .net control. When dragging other types of data into the control, however, the code ...
1
vote
0answers
76 views

drag-drop outlook folder to windows form

I have a windows form in VB 2010 express. I am doing a drag-drop from outlook 2003 to the form. Dragging messages works OK. I see a "Text" dataformat in the eventArgs which indicates a message object. ...
1
vote
1answer
144 views

Drag mailitem from “Advanced Find” window in Outlook and drop on Winforms?

Most code samples for dragging a MailItem from Outlook and dropping on a widows form involve a reference to Outlook's ActiveExplorer window ... Here's an example Dim objMI As ...
4
votes
2answers
564 views

drag and drop email attachment file from Outlook to a web application

We import data from Excel files into a Java web application. The users want to drag and drop Excel files incoming as email attachment in Outlook (2003 and 2007) into the web app and browser ...
4
votes
1answer
326 views

Retrieving contents of DragDrop EventArgs for an Embedded MSG attachment from Outlook is dragged onto a control

I have an application where files from the file system, emails from Outlook, or attachments from Outlook are dragged and dropped and the code then saves these in file system folders for uploading into ...
2
votes
1answer
410 views

Drag items out of Outlook - record message ids

Background: I am in the process of designing an application that will allow items to be dragged to it and will invoke some long running processes on them. The items will normally be dragged in from ...
1
vote
1answer
492 views

Drag and drop from C# to Outlook

I have a document control system that is written in C#. Drag and drop from Outlook to C# has been done for some time. Now that many of the files are in the C# application, the users naturally want to ...
1
vote
1answer
330 views

Obtain Mail Item details from .MSG attachment

Is it possible to obtain Outlook Mail Item details by dragging and dropping a single attachment from a .MSG file onto a C# application? My application currently separates the contents of a .MSG when ...
1
vote
1answer
940 views

Drag and Drop from Outlook Window to Application .EXE file (or Icon) in .Net

This has been asked before, but with the methods I have seen, I cannot get what I want to happen. Currently, I have a Windows Form that if I run the .EXE (and bring up the form itself), I can drop ...
4
votes
1answer
460 views

Can I drag items from Outlook into my SWT application?

Background Our Eclipse RCP 3.6-based application lets people drag files in for storage/processing. This works fine when the files are dragged from a filesystem, but not when people drag items ...
4
votes
2answers
4k views

How to implement Drag & Drop from outlook mail or thunderbird to a delphi form?

Does anyone already implemented Drag & Drop of email messages from Outlook and/or Thunderbird (from now on "OT") to a Delphi form. I need to give the user a way to store important emails in my ...
2
votes
2answers
528 views

Drag and Drop outlook attachment in to Adobe AIR

I would like to know if there is a way to drag and drop an attachment file from an outlook email that is open into an AIR application and for that file to be then accessible to the AIR application. ...
1
vote
1answer
1k views

Drag and drop from Outlook attachment to VB6 application

I am experimenting with drag and drop from an outlook email attachment to a custom application. It works just fine with C#, but now I'd like to get it working in VB6. My test code looks something like ...
6
votes
3answers
2k views

How do you add drag-n-drop upload ability from Outlook to a Web form?

I am looking for a way to allow users to upload Outlook emails to a web-based system in a simple manner. I can get this to work in a manual fashion for the users. They can drag and drop the email ...
0
votes
1answer
280 views

Can I override the default “Drag and Drop” behaviour when dragging email item from outlook?

After dragging email item from outlook, my own application (written in C#) can get the data and retrieve the msg data when the email item is dropped on it. But is it possible to override the default ...
1
vote
1answer
263 views

Dragging items from my C# app into Outlook 2003/2007?

In Outlook 2003/2007 you can drag files from Explorer into its main window and message editing windows to attach a file. But how can I use my own C# app in place of Explorer to do this? Do I need to ...
1
vote
1answer
888 views

Any way to extend or modify drag-and-drop in Outlook with VSTO?

I have an add-in I'm working on in Outlook that relies on drag-and-drop to save an Outlook file to a file automagically. The problem is that the default behaviour is to use the email's subject line as ...
20
votes
5answers
9k views

Drag'n'drop one or more mails from Outlook to C# WPF application

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 ...