Compare Page Revisions
« Older Revision - Back to Page History - Newer Revision »
using System.Windows.Forms; namespace DragDropTest { public partial class Form1 : Form { //========================================================================================= public Form1() { InitializeComponent(); } //========================================================================================= private void textBox1_DragOver(object sender, DragEventArgs e) { if (e.Data.GetDataPresent("RenPrivateMessages")) e.Effect = DragDropEffects.Copy; } //========================================================================================= private void textBox1_DragDrop(object sender, DragEventArgs e) { Outlook._Application app = new Outlook.Application(); Outlook.Selection item = app.ActiveExplorer().Selection; for (int i = 1; i <= item.Count; i++) { Outlook.MailItem email = item.Item(1) as Outlook.MailItem; string from = email.SenderName; } } } }
ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.